/* ---------------------------------------------------------
   The Standard — A DU Hockey Podcast
   Palette: rink white, crimson, gold, ice-charcoal
--------------------------------------------------------- */

:root {
  --crimson: #862633;
  --crimson-dark: #5e1a24;
  --gold: #c9a66b;
  --gold-bright: #dab97e;
  --ice: #f4f4f1;
  --ice-line: #dcdcd6;
  --charcoal: #1c2024;
  --steel: #4c5760;
  --focus: #2a6fb0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ice);
  color: var(--charcoal);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

h1, h2, h3, .headline {
  font-family: "Big Shoulders Display", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--charcoal);
}

a {
  color: var(--crimson);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */

.topbar {
  background: var(--crimson);
  border-bottom: 4px solid var(--gold);
  position: relative;
  z-index: 20;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.wordmark {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ice);
  letter-spacing: 0.02em;
}
.wordmark span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  margin-top: 1px;
}
.wordmark:hover { text-decoration: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--ice);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--gold-bright); text-decoration: none; }
.nav a.current { color: var(--gold-bright); border-bottom: 2px solid var(--gold-bright); padding-bottom: 4px; }

/* ---------- Nav dropdowns (Team / History) ---------- */

.nav-item {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  color: var(--ice);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.nav-dropdown-toggle:hover { color: var(--gold-bright); }
.nav-dropdown-toggle.current { color: var(--gold-bright); border-bottom: 2px solid var(--gold-bright); padding-bottom: 4px; }

.nav-dropdown-toggle .caret {
  font-size: 0.65em;
  transition: transform 0.18s ease;
}
.nav-item.open .caret { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 200px;
  background: var(--crimson-dark);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 14px 28px rgba(0,0,0,0.35);
  padding: 6px 0;
  z-index: 40;
}
.nav-item.open .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  display: block;
}

/* Hover-to-open on mouse/trackpad devices. The invisible bridge fills the gap
   between the nav button and the menu so the menu doesn't close mid-travel. */
@media (hover: hover) and (pointer: fine) {
  .nav-item.has-dropdown:hover .dropdown-menu { display: block; }
  .nav-item.has-dropdown:hover .caret { transform: rotate(180deg); }

  .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
  }
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--ice);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: normal;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(244,244,241,0.08); color: var(--gold-bright); text-decoration: none; }
.dropdown-menu a.current { color: var(--gold-bright); font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ice);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }

  /* Slide-in drawer from the right. Transform animates on the compositor, so
     it opens immediately instead of the old max-height crawl, and nothing
     clips the dropdowns open. */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 86vw);
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: var(--crimson);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 62px 0 28px;
    transform: translateX(100%);
    transition: transform 0.22s ease-out;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.3);
    z-index: 60;
  }
  .nav.open { transform: translateX(0); }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(28, 32, 36, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0.2s;
    z-index: 55;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }

  .nav-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: none;
    color: var(--ice);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
  }
  .nav-close:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 2px; }

  /* every row, top level and dropdown alike, starts at the same left edge */
  .nav a,
  .nav-dropdown-toggle,
  .dropdown-menu a {
    display: block;
    width: 100%;
    padding: 14px 20px 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }
  .nav a { background: transparent; }
  .nav a.current,
  .nav-dropdown-toggle.current {
    color: var(--gold-bright);
    box-shadow: inset 3px 0 0 var(--gold-bright);
    padding-left: 24px;
  }

  .nav-item { width: 100%; }
  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    font-size: 1rem;
  }

  .dropdown-menu,
  .nav-item.has-dropdown:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    display: none;
    position: static;
    min-width: 0;
    box-shadow: none;
    border-bottom: none;
    background: var(--crimson-dark);
    padding: 0;
  }
  /* Must out-specify the `:hover` reset above: a tap on a touch screen also
     applies :hover, and at equal-or-lower specificity that reset was keeping
     the sub-menu hidden even though the caret had already flipped. */
  .nav .nav-item.has-dropdown.open .dropdown-menu { display: block; }
  /* If main.js never ran (stale cache, blocked script), focusing the toggle
     still opens its sub-menu, so the drawer is usable without JavaScript. */
  html:not(.js-nav) .nav-item:focus-within .dropdown-menu { display: block; }
  .dropdown-menu::before { content: none; }

  .nav-toggle,
  .nav-dropdown-toggle,
  .nav a,
  .dropdown-menu a { touch-action: manipulation; }
  .dropdown-menu a {
    background: transparent;
    font-size: 0.9rem;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
}

