:root {
  --navy: #09253f;
  --navy-2: #0d3559;
  --blue: #176da8;
  --blue-dark: #0d527f;
  --orange: #ff6b1a;
  --cream: #fff9ef;
  --ink: #10202e;
  --muted: #647585;
  --line: #dfe7ed;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --shadow: 0 12px 34px rgba(9, 37, 63, 0.08);
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--surface-soft);
  color: var(--ink);
  line-height: 1.5;
}
img { max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 37, 63, 0.97);
  color: #fff;
  border-bottom: 3px solid var(--orange);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
  white-space: nowrap;
}
.brand img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.18));
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(255,107,26,0.16), transparent 24%),
    radial-gradient(circle at 72% 82%, rgba(23,109,168,0.15), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 20px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.73rem;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--navy);
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 4.65rem); max-width: 800px; }
.hero-copy {
  max-width: 700px;
  margin: 18px 0 0;
  color: #526575;
  font-size: 1.06rem;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.button,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
}
.button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
}
.button.secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.hero-mark {
  min-height: 250px;
  display: grid;
  place-items: center;
}
.hero-logo {
  display: block;
  width: min(280px, 82%);
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(11,39,64,0.16));
}


.scoreboard-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.scoreboard-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 20px 20px;
}
.section-kicker-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.section-kicker-row h2 {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
}
.section-note {
  color: var(--muted);
  font-size: 0.78rem;
}
.scoreboard-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 3px;
  scrollbar-width: thin;
}
.score-box {
  min-width: 160px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 12px;
  background: #fbfdfe;
}
.score-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
  font-weight: 800;
}
.score-row + .score-row { margin-top: 3px; }
.score-status {
  margin-top: 7px;
  color: var(--blue-dark);
  font-size: 0.73rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scoreboard-message {
  color: var(--muted);
  font-size: 0.86rem;
  padding: 6px 0;
}

.content-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 60px;
}
.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 28px;
  align-items: start;
}
.main-category-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
}
.category-intro {
  margin: 7px 0 26px;
  color: var(--muted);
  max-width: 760px;
}
.sport-block + .sport-block { margin-top: 30px; }
.section-spaced { margin-top: 54px; }
.eyebrow-tight { margin-bottom: 5px; }
.sport-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}
.sport-title::before {
  content: "";
  width: 5px;
  height: 18px;
  border-radius: 8px;
  background: var(--orange);
}
.teams-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px;
  box-shadow: 0 1px 0 rgba(9,37,63,0.02);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #cedbe4;
}
.team-header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #edf2f5;
}
.team-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.team-name-wrap { min-width: 0; }
.team-name-wrap h3,
.team-name-wrap h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}
.team-name-wrap a {
  text-decoration: none;
}
.team-name-wrap a:hover { color: var(--blue-dark); }
.team-meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.73rem;
}
.league-tag {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef5fa;
  color: var(--blue-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #e8eef2;
}
.news-list li:first-child { padding-top: 0; }
.news-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.news-list a {
  display: block;
  color: #155f95;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.35;
}
.news-list a:hover { text-decoration: underline; color: var(--blue-dark); }
.news-timestamp {
  display: block;
  margin-top: 4px;
  color: #82909c;
  font-size: 0.72rem;
}
.loading-row { color: var(--muted); font-size: 0.85rem; }

.sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(9,37,63,0.02);
}
.sidebar-card + .sidebar-card { margin-top: 14px; }
.sidebar-card h2,
.sidebar-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 0.98rem;
}
.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
  font-size: 0.84rem;
}
.sidebar-card ul { margin: 0; padding-left: 18px; }
.coverage-number {
  display: block;
  color: var(--orange);
  font-size: 2.35rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}
.ad-slot-note {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed #cad6de;
  border-radius: 12px;
  color: #8a99a5;
  background: #f8fbfc;
  font-size: 0.73rem;
}

