:root {
  --color-brand-blue: #002570;
  --color-brand-blue-hover: #001b57;
  --color-brand-blue-soft: #e7eef9;
  --color-brand-red: #f00c0d;
  --color-brand-red-text: #b20a0b;
  --color-ink: #111111;
  --color-ink-soft: #202020;
  --color-muted: #5a5a5a;
  --color-muted-soft: #4c4c4c;
  --color-muted-quiet: #6a6a6a;
  --color-surface: #ffffff;
  --color-surface-muted: #efefef;
  --color-surface-subtle: #ececec;
  --color-border: #d7dbe5;
  --color-focus: #002570;
  --color-page-background: #f6f6f6;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-page-background);
  color: var(--color-ink);
}

.bg-brand-blue {
  background-color: var(--color-brand-blue);
}

.nim-site-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nim-topbar-shell {
  background: #06296f;
}

.nim-topbar {
  color: #fff;
  min-height: 42px;
}

.nim-topbar-date {
  color: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  letter-spacing: 0.28em;
}

.nim-topbar-social-link {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nim-topbar-social-link:hover,
.nim-topbar-social-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.nim-masthead {
  padding-block: 24px;
}

.nim-brand-lockup__image {
  display: block;
  width: auto;
  height: 42px;
}

.nim-masthead .nim-brand-lockup__image {
  height: 62px;
  width: auto;
}

.nim-masthead a {
  display: inline-flex;
  align-items: center;
}

.nim-navigation-shell {
  background: #fff;
}

.nim-primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nim-primary-nav::-webkit-scrollbar,
.nim-sport-rail__nav::-webkit-scrollbar {
  display: none;
}

.nim-primary-nav__link {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
  letter-spacing: 0;
}

.nim-primary-nav__link.is-active {
  padding-inline: 20px;
  background: var(--color-brand-blue);
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.nim-sport-rail {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.nim-sport-rail__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
}

.nim-sport-rail__label {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 4px 10px;
  border: 1px solid rgba(0, 37, 112, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--color-brand-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nim-sport-rail__nav {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nim-sport-rail__list {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  min-width: 100%;
}

.nim-sport-rail__link {
  position: relative;
  min-height: 42px;
  padding: 0;
  border: 0;
  color: #3f4550;
  font-size: 13px;
  font-weight: 700;
  line-height: 42px;
  white-space: nowrap;
  letter-spacing: 0;
}

.nim-sport-rail__link::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.nim-sport-rail__list li:last-child .nim-sport-rail__link::after {
  display: none;
}

.nim-sport-rail__link:hover,
.nim-sport-rail__link:focus-visible,
.nim-sport-rail__link.is-active {
  color: var(--color-brand-blue);
}

.nim-sport-rail__link.is-active {
  font-weight: 800;
}

.nim-sport-rail__link.is-active::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--color-brand-red);
}

.nim-mobile-nav__link,
.nim-mobile-sport-nav__link {
  letter-spacing: 0;
}

.nim-mobile-sport-nav__list {
  gap: 8px;
}

.nim-mobile-sport-rail {
  background: #fff;
}

.nim-mobile-sport-rail__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
}

.nim-mobile-sport-rail__list,
.nim-mobile-sport-rail__overflow-list {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nim-mobile-sport-rail__list {
  flex: 1 1 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.nim-mobile-sport-rail__list::-webkit-scrollbar {
  display: none;
}

.nim-mobile-sport-rail__link,
.nim-mobile-sport-rail__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(0, 37, 112, 0.14);
  border-radius: 999px;
  background: #f8fafc;
  color: #303845;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}

.nim-mobile-sport-rail__link {
  padding: 0 12px;
}

.nim-mobile-sport-rail__more {
  flex: 0 0 auto;
  gap: 5px;
  padding: 0 11px;
  color: var(--color-brand-blue);
}

.nim-mobile-sport-rail__link.is-active {
  border-color: var(--color-brand-blue);
  background: var(--color-brand-blue);
  color: #fff;
}

.nim-mobile-sport-rail__more[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nim-mobile-sport-rail__more svg {
  transition: transform 0.16s ease;
}

.nim-mobile-sport-rail__overflow {
  border-top: 1px solid rgba(0, 37, 112, 0.08);
  background: #f8fafc;
  padding: 10px 16px 12px;
}

.nim-mobile-sport-rail__overflow-list {
  flex-wrap: wrap;
}

.bg-brand-blue-soft {
  background-color: var(--color-brand-blue-soft);
}

.bg-brand-red {
  background-color: var(--color-brand-red);
}

.bg-surface {
  background-color: var(--color-surface);
}

.bg-surface-muted {
  background-color: var(--color-surface-muted);
}

.text-brand-blue {
  color: var(--color-brand-blue);
}

.text-brand-blue\/70 {
  color: rgba(0, 37, 112, 0.7);
}

.text-brand-red {
  color: var(--color-brand-red);
}

.text-brand-red-text {
  color: var(--color-brand-red-text);
}

.text-ink {
  color: var(--color-ink);
}

.text-muted {
  color: var(--color-muted);
}

.border-border {
  border-color: var(--color-border);
}

.border-brand-blue {
  border-color: var(--color-brand-blue);
}

.border-brand-blue-hover {
  border-color: var(--color-brand-blue-hover);
}

.border-brand-blue\/15 {
  border-color: rgba(0, 37, 112, 0.15);
}

.border-brand-blue\/20 {
  border-color: rgba(0, 37, 112, 0.2);
}

.border-brand-red {
  border-color: var(--color-brand-red);
}

.border-brand-red\/20 {
  border-color: rgba(240, 12, 13, 0.2);
}

.hover\:bg-brand-blue-hover:hover {
  background-color: var(--color-brand-blue-hover);
}

.hover\:bg-brand-blue-soft:hover {
  background-color: var(--color-brand-blue-soft);
}

.hover\:text-brand-blue:hover {
  color: var(--color-brand-blue);
}

.hover\:text-brand-blue-soft:hover {
  color: var(--color-brand-blue-soft);
}

.hover\:border-brand-blue\/20:hover {
  border-color: rgba(0, 37, 112, 0.2);
}

.story-link:hover .story-title,
.story-link:focus-visible .story-title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.story-link:focus-visible,
.control-ring:focus-visible,
.comment-form input:focus-visible,
.comment-form textarea:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-muted-quiet);
}

.section-heading {
  margin: 0;
  line-height: 1.1;
}

.ad-placeholder {
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.35) 75%,
    transparent 75%,
    transparent 100%
  );
  background-size: 16px 16px;
}

.nim-sports-ad-slot__embed iframe,
.nim-sports-ad-slot__embed img,
.nim-sports-ad-slot__embed ins,
.nim-sports-ad-slot__embed object,
.nim-sports-ad-slot__embed embed {
  max-width: 100%;
}

.nim-sports-ad-slot__embed iframe,
.nim-sports-ad-slot__embed img {
  display: block;
  margin-inline: auto;
}

.live-dot {
  display: inline-flex;
  animation: pulse-live 1.5s ease-in-out infinite;
}

.nim-article-shell {
  border: 1px solid rgba(0, 37, 112, 0.1);
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  padding: 28px 22px 32px;
}

.article-copy {
  max-width: 720px;
  margin-inline: auto;
  color: #242424;
}

.article-copy p {
  margin-top: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.78;
  color: #242424;
}

.article-copy p:first-child {
  margin-top: 0;
  color: #1b1f2a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.12rem;
  line-height: 1.65;
}

.article-copy h2 {
  margin-top: 2.6rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(0, 37, 112, 0.12);
  font-size: 1.52rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #10131a;
}

.article-copy ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.article-copy li + li {
  margin-top: 0.6rem;
}

.article-copy li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-ink-soft);
}

.article-copy blockquote {
  margin: 2.25rem 0 0;
  border-left: 4px solid var(--color-brand-red);
  background: #f5f7fb;
  padding: 1.25rem 1.35rem;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
  color: #17213a;
}

.article-copy a {
  color: var(--color-ink);
  text-decoration: underline;
}

.article-copy figure {
  margin: 2rem 0;
}

.article-copy figcaption {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.nim-article-shell .nim-sports-ad-slot {
  margin: 2rem 0;
  border-color: rgba(0, 37, 112, 0.12);
  background: #f8fafc;
}

@media (min-width: 640px) {
  .nim-article-shell {
    padding: 38px 42px 46px;
  }

  .article-copy p {
    font-size: 1.12rem;
  }

  .article-copy p:first-child {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .nim-article-shell {
    padding: 48px 56px 56px;
  }

  .article-copy p {
    font-size: 1.16rem;
  }
}

.comment-content p {
  margin-top: 0.75rem;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin-top: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(17, 17, 17, 0.12);
  list-style: none;
}

.wp-caption,
.gallery {
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  color: var(--color-ink);
  z-index: 100000;
}

@keyframes pulse-live {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.88);
  }
}