.nav-close { display: none; }
body.nav-locked { overflow: hidden; }

/* .topbar is a stacking context (z-index 20), so the drawer nested inside it
   cannot out-paint a backdrop appended to <body>. While the drawer is open,
   lift the whole header above the backdrop so taps reach the menu. */
body.nav-locked .topbar { z-index: 60; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 64px;
  background-image:
    linear-gradient(180deg, rgba(20,16,18,0.72) 0%, rgba(20,16,18,0.62) 45%, rgba(20,16,18,0.82) 100%),
    url("hero.jpg");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  color: var(--ice);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero .record {
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cta-row {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  background: var(--crimson);
  color: var(--ice);
  padding: 13px 26px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
}
.btn:hover { background: var(--crimson-dark); text-decoration: none; }

.btn-ghost {
  color: var(--charcoal);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 13px 6px;
  border-bottom: 2px solid var(--ice-line);
}
.btn-ghost:hover { border-color: var(--crimson); text-decoration: none; }

.hero .btn-ghost {
  color: var(--ice);
  border-bottom-color: rgba(244,244,241,0.4);
}
.hero .btn-ghost:hover { border-bottom-color: var(--gold-bright); }

/* ---------- Hero action buttons (Listen / Connect / Newsletter) ---------- */

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: var(--crimson);
  color: var(--ice);
  padding: 14px 26px;
  border-radius: 999px;
  min-width: 108px;
  text-align: center;
  border: 1px solid rgba(244,244,241,0.18);
}
a.hero-btn:hover { background: var(--crimson-dark); text-decoration: none; }

.hero-btn-label {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: "Big Shoulders Display", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-btn-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-btn-icons a,
.hero-btn-icons span {
  display: inline-flex;
  color: var(--ice);
}
.hero-btn-icons a:hover { color: var(--gold-bright); }

.hero-btn-icons svg {
  width: 1rem;
  height: 1rem;
}

.hero-note {
  margin-top: 18px;
  display: inline-block;
  font-size: 0.9rem;
  color: #cfcdca;
}
.hero-note:hover { color: var(--gold-bright); }

/* ---------- Banner rail (championship motif) ---------- */

.banner-rail {
  border-top: 1px solid var(--ice-line);
  border-bottom: 1px solid var(--ice-line);
  padding: 28px 0;
  background: #ececE7;
}

.banner-rail .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.pennant {
  width: 34px;
  height: 46px;
  flex-shrink: 0;
  background: var(--crimson);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  position: relative;
}
.pennant::after {
  content: "";
  position: absolute;
  left: 6px; right: 6px; top: 8px;
  height: 2px;
  background: var(--gold);
}
.pennant-year {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  text-align: center;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--ice);
}

@media (max-width: 640px) {
  .banner-rail .wrap { gap: 4px; }
  .pennant { width: 22px; height: 30px; }
  .pennant::after { left: 4px; right: 4px; top: 5px; }
  .pennant-year { top: 11px; font-size: 0.5rem; }
}

@media (max-width: 360px) {
  .banner-rail .wrap { gap: 3px; }
  .pennant { width: 19px; height: 26px; }
  .pennant::after { left: 3px; right: 3px; top: 4px; }
  .pennant-year { top: 9px; font-size: 0.42rem; }
}

/* ---------- Section rhythm ---------- */

section.block {
  padding: 56px 0;
}
section.block + section.block {
  border-top: 1px solid var(--ice-line);
}

.block h2 {
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.block .intro {
  color: var(--steel);
  max-width: 60ch;
  margin-bottom: 28px;
}

/* ---------- Episode list ---------- */

.episode {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--ice-line);
}
.episode:last-child { border-bottom: 1px solid var(--ice-line); }

.episode .num {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 1.4rem;
  min-width: 2.4ch;
}

.episode h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.episode p {
  margin: 6px 0 0;
  color: var(--steel);
  font-size: 0.96rem;
}

.episode-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.88rem;
}