.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 34px;
}
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
.page-hero p { color: var(--muted); max-width: 700px; }
.prose-shell {
  max-width: 860px;
  margin: 30px auto 60px;
  padding: 0 20px;
}
.prose-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 4vw, 38px);
}
.prose-card h2,
.prose-card h3 { color: var(--navy); letter-spacing: -0.025em; }
.prose-card h2:first-child { margin-top: 0; }
.prose-card p,
.prose-card li { color: #465b6b; }
.prose-card a { color: var(--blue-dark); }
.notice-box {
  padding: 14px 16px;
  border-radius: 10px;
  background: #f2f8fc;
  border: 1px solid #d7e7f1;
  color: #31576f;
}
.contact-box {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid #f1dfc9;
}

.team-page-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 28px;
}
.team-page-banner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
}
.team-page-banner .team-header {
  margin: 0;
  padding: 0;
  border: 0;
  grid-template-columns: 64px minmax(0, 1fr);
}
.team-page-banner .team-logo { width: 60px; height: 60px; }
.team-page-banner h1 { margin: 0; color: var(--navy); letter-spacing: -0.04em; }
.facts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.fact-pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f8;
  color: #546979;
  font-size: 0.75rem;
  font-weight: 700;
}
.editorial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 18px;
}
.editorial-card h2,
.editorial-card h3 { color: var(--navy); }
.editorial-card h2:first-child,
.editorial-card h3:first-child { margin-top: 0; }
.editorial-card p { color: #465b6b; }

.related-links {
  list-style: none;
  padding: 0 !important;
  margin: 0;
  display: grid;
  gap: 7px;
}
.related-links a {
  display: block;
  padding: 7px 9px;
  border-radius: 8px;
  background: #f6f9fb;
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.25;
}
.related-links a:hover {
  background: #edf4f8;
  text-decoration: underline;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-copy { max-width: 650px; font-size: 0.78rem; }
.footer-copy p { margin: 0 0 6px; }
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}
.footer-links a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid rgba(255,107,26,0.65);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 22px; padding-top: 42px; }
  .hero-mark { min-height: 180px; }
  .hero-logo { width: 190px; }
  .layout-grid,
  .team-page-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 680px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: 6px; min-height: auto; padding-top: 9px; padding-bottom: 10px; }
  .site-nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .site-nav a { white-space: nowrap; padding-left: 8px; padding-right: 8px; }
  .hero-inner { padding-top: 36px; padding-bottom: 32px; }
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .hero-mark { display: none; }
  .teams-container { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .team-page-grid { padding-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* v2.3: richer team guide pages */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.quick-facts > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px;
}
.quick-facts span { display:block; color:var(--muted); font-size:.69rem; text-transform:uppercase; letter-spacing:.06em; font-weight:850; margin-bottom:5px; }
.quick-facts strong { display:block; color:var(--navy); font-size:.88rem; line-height:1.28; }
.milestone-list { margin:0; padding-left:1.15rem; display:grid; gap:9px; color:#465b6b; }
.milestone-list li::marker { color:var(--orange); }
.split-editorial { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; }
.split-editorial h2 { margin-top:0; }
.faq-list { display:grid; gap:9px; }
.faq-list details { border:1px solid var(--line); border-radius:11px; background:#fbfdfe; padding:0 14px; }
.faq-list summary { cursor:pointer; padding:12px 0; color:var(--navy); font-weight:800; }
.faq-list details p { margin:0; padding:0 0 13px; }
.section-heading-row { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:12px; }
.section-heading-row h2 { margin:0; }
.team-card-news-only { box-shadow:none; }
.team-card-news-only:hover { transform:none; box-shadow:none; }
.button-wide { width:100%; }
@media (max-width: 760px) {
  .quick-facts { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .split-editorial { grid-template-columns:1fr; gap:8px; }
}
@media (max-width: 440px) { .quick-facts { grid-template-columns:1fr; } }