/* ---------- Pillars (what the show covers) ---------- */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 28px; }
}

.pillar svg {
  width: 30px;
  height: 30px;
  color: var(--crimson);
  margin-bottom: 16px;
}

.pillar h3 { font-size: 1.05rem; }

.pillar p {
  color: var(--steel);
  margin-top: 8px;
  font-size: 0.95rem;
}

/* ---------- Feature cards (Stats / Trivia) ---------- */

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ice-line);
  border: 1px solid var(--ice-line);
}

@media (max-width: 640px) {
  .feature-cards { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--ice);
  padding: 36px 30px;
}

.feature-card .icon-badge {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card .icon-badge svg {
  width: 20px;
  height: 20px;
  color: var(--crimson);
}

.feature-card .tag {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 0.9rem;
  color: var(--crimson);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-top: 8px;
}

.feature-card p {
  color: var(--steel);
  margin-top: 10px;
  font-size: 0.97rem;
}

.feature-card .btn-ghost {
  display: inline-block;
  margin-top: 18px;
}

/* ---------- Newsletter ---------- */

.newsletter {
  background: #ececE7;
  border-top: 1px solid var(--ice-line);
  border-bottom: 1px solid var(--ice-line);
  padding: 56px 0;
}

.newsletter .wrap { max-width: 620px; }

.newsletter h2 { font-size: 1.5rem; }

.newsletter .intro { margin-top: 10px; margin-bottom: 0; }

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border: 1px solid var(--ice-line);
  background: var(--ice);
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-form button {
  background: var(--crimson);
  color: var(--ice);
  border: none;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 2px;
  font-family: "Big Shoulders Display", sans-serif;
}
.newsletter-form button:hover { background: var(--crimson-dark); }

.newsletter small {
  display: block;
  margin-top: 12px;
  color: var(--steel);
  font-size: 0.82rem;
}

.newsletter-embed {
  margin-top: 22px;
}
.newsletter-embed iframe {
  width: 100% !important;
  max-width: 480px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Schedule ---------- */

.sched-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 30px;
}

.sched-filter {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--ice-line);
  border-radius: 999px;
  background: #fff;
  color: var(--steel);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.sched-filter span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0;
  color: var(--steel);
  background: var(--ice);
  padding: 1px 7px;
  border-radius: 999px;
}

.sched-filter:hover { border-color: var(--crimson); color: var(--crimson); }
.sched-filter.is-active { background: var(--crimson); border-color: var(--crimson); color: #fff; }
.sched-filter.is-active span { background: rgba(255, 255, 255, 0.2); color: #fff; }

.month-group[hidden] { display: none; }
.month-group + .month-group { margin-top: 36px; }

.month-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.month-head h2 {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.month-count {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}

.month-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ice-line);
}

.game-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--ice-line);
  border-left: 4px solid var(--steel);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.game[hidden] { display: none; }
.game:hover { box-shadow: 0 2px 12px rgba(28, 32, 36, 0.09); }
.game.home { border-left-color: var(--gold); }
.game.postseason { border-left-color: var(--crimson); background: #faf8f6; }

.game-date { text-align: center; line-height: 1.04; }

.game-date .dow {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  color: var(--steel);
}

.game-date .dnum {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--charcoal);
}

.game-date .drange {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-top: 2px;
}

.game-date .mon {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: var(--crimson);
}

.game-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 5px; }

.game-tag {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.game-tag.home { background: var(--gold); color: #3a2b12; }
.game-tag.away { background: var(--ice); color: var(--steel); border: 1px solid var(--ice-line); }
.game-tag.post { background: var(--crimson); color: #fff; }
.game-tag.exh { background: #fff; color: var(--steel); border: 1px dashed var(--ice-line); }

.game-opp { font-size: 1.28rem; line-height: 1.12; }

.game-venue {
  margin: 3px 0 0;
  font-size: 0.83rem;
  color: var(--steel);
}

.game-time {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
  text-align: right;
  white-space: nowrap;
}

.game-time span {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  color: var(--steel);
}

.game-time.tba { color: var(--steel); letter-spacing: 0.06em; }

.sched-empty {
  margin: 28px 0 0;
  color: var(--steel);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .game {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 12px 14px;
  }
  .game-date .dnum { font-size: 1.7rem; }
  .game-opp { font-size: 1.12rem; }
  .game-time {
    grid-column: 2;
    text-align: left;
    font-size: 1.05rem;
    margin-top: 2px;
  }
  .game-time span { display: inline; margin-left: 5px; }
}

/* ---------- Line combinations ---------- */

.lines-page .intro { margin-bottom: 8px; max-width: 64ch; }

h2.lines-subhead {
  font-size: 1.15rem;
  margin: 36px 0 16px;
  padding-top: 22px;
  border-top: 1px solid var(--ice-line);
}
.lines-page > .wrap > .lines-subhead:first-of-type { border-top: none; padding-top: 0; }

.line-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* rows sit flush; the pull-up keeps adjacent borders from doubling */
.line-row + .line-row { margin-top: -1px; }

.line-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  background: var(--ice);
  border: 1px solid var(--ice-line);
  border-left: 4px solid var(--gold);
}
.line-row.d-row { border-left-color: var(--crimson); }
.line-row.g-row { border-left-color: var(--steel); }

.line-label {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--crimson);
  min-width: 66px;
  padding-top: 6px;
}

.line-players {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Position header, once per group. Mirrors the row's border + padding so the
   labels sit directly over the card columns. */
.line-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-left: 4px solid transparent;
  margin-bottom: 7px;
}
.line-head .line-label { visibility: hidden; padding-top: 0; }

.line-head-cell {
  flex: 1 1 150px;
  min-width: 142px;
  max-width: 226px;
  text-align: center;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.player {
  flex: 1 1 150px;
  min-width: 142px;
  max-width: 226px;
  background: #fff;
  border: 1px solid var(--ice-line);
  padding: 10px 12px 9px;
  text-align: center;
  transition: box-shadow 0.15s ease;
}
.player:hover { box-shadow: 0 2px 12px rgba(28, 32, 36, 0.09); }

.jersey-img {
  width: 100%;
  max-width: 116px;
  height: auto;
  margin: 0 auto 6px;
}

.player .line-name {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  line-height: 1.1;
  margin: 0;
}
.player .line-name .first {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--steel);
}

.player-stats {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 4px;
  margin: 8px 0 0;
  padding-top: 7px;
  border-top: 1px solid var(--ice-line);
}

.player-stats dt {
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.player-stats dd {
  margin: 2px 0 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.15;
  color: var(--charcoal);
}

.player-stats .stat-draft dd {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.lines-source {
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--steel);
}

@media (max-width: 640px) {
  .line-row {
    flex-direction: column;
    gap: 10px;
    padding: 12px 12px;
  }
  .line-label { min-width: 0; padding-top: 0; }

  .line-head { padding: 0 12px; gap: 0; margin-bottom: 5px; }
  .line-head .line-label { display: none; }
  .line-head-cell { min-width: 0; max-width: none; font-size: 0.7rem; letter-spacing: 0.1em; }

  /* Keep a whole line on one row: one equal column per player, no wrapping.
     grid-auto-flow handles 2-man pairs and 3-man lines without separate rules. */
  .line-players {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .player {
    min-width: 0;
    max-width: none;
    padding: 9px 7px 8px;
  }

  .jersey-img { max-width: 78px; margin-bottom: 5px; }

  .player .line-name {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

  /* Stats stack as label/value rows so they stay readable in a narrow card. */
  .player-stats {
    grid-template-columns: 1fr;
    white-space: nowrap;
    gap: 2px;
    margin-top: 7px;
    padding-top: 6px;
  }
  .player-stats > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px;
  }
  .player-stats dt { font-size: 0.54rem; letter-spacing: 0.07em; }
  .player-stats dd { margin: 0; font-size: 0.85rem; }

  .player-stats .stat-draft dd { font-size: 0.76rem; }
}

@media (max-width: 400px) {
  .lines-page .wrap { padding: 0 14px; }
  .line-row { padding: 11px 9px; }
  .line-head { padding: 0 9px; }
  .line-players { gap: 6px; }
  .player { padding: 9px 5px 8px; }
  .jersey-img { max-width: 64px; }
  .player .line-name { font-size: 0.86rem; }
  .player .line-name .first { font-size: 0.6rem; }
  .player-stats dt { font-size: 0.5rem; }
  .player-stats dd { font-size: 0.78rem; }
  .player-stats .stat-draft dd { font-size: 0.68rem; }
}

/* ---------- Placeholder page (stats/trivia) ---------- */

.placeholder {
  padding: 88px 0 96px;
  text-align: left;
}
.placeholder h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  max-width: 16ch;
}
.placeholder p {
  margin-top: 18px;
  max-width: 52ch;
  color: var(--steel);
  font-size: 1.08rem;
}
.ice-rule {
  width: 64px;
  height: 4px;
  background: var(--gold);
  margin-top: 26px;
}

/* ---------- 404 page link list ---------- */

.notfound-links {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 420px;
}
.notfound-links li { border-bottom: 1px solid rgba(28, 32, 36, 0.12); }
.notfound-links a {
  display: block;
  padding: 12px 2px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */

footer {
  background: var(--charcoal);
  color: #b9bfc4;
  padding: 32px 0;
  font-size: 0.9rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.disclaimer {
  background: var(--charcoal);
  border-top: 1px solid rgba(244,244,241,0.1);
  padding: 24px 0;
}
.disclaimer .wrap {
  max-width: 720px;
}
.disclaimer h2 {
  color: #b9bfc4;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.disclaimer p {
  color: #8b9298;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
footer a { color: var(--gold-bright); }

footer .socials {
  display: flex;
  gap: 18px;
  align-items: center;
}
footer .socials a {
  display: inline-flex;
  color: #b9bfc4;
}
footer .socials a:hover { color: var(--gold-bright); }
footer .socials svg {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav { transition: none; }
}

/* ---------- Stats tables ---------- */

.stats-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 38px 0 13px;
}
.stats-head h2 {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stats-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ice-line);
}
.stats-count {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}
.stats-page .stats-head:first-of-type { margin-top: 26px; }
.stats-filters { margin: 0 0 16px; }

.table-scroll {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--ice-line);
  -webkit-overflow-scrolling: touch;
}

.stat-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stat-table th,
.stat-table td {
  padding: 9px 12px;
  text-align: right;
}

.stat-table thead th {
  background: var(--crimson);
  color: var(--ice);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.stat-table tbody tr { background: #fff; }
.stat-table tbody tr:nth-child(even) { background: #f4f4f1; }
/* once JS takes over striping, rows keep alternating after a filter hides some */
.stat-table tbody.is-filtered tr:nth-child(even) { background: #fff; }
.stat-table tbody.is-filtered tr.alt { background: #f4f4f1; }
.stat-table tbody tr:hover { background: #efeee8; }

.stat-table tbody th,
.stat-table tbody td { border-top: 1px solid var(--ice-line); }

.stat-table .col-num {
  width: 46px;
  min-width: 46px;
  padding-right: 8px;
}
.stat-table .col-name {
  text-align: left;
  font-weight: 600;
  padding-right: 6px;
}

.stat-table tbody th.col-num {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--crimson);
}

.p-first {
  font-weight: 400;
  font-size: 0.9em;
  color: var(--steel);
}

/* Pos and Age share a width and both center, so the pair reads as a unit
   instead of one hugging left and the other hugging right. */
.stat-table .col-pos,
.stat-table .col-age {
  width: 54px;
  min-width: 54px;
  text-align: center;
  padding-left: 6px;
  padding-right: 6px;
}

.stat-table .col-pos {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--steel);
}
.stat-table .col-draft {
  text-align: left;
  font-size: 0.79rem;
  color: var(--steel);
}
.stat-table thead .col-pos,
.stat-table thead .col-draft { font-size: 0.92rem; color: var(--ice); }
.stat-table thead .col-pos { letter-spacing: 0.06em; }

.stat-table .col-filler {
  width: 100%;
  padding: 0;
  border-top: 1px solid var(--ice-line);
}
.stat-table thead .col-filler { border-top: none; }

.stat-table .is-blank { color: #b9b9b2; }

.stats-source {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--steel);
}

@media (max-width: 640px) {
  .stat-table { font-size: 0.84rem; }
  .stat-table th,
  .stat-table td { padding: 8px 9px; }
  .stat-table .col-num { width: 38px; min-width: 38px; padding-right: 6px; }
  .stat-table .col-pos,
  .stat-table .col-age { width: 46px; min-width: 46px; padding-left: 4px; padding-right: 4px; }
  .stat-table .col-name .p-first { display: none; }
  .stats-head h2 { font-size: 1.25rem; }
}

/* Sortable stat table headers */

.stat-table thead th.is-sortable {
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.stat-table thead th.is-sortable:hover { background: var(--crimson-dark); }
.stat-table thead th.is-sortable:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: -3px;
}

/* arrow is absolutely placed so toggling it never shifts a column */
.stat-table thead th.is-sortable::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  opacity: 0;
}
.stat-table thead th.sort-asc::after {
  border-bottom: 5px solid var(--gold-bright);
  opacity: 1;
}
.stat-table thead th.sort-desc::after {
  border-top: 5px solid var(--gold-bright);
  opacity: 1;
}

/* Recruiting table */

.stat-table .col-team { text-align: left; }
.stat-table .col-league {
  width: 62px;
  min-width: 62px;
  text-align: center;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--steel);
}
.stat-table thead .col-league {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--ice);
}
.stat-table .col-date { text-align: left; white-space: nowrap; }
.stat-table thead .col-team,
.stat-table thead .col-date { text-align: left; }
.stat-table thead .col-league { text-align: center; }

/* Season picker (history stats) */

.season-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 4px;
}
.season-picker label {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.season-picker select {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ice);
  background: var(--crimson);
  border: 1px solid var(--crimson);
  border-radius: 3px;
  padding: 7px 34px 7px 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4f4f1' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 13px;
}
.season-picker select:hover { background-color: var(--crimson-dark); }
.season-picker select:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

.season-title {
  display: inline-block;
  padding: 4px 11px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(201, 166, 107, 0.16);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6d5320;
}
.season-title[hidden] { display: none; }

.history-stats .stats-head:first-of-type { margin-top: 26px; }

/* Player profile */

.back-link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--steel);
}
.back-link:hover { color: var(--crimson); }

.pp-meta {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--steel);
}

h2.pp-subhead {
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 30px 0 13px;
}

.stat-table .col-season {
  text-align: left;
  white-space: nowrap;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--crimson);
}
.stat-table thead .col-season {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 0.92rem;
  color: var(--ice);
}

.stat-table tfoot tr { background: var(--ice); }
.stat-table tfoot th,
.stat-table tfoot td {
  border-top: 2px solid var(--crimson);
  font-weight: 600;
}
.stat-table tfoot .col-season { color: var(--charcoal); }

/* names link through to a profile */
.stat-table .col-name a {
  color: inherit;
  text-decoration: none;
}
.stat-table .col-name a:hover {
  color: var(--crimson);
  text-decoration: underline;
}

/* profile links on the lines cards */
.player .line-name a {
  color: inherit;
  text-decoration: none;
}
.player .line-name a:hover { color: var(--crimson); }
.player .line-name a:hover .first { color: var(--crimson); }

/* ---------- Championship teams ---------- */

.champ-list { display: flex; flex-direction: column; gap: 12px; }

/* pennant sits in its own column so it never sets the card's height */
.champ {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  background: #fff;
  border: 1px solid var(--ice-line);
  padding: 13px 18px 11px;
}

.champ-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.pennant-lg { width: 56px; height: 76px; flex: none; }
.pennant-lg::after { left: 9px; right: 9px; top: 12px; height: 3px; }
.pennant-lg .pennant-year {
  top: 28px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

h2.champ-final {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.champ-where {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.2;
  color: var(--steel);
}
.c-city { font-weight: 600; color: var(--charcoal); }
.c-arena::before {
  content: "\00b7";
  margin: 0 7px;
  color: var(--ice-line);
}

/* one aligned strip of facts under the header */
/* flows down first, then across: Head Coach lands under Record, Top Point
   Scorer under Top Goal Scorer, and so on, with the order left untouched */
.champ-facts {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: minmax(136px, 1fr);
  gap: 11px 18px;
  margin: 15px 0 0;
}
.champ-facts dt {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.2;
}
.champ-facts dd {
  margin: 2px 0 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--charcoal);
  line-height: 1.15;
}

.cl-name {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--charcoal);
}
.cl-stat {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--crimson);
  margin-left: 3px;
}
.cl-note {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-style: italic;
  font-weight: 400;
  color: var(--steel);
}
.champ-facts a { color: inherit; text-decoration: none; }
.champ-facts a:hover .cl-name { color: var(--crimson); text-decoration: underline; }

/* collapsed by default; the whole path opens on click */
.champ-drop {
  grid-column: 1 / -1;
  margin-top: 15px;
  border-top: 1px solid var(--ice-line);
  padding-top: 9px;
}
/* the second dropdown sits right under the first, sharing one rule */
.champ-notes-drop {
  margin-top: 8px;
  border-top: none;
  padding-top: 0;
}
.champ-drop summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--crimson);
}
.champ-drop summary::-webkit-details-marker { display: none; }
.champ-drop summary::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid var(--crimson);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.15s ease;
}
.champ-drop[open] summary::before { transform: rotate(90deg); }
.champ-drop summary:hover { color: var(--crimson-dark); }
.champ-drop summary:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.champ-games {
  list-style: none;
  margin: 11px 0 2px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.champ-games li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 6px 10px;
  background: var(--ice);
  font-size: 0.88rem;
}
.champ-games li:last-child {
  background: rgba(201, 166, 107, 0.2);
  border-left: 3px solid var(--gold);
}
.g-round {
  flex: none;
  width: 152px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.g-opp { font-weight: 500; }
.g-opp b {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--crimson);
  margin-left: 4px;
  white-space: nowrap;
}
.champ .is-blank { color: #b9b9b2; }

/* ---------- Championship timeline ---------- */

.champ-timeline { margin: 4px 0 26px; }
.tl-track {
  position: relative;
  height: 104px;
  margin: 0 24px;
}
.tl-axis {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  background: var(--ice-line);
}
.pennant-sm {
  position: absolute;
  bottom: 22px;
  transform: translateX(-50%);
  width: 40px;
  height: 54px;
  text-decoration: none;
  transition: transform 0.14s ease;
}
.pennant-sm::after { left: 6px; right: 6px; top: 9px; height: 2px; }
.pennant-sm .pennant-year {
  top: 21px;
  font-size: 0.72rem;
  font-weight: 800;
}
.pennant-sm:hover {
  transform: translateX(-50%) translateY(-4px);
  text-decoration: none;
}
.pennant-sm:hover::after { background: var(--ice); }
.pennant-sm:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

.tl-tick {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--steel);
  white-space: nowrap;
}
.tl-tick::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 7px;
  background: var(--ice-line);
}

@media (max-width: 760px) {
  .champ { padding: 13px 14px 11px; column-gap: 13px; }
  .champ-top { gap: 10px 14px; }
  .pennant-lg { width: 46px; height: 62px; }
  .pennant-lg::after { left: 7px; right: 7px; top: 9px; }
  .pennant-lg .pennant-year { top: 22px; font-size: 0.92rem; }
  .champ-final { font-size: 1.2rem; }
  .champ-where { flex-basis: 100%; }
  .c-arena::before { content: none; display: block; }
  .champ { align-items: start; }
  .champ-facts {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 14px;
  }
  .champ-games li { flex-wrap: wrap; gap: 3px 12px; }
  .g-round { width: 100%; }
  .champ-timeline { overflow-x: auto; overscroll-behavior-x: contain; padding-bottom: 4px; }
  .tl-track { height: 88px; margin: 0 18px; min-width: 520px; }
  .pennant-sm { width: 32px; height: 44px; }
  .pennant-sm::after { left: 5px; right: 5px; top: 7px; }
  .pennant-sm .pennant-year { top: 17px; font-size: 0.56rem; }
  .tl-tick { font-size: 0.58rem; }
}

@media (max-width: 640px) {
  .champ { padding: 14px 14px 12px; }
  .pennant-lg { width: 52px; height: 70px; }
  .pennant-lg::after { left: 8px; right: 8px; top: 10px; }
  .pennant-lg .pennant-year { top: 26px; font-size: 1.02rem; }
  .champ-final h2 { font-size: 1.2rem; }
  .champ-games li { flex-wrap: wrap; gap: 3px 12px; }
  .g-round { width: 100%; }
}

/* Fast facts list */

.champ-notes {
  list-style: none;
  margin: 11px 0 3px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 76ch;
}
.champ-notes li {
  position: relative;
  padding-left: 16px;
  font-size: 0.89rem;
  line-height: 1.45;
  color: var(--charcoal);
}
.champ-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--crimson);
}
.champ-notes li.is-quote {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: var(--steel);
}
.champ-notes li.is-quote::before { content: none; }

/* Pull quote, spanning the card under the header */

.champ-quote {
  grid-column: 1 / -1;
  margin: 15px 0 0;
  padding: 12px 0 12px 16px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(201, 166, 107, 0.13), rgba(201, 166, 107, 0));
}
.champ-quote blockquote {
  margin: 0;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--charcoal);
  max-width: 80ch;
}
.champ-quote blockquote::before { content: "\201C"; }
.champ-quote blockquote::after { content: "\201D"; }
.champ-quote figcaption {
  margin-top: 6px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
}
.champ-quote + .champ-drop { margin-top: 13px; }

@media (max-width: 640px) {
  .champ-quote { padding: 10px 0 10px 12px; margin-top: 13px; }
  .champ-quote blockquote { font-size: 0.94rem; }
}

/* NHL alumni tables */

.stat-table .col-teams,
.stat-table .col-since {
  text-align: left;
}
.stat-table .col-teams {
  font-size: 0.82rem;
  line-height: 1.35;
  white-space: normal;
  min-width: 260px;
  color: var(--steel);
}
.stat-table .col-since { width: 74px; min-width: 74px; text-align: center; }
.stat-table .col-du {
  width: 86px;
  min-width: 86px;
  text-align: left;
  white-space: nowrap;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--crimson);
}
.stat-table thead .col-du {
  text-align: left;
  font-size: 0.92rem;
  color: var(--ice);
}
.stat-table thead .col-since { text-align: center; }
.stat-table thead .col-teams,
.stat-table thead .col-team {
  text-align: left;
  font-size: 0.92rem;
  color: var(--ice);
}

@media (max-width: 640px) {
  .stat-table .col-teams { min-width: 180px; font-size: 0.76rem; }
  .stat-table .col-since { width: 58px; min-width: 58px; }
  .stat-table .col-du { width: 72px; min-width: 72px; font-size: 0.85rem; }
}

/* Coaches + captains tables */

.stat-table .col-rec,
.stat-table .col-titles,
.stat-table .col-du2 {
  text-align: left;
  white-space: nowrap;
}
.stat-table .col-rec {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.stat-table .col-titles {
  font-size: 0.85rem;
  color: var(--crimson);
  white-space: normal;
  min-width: 170px;
}
.stat-table .col-du2 { color: var(--steel); font-size: 0.86rem; }
.stat-table thead .col-rec,
.stat-table thead .col-titles,
.stat-table thead .col-du2 {
  text-align: left;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 0.92rem;
  color: var(--ice);
}
.captains-page .stat-table .col-du { width: 108px; min-width: 108px; white-space: normal; }
