/* ===========================================
   APTOS LACROSSE DESIGN SYSTEM v9
   Comprehensive design tokens and patterns
   Based on v6 with refinements for season pages
   =========================================== */

/* ===========================================
   1. DESIGN TOKENS
   Core variables that define the visual language
   =========================================== */

:root {
  /* -----------------------------
     1.1 COLORS
     Primary palette and semantic colors
     ----------------------------- */

  /* Primary Colors */
  --color-navy: #00205c;              /* Primary brand color - headers, links, accents */
  --color-white: #ffffff;             /* Backgrounds, text on dark */
  --color-black: #000000;             /* Body text, borders */

  /* Secondary Colors */
  --color-gray: #8a8b87;              /* Secondary text, muted content */
  --color-gray-light: #e3e3e3;        /* Borders, dividers */
  --color-gray-background: #efefef;   /* Section backgrounds */
  --color-gray-f5: #f5f5f5;           /* Subtle backgrounds, captions */

  /* Alpha Variants - Used for overlays and gradients */
  --color-navy-half: rgba(28, 41, 86, 0.5);       /* Semi-transparent navy for labels */
  --color-navy-80: rgba(0, 32, 92, 0.80);         /* Mobile hero overlay */
  --color-blue-gradient: #072b5b;                 /* Gradient endpoint for heroes */
  --color-white-66: rgba(255, 255, 255, 0.66);    /* Muted white text */
  --color-white-60: rgba(255, 255, 255, 0.6);     /* Even more muted */
  --color-white-30: rgba(255, 255, 255, 0.3);     /* Borders on dark backgrounds */

  /* Semantic Colors */
  --color-text-primary: var(--color-black);
  --color-text-secondary: var(--color-gray);
  --color-text-inverse: var(--color-white);
  --color-text-link: var(--color-navy);
  --color-background-primary: var(--color-white);
  --color-background-secondary: var(--color-gray-background);
  --color-background-dark: var(--color-navy);
  --color-border-light: var(--color-gray-light);
  --color-border-dark: var(--color-black);

  /* -----------------------------
     1.2 TYPOGRAPHY
     Font families, sizes, weights, and spacing
     ----------------------------- */

  /* Font Families
     Headers: Bebas Neue - all headlines from H1-H6
     Body: Browser default sans-serif
     Labels: System sans-serif - stats, badges, tables */
  --font-heading: 'Bebas Neue', sans-serif; /* All headlines H1-H6 */
  --font-body: sans-serif;                  /* Body text, narratives, captions */
  --font-label: system-ui, -apple-system, BlinkMacSystemFont, sans-serif; /* Labels, stats, tables */

  /* Font Sizes - Heading Hierarchy (Bebas Neue) */
  --text-h1: 84px;       /* Hero headlines, championship titles */
  --text-h2: 48px;       /* Section titles like "The Rough Start" */
  --text-h3: 36px;       /* Player names like "Cole Moules" */
  --text-h4: 24px;       /* Subsections like "Schedule & Results", timeline day names */
  --text-h5: 20px;       /* Smaller card titles */
  --text-h6: 14px;       /* Timeframes, small headers */

  /* Font Sizes - Body Hierarchy (sans-serif) */
  --text-p1: 18px;       /* Large body: hero-subtitle, chapter-narrative */
  --text-p2: 14px;       /* Regular body: excerpts, descriptions */
  --text-p3: 11px;       /* Small body: captions */

  /* Font Sizes - Labels (sans-serif) */
  --text-button: 14px;   /* Buttons, nav links */
  --text-label: 12px;    /* Small labels, badges */
  --text-small: 10px;    /* Dates, tiny labels */

  /* Line Heights */
  --leading-tight: 1;        /* Headlines, stat values */
  --leading-snug: 1.2;       /* Sub-headlines */
  --leading-normal: 1.4;     /* Body text */
  --leading-relaxed: 1.6;    /* Long-form content */

  /* Letter Spacing */
  --tracking-tight: -0.04em;   /* Large headlines */
  --tracking-normal: 0.02em;   /* Body text */
  --tracking-wide: 0.14em;     /* Labels, buttons, uppercase text */
  --tracking-spaced: 0.12em;   /* Header text, badges */

  /* Font Weights */
  --weight-normal: 400;    /* Body text, regular content */
  --weight-medium: 500;    /* Emphasized text, some headlines */
  --weight-semibold: 600;  /* Strong emphasis */
  --weight-bold: 700;      /* Headlines, buttons */

  /* -----------------------------
     1.3 SPACING
     Consistent spacing scale for margins and padding
     ----------------------------- */

  --space-xs: 4px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 40px;
  --space-4xl: 48px;
  --space-5xl: 60px;
  --space-6xl: 80px;

  /* Semantic Spacing */
  --container-padding: 40px;           /* Desktop padding */
  --container-padding-mobile: 20px;    /* Mobile padding */
  --section-gap: 60px;                 /* Between major sections */
  --card-gap: 16px;                    /* Between cards */

  /* -----------------------------
     1.4 LAYOUT
     Container widths and breakpoints
     ----------------------------- */

  --max-width: 1040px;        /* 960px content + 40px gutters each side */
  --max-width-wide: 1440px;   /* Wide sections: latest articles, next games, recent articles */
  --content-width: 960px;     /* Content area width */
  --min-width: 320px;         /* Minimum mobile width */

  /* Breakpoints (as reference - use in media queries) */
  /* 1440px - Scale down from design */
  /* 1300px - Adjust thumbnails, game cards */
  /* 1200px - Stack content in article cards */
  /* 980px  - Stack sections */
  /* 960px  - Mobile layout */

  /* -----------------------------
     1.5 EFFECTS
     Shadows, borders, transitions
     ----------------------------- */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 20px;     /* Pill buttons */

  /* Shadows */
  --shadow-card: 0px 4px 24px 12px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.4s ease-out;
}

/* ===========================================
   2. TYPOGRAPHY CLASSES
   Consistent heading and body text hierarchy
   =========================================== */

/* ----- HEADING HIERARCHY (Bebas Neue) ----- */

/* H1 - Hero headlines ~84px
   Used for: "Mariners clinch first PCAL title" */
.text-h1, h1 {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--weight-normal);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* H2 - Section titles ~48px
   Used for: "The Rough Start", "Schedule & Results" section headers */
.text-h2, h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-normal);
  line-height: var(--leading-tight);
  letter-spacing: 0.02em;
}

/* H3 - Player/item names ~36px
   Used for: "Cole Moules", scorer names, goalie names */
.text-h3, h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-normal);
  line-height: var(--leading-tight);
  letter-spacing: 0.02em;
}

/* H4 - Subsection headers ~24px
   Used for: "Schedule & Results", timeline day names, score names */
.text-h4, h4 {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-normal);
  line-height: var(--leading-tight);
  letter-spacing: 0.02em;
}

/* H5 - Smaller card titles ~20px
   Used for: article card titles */
.text-h5, h5 {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: var(--weight-normal);
  line-height: var(--leading-snug);
  letter-spacing: 0.02em;
}

/* H6 - Timeframes, small headers ~14px
   Used for: chapter-timeframe, section labels */
.text-h6, h6 {
  font-family: var(--font-heading);
  font-size: var(--text-h6);
  font-weight: var(--weight-normal);
  line-height: var(--leading-snug);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ----- BODY TEXT HIERARCHY (sans-serif) ----- */

/* P1 - Large body text ~18px
   Used for: hero-subtitle, chapter-narrative, goalie-narrative */
.text-p1 {
  font-family: var(--font-body);
  font-size: var(--text-p1);
  font-weight: var(--weight-normal);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* P2 - Regular body text ~14px
   Used for: timeline-classic-excerpt, spotlight-description, article excerpts */
.text-p2 {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  font-weight: var(--weight-normal);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* P3 - Small body/caption text ~11px
   Used for: hero-caption, photo credits */
.text-p3 {
  font-family: var(--font-body);
  font-size: var(--text-p3);
  font-weight: var(--weight-normal);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ----- LABEL/STATS HIERARCHY (sans-serif) ----- */

/* Label - Small caps (12px uppercase)
   Used for: stat labels, badge text */
.text-label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* Button text (14px bold uppercase)
   Used for: Buttons, Nav links */
.text-button {
  font-family: var(--font-label);
  font-size: var(--text-button);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* Small text (10-11px uppercase)
   Used for: Dates, credits, tiny labels */
.text-small {
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-spaced);
}

/* ===========================================
   3. COLOR UTILITY CLASSES
   Quick color application helpers
   =========================================== */

/* Text Colors */
.color-navy { color: var(--color-navy); }
.color-white { color: var(--color-white); }
.color-black { color: var(--color-black); }
.color-gray { color: var(--color-gray); }
.color-muted { color: var(--color-white-66); }

/* Background Colors */
.bg-navy { background-color: var(--color-navy); }
.bg-white { background-color: var(--color-white); }
.bg-gray { background-color: var(--color-gray-background); }
.bg-gray-light { background-color: var(--color-gray-light); }

/* ===========================================
   4. COMPONENT PATTERNS
   Documented patterns for common UI elements
   =========================================== */

/* -----------------------------
   4.1 HEADER
   Logo and navigation container

   Structure:
   <header class="header">
     <div class="logo">
       <img src="..." alt="Aptos Lacrosse">
     </div>
   </header>
   ----------------------------- */

/* Header - Centered logo variant */
.header {
  display: flex;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 36px;
}

.logo {
  width: 228px;
  height: 120px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Header - Grid variant with hashtag and date (2025 page style) */
.header-grid {
  padding: 16px 0;
}

.header-grid .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header-logo-sm {
  height: 64px;
  grid-column: 2;
}

.header-text-left {
  grid-column: 1;
  justify-self: start;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-spaced);
  color: var(--color-gray);
}

.header-text-right {
  grid-column: 3;
  justify-self: end;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-spaced);
  color: var(--color-gray);
}

/* -----------------------------
   4.2 NAVIGATION
   Desktop and mobile nav patterns

   Structure:
   <nav class="navigation">
     <div class="nav-titles">...</div>
     <div class="nav-links">
       <div class="nav-group">
         <a class="nav-link">...</a>
       </div>
     </div>
   </nav>
   ----------------------------- */

/* Navigation - Positioned over hero */
.navigation {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: var(--max-width-wide);
  max-width: 100%;
  padding: var(--container-padding) var(--container-padding) 0;
  color: var(--color-navy);
}

.nav-titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  color: var(--color-navy);
  /* Uses h1 element default styling */
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-group {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.nav-link {
  font-family: var(--font-label);
  font-size: var(--text-button);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-navy);
  text-decoration: none;
  transition: opacity var(--transition-fast);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 0;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Mobile team select dropdown */
.nav-team-select {
  display: none;
}

.team-select {
  font-family: var(--font-label);
  font-size: var(--text-button);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-navy);
  background: var(--color-gray-light);
  border: none;
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  padding-right: 32px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300205c' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.team-select:focus {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}

/* -----------------------------
   4.3 BUTTONS
   Primary and variant button styles

   Structure:
   <a class="btn">Button Text</a>
   <a class="btn btn-large">Large Button</a>
   <a class="btn btn-navy">Navy Button</a>
   ----------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  font-family: var(--font-label);
  font-size: var(--text-button);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-navy);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.btn:hover {
  opacity: 0.9;
}

/* Large button variant */
.btn-large {
  padding: 16px 32px;
}

/* Navy button variant */
.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Full-width button (See All) */
.btn-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
}

/* -----------------------------
   4.4 CARDS - Article Cards
   Hero overlay article cards

   Structure:
   <a class="article-card">
     <div class="article-content">
       <div class="article-text">
         <h2 class="article-title">...</h2>
         <p class="article-description">...</p>
       </div>
       <img class="article-thumbnail" src="...">
     </div>
     <span class="btn">More</span>
   </a>
   ----------------------------- */

.article-card {
  width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.article-card--right {
  align-items: flex-end;
}

.article-content {
  display: flex;
  gap: var(--space-4xl);
  align-items: flex-start;
  width: 100%;
}

.article-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--color-white);
}

.article-card--right .article-text {
  text-align: right;
}

.article-title {
  font-family: var(--font-heading);
  color: var(--color-white);
}

.article-description {
  font-family: var(--font-body);
  font-size: var(--text-p1);
  color: var(--color-white-66);
  letter-spacing: 0.01em;
}

.article-thumbnail {
  width: 120px;
  height: 160px;
  border: 2px solid var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  object-fit: cover;
  background: var(--color-gray-light);
  transition: width var(--transition-fast), height var(--transition-fast);
}

/* Card hover effects */
.article-card:hover .btn {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.95);
}

/* -----------------------------
   4.5 CARDS - Recent Article Cards
   List-style cards for article sections

   Structure:
   <a class="recent-article-card">
     <img class="recent-article-image" src="...">
     <div class="recent-article-content">
       <p class="recent-article-date">...</p>
       <h3 class="recent-article-title">...</h3>
       <p class="recent-article-excerpt">...</p>
     </div>
   </a>
   ----------------------------- */

.recent-article-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--color-gray-light);
  margin-bottom: var(--space-sm);
  text-decoration: none;
  color: inherit;
  background: var(--color-white);
  transition: border-color var(--transition-fast),
              background-color var(--transition-fast),
              transform var(--transition-fast);
}

.recent-article-card:hover {
  border-color: var(--color-navy);
  transform: translateX(4px);
}

.recent-article-card:last-child {
  margin-bottom: 0;
}

.recent-article-image {
  width: 150px;
  height: 113px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-gray-f5);
}

.recent-article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-article-date {
  font-family: var(--font-label);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.recent-article-title {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: var(--weight-normal);
  line-height: var(--leading-snug);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  color: var(--color-navy);
  transition: color var(--transition-fast);
}

.recent-article-excerpt {
  font-family: var(--font-body);
  font-size: var(--text-label);
  color: var(--color-gray);
  line-height: 1.5;
}

/* -----------------------------
   4.6 CARDS - Game Cards
   Next game display cards

   Structure:
   <div class="next-game">
     <p class="next-game-label">Next Boys Game</p>
     <div class="next-game-content">
       <div class="game-opponent">
         <div class="opponent-logo">...</div>
         <div class="opponent-info">
           <h3 class="opponent-name">...</h3>
           <p class="opponent-venue">...</p>
         </div>
       </div>
       <div class="game-details">
         <p class="game-time">...</p>
         <div class="game-date-row">
           <p class="game-date">...</p>
           <span class="game-badge">Away</span>
         </div>
       </div>
     </div>
   </div>
   ----------------------------- */

.next-game {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--color-white);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
}

.next-game-label {
  font-family: var(--font-label);
  font-size: var(--text-button);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-navy-half);
}

.next-game-content {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  align-items: center;
}

.game-opponent {
  display: contents;
}

.opponent-logo {
  grid-row: span 2;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
}

.opponent-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.opponent-logo--placeholder {
  background: var(--color-gray-light);
  border-radius: 50%;
}

.opponent-info {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.opponent-name {
  color: var(--color-navy);
}

.opponent-venue {
  font-size: var(--text-p1);
  color: var(--color-black);
  letter-spacing: var(--tracking-normal);
}

.game-details {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: flex-end;
}

.game-time {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-normal);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--color-navy);
}

.game-date-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.game-date {
  font-size: var(--text-p1);
  color: var(--color-black);
  letter-spacing: var(--tracking-normal);
}

.game-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: var(--color-gray-light);
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-black);
}

/* -----------------------------
   4.7 CARDS - Stat Cards
   Stats display items

   Structure:
   <div class="stat-item">
     <p class="stat-value">183-107-2</p>
     <p class="stat-label">All-Time Record</p>
   </div>
   ----------------------------- */

.stat-item {
  flex: 1;
  text-align: center;
  color: var(--color-white);
  border-right: 1px solid var(--color-white-30);
  padding: 0 20px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-normal);
  line-height: var(--leading-tight);
  white-space: nowrap;
}

.stat-label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  opacity: 0.7;
  margin-top: 8px;
}

/* -----------------------------
   4.8 CARDS - Scorer Cards
   Player stat cards (2025 page style)

   Structure:
   <div class="scorer-card">
     <div class="scorer-name">Player Name <span class="scorer-number">#0</span></div>
     <div class="scorer-position">Position</div>
     <div class="scorer-stats">
       <div><span class="scorer-stat-value">99</span><span class="scorer-stat-label">Goals</span></div>
       ...
     </div>
   </div>
   ----------------------------- */

.scorer-card {
  border: 1px solid var(--color-black);
  padding: var(--space-xl);
}

.scorer-name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--color-navy);
  line-height: var(--leading-tight);
  margin-bottom: 4px;
}

.scorer-number {
  float: right;
  opacity: 0.5;
}

.scorer-badge {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  float: right;
}

.scorer-position {
  font-family: var(--font-label);
  font-size: var(--text-p3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.scorer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  text-align: center;
  border-top: 1px solid var(--color-gray-light);
  padding-top: var(--space-md);
}

.scorer-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-navy);
  line-height: var(--leading-tight);
}

.scorer-stat-label {
  font-family: var(--font-label);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-top: 4px;
}

/* -----------------------------
   4.9 CARDS - Player Spotlight Cards
   Horizontal layout with image and narrative text

   Structure:
   <div class="player-card">
     <img class="player-card-image" src="..." alt="Player Name">
     <div class="player-card-content">
       <div class="player-card-name">Player Name</div>
       <div class="player-card-position">Position / Year</div>
       <p class="player-card-story">Narrative text about the player...</p>
     </div>
   </div>

   Example: Parker O'Hara spotlight card with photo and season story.
   ----------------------------- */

.player-card {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-gray-f5);
  border-left: 4px solid var(--color-navy);
}

.player-card-image {
  width: 120px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.player-card-content {
  flex: 1;
}

.player-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-navy);
  line-height: var(--leading-tight);
  margin-bottom: 4px;
}

.player-card-position {
  font-family: var(--font-label);
  font-size: var(--text-p3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-bottom: var(--space-sm);
}

.player-card-story {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  line-height: var(--leading-relaxed);
  color: var(--color-black);
}

/* Grid layout for multiple player cards */
.player-stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

@media (max-width: 900px) {
  .player-stories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .player-card {
    flex-direction: column;
  }

  .player-card-image {
    width: 100%;
    height: 200px;
  }
}

/* -----------------------------
   4.10 CARDS - Timeline Event Cards
   Vertical layout for article/event timeline

   Structure:
   <a class="timeline-article" href="#">
     <img class="timeline-article-image" src="..." alt="...">
     <div class="timeline-article-content">
       <div class="timeline-article-date">February 19, 2025</div>
       <div class="timeline-article-title">Victory vs Mustangs</div>
       <div class="timeline-article-excerpt">Brief description...</div>
     </div>
   </a>

   Example: Game recap cards in a timeline grid.
   ----------------------------- */

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.timeline-article {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.timeline-article:hover {
  border-color: var(--color-navy);
  box-shadow: 0 8px 24px rgba(0, 32, 92, 0.1);
  transform: translateY(-4px);
}

.timeline-article-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: var(--color-gray-f5);
}

.timeline-article-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.timeline-article-date {
  font-family: var(--font-label);
  font-size: var(--text-p3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.timeline-article-title {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: var(--weight-normal);
  line-height: var(--leading-snug);
  letter-spacing: 0.02em;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.timeline-article-excerpt {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  color: var(--color-gray);
  line-height: 1.5;
  flex: 1;
}

/* Featured timeline article - spans 2 columns, horizontal layout */
.timeline-article.featured {
  grid-column: span 2;
  flex-direction: row;
}

.timeline-article.featured .timeline-article-image {
  width: 50%;
  aspect-ratio: auto;
  height: 100%;
  min-height: 400px;
}

.timeline-article.featured .timeline-article-content {
  padding: var(--space-2xl);
  justify-content: center;
}

.timeline-article.featured .timeline-article-title {
  font-size: 28px;
}

.timeline-article.featured .timeline-article-excerpt {
  font-size: 15px;
}

/* Hero featured - spans full width with navy accent border */
.timeline-article.hero-featured {
  grid-column: span 3;
  flex-direction: row;
  border: 2px solid var(--color-navy);
  background: rgba(0, 32, 92, 0.02);
}

.timeline-article.hero-featured .timeline-article-image {
  width: 40%;
}

.timeline-article.hero-featured .timeline-article-title {
  font-size: 32px;
}

@media (max-width: 900px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-article.featured,
  .timeline-article.hero-featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .timeline-article.featured .timeline-article-image,
  .timeline-article.hero-featured .timeline-article-image {
    width: 100%;
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .timeline-article.featured,
  .timeline-article.hero-featured {
    grid-column: span 1;
  }
}

/* -----------------------------
   4.11 CARDS - Feature Photo Cards
   Large horizontal cards with image left, text right on navy bg

   Structure:
   <div class="feature-photo">
     <img class="feature-photo-image" src="..." alt="...">
     <div class="feature-photo-content">
       <span class="feature-photo-label">Label Text</span>
       <h3 class="feature-photo-title">Feature Title</h3>
       <p class="feature-photo-description">Description text...</p>
     </div>
   </div>

   Reverse layout:
   <div class="feature-photo feature-photo--reverse">...</div>

   Example: "First Home Win of Season" highlight card.
   ----------------------------- */

.feature-photo {
  display: flex;
  background: var(--color-navy);
  overflow: hidden;
}

.feature-photo-image {
  width: 50%;
  object-fit: cover;
  object-position: center;
}

.feature-photo-content {
  width: 50%;
  padding: var(--space-4xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
}

.feature-photo-label {
  font-family: var(--font-label);
  font-size: var(--text-p3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c9a227; /* Gold accent */
  margin-bottom: var(--space-sm);
}

.feature-photo-title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-normal);
  line-height: var(--leading-tight);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
}

.feature-photo-description {
  font-family: var(--font-body);
  font-size: var(--text-p1);
  line-height: var(--leading-normal);
  color: rgba(255, 255, 255, 0.9);
}

/* Reverse layout - image on right */
.feature-photo--reverse {
  flex-direction: row-reverse;
}

.feature-photo--reverse .feature-photo-content {
  text-align: right;
}

/* Alternative light theme variant */
.feature-photo--light {
  background: var(--color-gray-f5);
}

.feature-photo--light .feature-photo-content {
  color: var(--color-black);
}

.feature-photo--light .feature-photo-label {
  color: var(--color-navy);
}

.feature-photo--light .feature-photo-title {
  color: var(--color-navy);
}

.feature-photo--light .feature-photo-description {
  color: var(--color-black);
  opacity: 0.8;
}

@media (max-width: 900px) {
  .feature-photo,
  .feature-photo--reverse {
    flex-direction: column;
  }

  .feature-photo-image {
    width: 100%;
    height: 300px;
  }

  .feature-photo-content {
    width: 100%;
    padding: var(--space-2xl);
  }

  .feature-photo--reverse .feature-photo-content {
    text-align: left;
  }

  .feature-photo-title {
    font-size: var(--text-display-md);
  }
}

/* -----------------------------
   4.13 FOOTER
   Site footer with logo and links

   Structure:
   <footer class="footer">
     <div class="footer-content">
       <div class="footer-logo-wrapper">
         <img class="footer-logo" src="..." alt="...">
       </div>
       <div class="footer-links">
         <a class="footer-link" href="#">Link</a>
       </div>
       <div class="footer-credit">Copyright text</div>
     </div>
   </footer>
   ----------------------------- */

.footer {
  padding: var(--space-4xl) 0;
  background: var(--color-navy);
  color: var(--color-white);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 96px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: flex-end;
}

.footer-link {
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white-66);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-link.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.footer-credit {
  grid-column: 1 / -1;
  font-family: var(--font-label);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Navigation Container */
.footer-nav {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-lg);
}

/* Site Links Row */
.footer-site-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-xl);
  justify-content: flex-end;
}

/* Season Dropdowns Row */
.footer-seasons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xl);
  justify-content: flex-end;
}

.footer-seasons-label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white-66);
}

.footer-season-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.footer-season-label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white-66);
  pointer-events: none;
  transition: color var(--transition-fast);
}

.footer-season-dropdown:hover .footer-season-label {
  color: var(--color-white);
}

.footer-season-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.footer-chevron {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--color-white-66);
  pointer-events: none;
  transition: border-color var(--transition-fast);
}

.footer-season-dropdown:hover .footer-chevron {
  border-top-color: var(--color-white);
}

/* External Links Row */
.footer-external-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-xl);
  justify-content: flex-end;
}

/* Footer Responsive - Tablet */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-nav {
    grid-column: 1;
    align-items: center;
  }

  .footer-seasons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-external-links {
    justify-content: center;
  }
}

/* Footer Responsive - Mobile */
@media (max-width: 480px) {
  .footer {
    padding: var(--space-2xl) 0;
  }

  .footer-content {
    padding: 0 var(--container-padding-mobile);
    gap: var(--space-xl);
  }

  .footer-logo {
    height: 72px;
  }

  .footer-seasons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
    justify-content: center;
  }

  .footer-seasons-label {
    margin-bottom: var(--space-xs);
  }

  .footer-external-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
    justify-content: center;
  }

  .footer-link {
    font-size: 13px;
  }
}

/* ===========================================
   SITE HEADER
   Logo centered, team dropdown left, page/year dropdown right
   Shared component for inner pages and season pages
   =========================================== */

.header-site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
  transition: box-shadow 0.2s;
}

.header-site.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-site .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
}

.header-nav-left {
  justify-self: start;
}

.header-logo-wrapper {
  justify-self: center;
  text-decoration: none;
}

.header-site .header-logo {
  height: 64px;
}

.header-nav-right {
  justify-self: end;
}

/* Minimal dropdown styling */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown-label {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.nav-dropdown-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
}

.nav-dropdown:focus-within .nav-dropdown-label {
  outline: 2px solid var(--color-navy);
  outline-offset: 4px;
}

.nav-dropdown-chevron {
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-navy);
  pointer-events: none;
}

@media (max-width: 600px) {
  .header-site .header-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .header-logo-wrapper {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .header-nav-left {
    grid-column: 1;
    grid-row: 2;
  }

  .header-nav-right {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  .header-site .header-logo {
    height: 56px;
  }

  .nav-dropdown-label {
    font-size: var(--text-h4);
  }
}

/* ===========================================
   5. SECTION PATTERNS
   Common section layouts and containers
   =========================================== */

/* Container - Max width wrapper */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Narrow container for content sections */
.container-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Section with border bottom */
.section-bordered {
  padding: 64px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Section header with title and badge */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-black);
}

/* Season badge */
.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
}

/* ===========================================
   6. HOVER & INTERACTION STATES
   Documented interaction patterns
   =========================================== */

/* Standard link hover - fade to 70% opacity */
.hover-fade:hover {
  opacity: 0.7;
}

/* Card hover - translate right with border color change */
.hover-slide:hover {
  transform: translateX(4px);
  border-color: var(--color-navy);
}

/* Image parallax on hover - used on hero panels and CTA sections */
.hover-parallax {
  overflow: hidden;
}

.hover-parallax img {
  height: calc(100% + 24px);
  transition: transform var(--transition-slow);
}

.hover-parallax:hover img {
  transform: translateY(-24px);
}

/* Text lift on hover - accompanying parallax effect */
.hover-lift {
  transition: transform var(--transition-slow);
}

.hover-parallax:hover .hover-lift {
  transform: translateY(-8px);
}

/* ===========================================
   8. RESPONSIVE TOKENS
   Adjusted values for mobile breakpoints
   =========================================== */

@media (max-width: 960px) {
  :root {
    --text-h1: 36px;
    --text-h2: 28px;
    --text-h3: 22px;
    --text-h4: 22px;
    --text-display-xl: 48px;
    --text-display-lg: 32px;
    --text-display-md: 28px;
    --container-padding: var(--container-padding-mobile);
  }
}

/* ===========================================
   9. TIMELINE CLASSIC (v7A Style)
   Full-width cards attached to vertical timeline with day markers
   Use for season story chapters with specific dates

   Structure:
   <div class="timeline-classic">
     <div class="timeline-day">
       <div class="timeline-day-label">
         <span class="timeline-day-date">Feb 19</span>
         <span class="timeline-day-name">Wednesday</span>
       </div>
       <div class="timeline-day-cards">
         <a class="timeline-classic-card" href="#">
           <img class="timeline-classic-image" src="..." alt="...">
           <div class="timeline-classic-content">
             <div class="timeline-classic-title">Card Title</div>
             <div class="timeline-classic-excerpt">Description text...</div>
           </div>
         </a>
       </div>
     </div>
   </div>
   =========================================== */

.timeline-classic {
  position: relative;
  margin: 40px 0;
}

/* Vertical timeline line */
.timeline-classic::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gray-light);
}

.timeline-day {
  display: grid;
  grid-template-columns: 120px 50px 1fr;
  align-items: start;
  margin-bottom: 32px;
  position: relative;
}

.timeline-day:last-child {
  margin-bottom: 0;
}

.timeline-day-label {
  grid-column: 1;
  text-align: right;
  padding-right: 24px;
  padding-top: 6px;
}

.timeline-day-name {
  font-family: var(--font-label);
  font-size: var(--text-p2);
  color: var(--color-gray);
  display: block;
  line-height: 1.4;
  margin-bottom: 2px;
}

.timeline-day-date {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  letter-spacing: 0.02em;
  color: var(--color-navy);
  display: block;
}

/* Timeline dot marker - centered on the vertical line */
.timeline-day::before {
  content: "";
  position: absolute;
  left: 115px;  /* Centered on 120px line: 121px center - 6px half-width */
  top: 8px;     /* Vertically centered with 24px date text */
  width: 12px;
  height: 12px;
  background: var(--color-navy);
  border-radius: 50%;
  z-index: 1;
}

.timeline-day-cards {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Full-width horizontal cards attached to timeline */
.timeline-classic-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}

.timeline-classic-card:hover {
  border-color: var(--color-navy);
  background-color: rgba(0, 32, 92, 0.02);
  transform: translateX(4px);
}

.timeline-classic-image-wrapper {
  position: relative;
  width: 180px;
  height: 135px;
  flex-shrink: 0;
}

.timeline-classic-image {
  width: 180px;
  height: 135px;
  object-fit: cover;
  object-position: center top;
  background: var(--color-gray-f5);
}

.timeline-video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background 0.2s;
}

.timeline-video-indicator svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.timeline-classic-card:hover .timeline-video-indicator {
  background: var(--color-navy);
}


.timeline-classic-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-classic-title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-normal);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.timeline-classic-excerpt {
  font-family: var(--font-label);
  font-size: var(--text-p2);
  color: var(--color-black);
  line-height: 1.4;
}

/* Text-only card - no image, content fills full width */
.timeline-classic-card.text-only {
  grid-template-columns: 1fr;
}

/* Featured card - larger with navy border */
.timeline-classic-card.featured {
  border: 2px solid var(--color-navy);
  background: rgba(0, 32, 92, 0.03);
}

/* Gallery card - photo gallery badge on image */
.timeline-gallery-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: 11px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.timeline-gallery-badge svg {
  width: 12px;
  height: 12px;
}

.timeline-classic-card:hover .timeline-gallery-badge {
  background: var(--color-navy);
}

/* Responsive - Timeline Classic */
@media (max-width: 900px) {
  .timeline-classic::before {
    left: 20px;
  }

  .timeline-day {
    display: block;
  }

  .timeline-day-label {
    text-align: left;
    padding-left: 50px;
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 12px;
  }

  .timeline-day::before {
    left: 14px;
  }

  .timeline-day-cards {
    margin-left: 50px;
  }

  .timeline-classic-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-classic-image-wrapper {
    width: 100%;
    height: 200px;
  }

  .timeline-classic-image {
    width: 100%;
    height: 200px;
  }
}

/* ===========================================
   10. PLAYER GALLERY WITH HOVER (v7B2 Style)
   Portrait image grid with hidden overlay that reveals on hover
   Image scales slightly, overlay fades in with navy gradient

   Structure:
   <div class="player-gallery">
     <a class="player-gallery-item" href="#">
       <img src="..." alt="Player Name">
       <div class="player-gallery-overlay">
         <div class="player-gallery-name">Player Name</div>
         <div class="player-gallery-caption">Stats or description text...</div>
       </div>
     </a>
   </div>
   =========================================== */

.player-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

.player-gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-gray-f5);
  cursor: pointer;
  text-decoration: none;
}

.player-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.player-gallery-item:hover img {
  transform: scale(1.05);
}

.player-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 32, 92, 0.95) 0%,
    rgba(0, 32, 92, 0.7) 40%,
    rgba(0, 32, 92, 0.3) 70%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.player-gallery-item:hover .player-gallery-overlay {
  opacity: 1;
}

.player-gallery-name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.player-gallery-caption {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Responsive - Player Gallery */
@media (max-width: 1000px) {
  .player-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .player-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .player-gallery {
    grid-template-columns: 1fr;
  }

  .player-gallery-item {
    aspect-ratio: 4/3;
  }
}

/* ===========================================
   10B. SEASON PHOTO GALLERY
   CSS Grid gallery for action photos with masonry-like layout.
   Use .season-gallery-tall on 1-2 items for visual variety.

   Structure:
   <div class="season-gallery">
     <div class="season-gallery-item season-gallery-tall">
       <img src="..." alt="..." loading="lazy">
     </div>
     <div class="season-gallery-item">
       <img src="..." alt="..." loading="lazy">
     </div>
   </div>
   =========================================== */

.season-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  margin-top: 1.5rem;
}

.season-gallery-item {
  overflow: hidden;
  background: var(--gray-800, #1a1a2e);
  border-radius: 4px;
}

.season-gallery-item[data-article-id] {
  cursor: pointer;
}

.season-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.season-gallery-item[data-article-id]:hover img {
  transform: scale(1.03);
}

.season-gallery-tall {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .season-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .season-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .season-gallery-tall {
    grid-row: span 1;
  }
}

/* ===========================================
   10D. MULTI-GAME PHOTO GALLERY
   Dark-background gallery section with cinematic game cards
   and masonry photo grids. Game cards use cover images with
   text overlay. Expanded view uses CSS columns for natural
   aspect-ratio masonry layout.

   Key classes (required by gallery.js):
   .gallery-games-grid, .gallery-game-card, .gallery-game-expanded,
   .gallery-back-btn, [data-game-index]
   =========================================== */

/* --- Gallery Section (dark background, full-bleed) --- */
.gallery-section {
  padding: 0;
  border-bottom: none;
}

.gallery-section-inner {
  background: #0a0f1a;
  padding: 64px 0 72px;
}

.gallery-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* --- Gallery Header --- */
.gallery-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-header h2 {
  color: var(--color-white);
  margin: 0;
}

.gallery-attribution {
  font-family: var(--font-label);
  font-size: var(--text-label);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin: 0;
}

.gallery-caption {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-normal);
  margin: 0 0 24px;
  max-width: 640px;
}

/* --- Game Cards Grid --- */
.gallery-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* --- Game Card (cover image with overlay) --- */
.gallery-game-card {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: #111827;
}

.gallery-game-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              filter 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-game-card:hover .gallery-game-cover-img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* --- Card Overlay (gradient + text) --- */
.gallery-game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  background: linear-gradient(
    0deg,
    rgba(0, 10, 30, 0.85) 0%,
    rgba(0, 10, 30, 0.3) 50%,
    transparent 100%
  );
  transition: background 0.3s ease;
}

.gallery-game-card:hover .gallery-game-overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 10, 30, 0.75) 0%,
    rgba(0, 10, 30, 0.15) 50%,
    transparent 100%
  );
}

/* --- Photo Count Badge --- */
.gallery-photo-count {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-white);
  opacity: 0.6;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.gallery-game-card:hover .gallery-photo-count {
  opacity: 0.9;
}

/* --- Card Text --- */
.gallery-game-text {
  position: relative;
  z-index: 1;
}

.gallery-game-opponent {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, var(--text-h4));
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-white);
  line-height: 1.1;
  margin: 0 0 5px;
}

/* --- Location Tag (HOME / AWAY badge) --- */
.gallery-location-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -1px;
}

.gallery-location-home {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

.gallery-location-away {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-game-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-game-date {
  font-family: var(--font-label);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.gallery-game-score {
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

/* --- Google Drive Link (overlays top-left) --- */
.gallery-drive-link {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-label);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  z-index: 2;
}

.gallery-drive-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Expanded Game View --- */
.gallery-game-expanded {
  margin-top: 40px;
}

.gallery-game-expanded[hidden] {
  display: none;
}

/* --- Expanded Header --- */
.gallery-game-expanded-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px 8px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}

.gallery-back-btn:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.gallery-back-btn svg {
  flex-shrink: 0;
}

.gallery-game-expanded-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-game-expanded-title h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-white);
  line-height: 1;
  margin: 0;
}

.gallery-game-expanded-title .gallery-game-score {
  font-size: var(--text-p2);
  color: rgba(255, 255, 255, 0.7);
}

.gallery-game-expanded-title .gallery-game-date {
  font-size: var(--text-label);
  color: rgba(255, 255, 255, 0.35);
}

.gallery-game-credit {
  font-family: var(--font-label);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  margin-left: auto;
  letter-spacing: 0.04em;
}

.gallery-game-credit a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.gallery-game-credit a:hover {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.35);
}

/* --- Masonry Photo Grid (inside dark gallery section) --- */
.gallery-game-expanded .season-gallery,
.gallery-section .season-gallery {
  display: block;
  columns: 3;
  column-gap: 12px;
}

.gallery-game-expanded .season-gallery-item,
.gallery-section .season-gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #111827;
}

.gallery-game-expanded .season-gallery-item img,
.gallery-section .season-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-game-expanded .season-gallery-item:hover img,
.gallery-section .season-gallery-item:hover img {
  transform: scale(1.02);
  filter: brightness(1.08);
}

/* Override: no tall span in masonry mode */
.gallery-game-expanded .season-gallery-tall,
.gallery-section .season-gallery-tall {
  grid-row: unset;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .gallery-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-game-expanded .season-gallery,
  .gallery-section .season-gallery {
    columns: 2;
  }

  .gallery-game-opponent {
    font-size: var(--text-h4);
  }

  .gallery-location-tag {
    font-size: 8px;
    padding: 1px 5px;
    margin-left: 6px;
  }
}

@media (max-width: 600px) {
  .gallery-section-inner {
    padding: 48px 0 56px;
  }

  .gallery-section .container {
    padding: 0 var(--container-padding-mobile);
  }

  .gallery-header {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }

  .gallery-games-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-game-card {
    aspect-ratio: 16 / 9;
  }

  .gallery-game-overlay {
    padding: 12px 14px;
  }

  .gallery-game-opponent {
    font-size: var(--text-p1);
  }

  .gallery-photo-count {
    font-size: 18px;
    top: 8px;
    right: 10px;
  }

  .gallery-location-tag {
    font-size: 7px;
    padding: 1px 4px;
    margin-left: 4px;
  }

  .gallery-game-expanded-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gallery-game-expanded-title h3 {
    font-size: var(--text-h4);
  }

  .gallery-game-credit {
    margin-left: 0;
  }

  .gallery-game-expanded .season-gallery,
  .gallery-section .season-gallery {
    columns: 2;
    column-gap: 8px;
  }

  .gallery-game-expanded .season-gallery-item,
  .gallery-section .season-gallery-item {
    margin-bottom: 8px;
  }
}

/* ===========================================
   10E. HYBRID LIGHTBOX
   Combined article + gallery lightbox for timeline cards.
   Article mode: header nav + image stage + content panel.
   Gallery mode: header + image stage only (content hidden).
   Class namespace: .hybrid-lightbox

   Structure:
   <div class="hybrid-lightbox">
     <header class="hybrid-lightbox__header">
       <button class="hybrid-lightbox__nav-btn hybrid-lightbox__nav-btn--prev">...</button>
       <div class="hybrid-lightbox__header-right">
         <button class="hybrid-lightbox__nav-btn hybrid-lightbox__nav-btn--next">...</button>
         <button class="hybrid-lightbox__close">...</button>
       </div>
     </header>
     <div class="hybrid-lightbox__stage">
       <div class="hybrid-lightbox__image-wrap">
         <img class="hybrid-lightbox__image">
         <button class="hybrid-lightbox__carousel-btn hybrid-lightbox__carousel-btn--prev">...</button>
         <button class="hybrid-lightbox__carousel-btn hybrid-lightbox__carousel-btn--next">...</button>
       </div>
       <div class="hybrid-lightbox__counter">1 / 5</div>
     </div>
     <div class="hybrid-lightbox__content">...</div>
   </div>
   =========================================== */

/* --- Overlay --- */
.hybrid-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hybrid-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.hybrid-lightbox.is-open .hybrid-lightbox__stage {
  transform: scale(1);
}

/* --- Header bar --- */
.hybrid-lightbox__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--space-4xl);
  padding: 0 var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
}

.hybrid-lightbox__nav-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: none;
  border: none;
  color: var(--color-white-60);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: var(--tracking-normal);
  cursor: pointer;
  padding: var(--space-sm) var(--space-sm);
  min-height: 44px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.hybrid-lightbox__nav-btn:hover:not(:disabled) {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
}

.hybrid-lightbox__nav-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.hybrid-lightbox__nav-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.hybrid-lightbox__nav-title {
  display: inline;
}

.hybrid-lightbox__header-right {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* --- Close button --- */
.hybrid-lightbox__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}

.hybrid-lightbox__close:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.hybrid-lightbox__close svg {
  width: 22px;
  height: 22px;
}

/* --- Image stage --- */
.hybrid-lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
  transform: scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hybrid-lightbox__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hybrid-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hybrid-lightbox__image.is-loaded {
  opacity: 1;
}

/* --- Carousel arrows ---
   Circular buttons overlaid on the image stage.
   Visually distinct from header nav: filled circle + thicker stroke. */
.hybrid-lightbox__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  z-index: 2;
}

.hybrid-lightbox__carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hybrid-lightbox__carousel-btn--prev { left: var(--space-md); }
.hybrid-lightbox__carousel-btn--next { right: var(--space-md); }

.hybrid-lightbox__carousel-btn svg {
  width: 20px;
  height: 20px;
}

.hybrid-lightbox__carousel-btn[hidden] { display: none; }

/* --- Counter pill --- */
.hybrid-lightbox__counter {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  padding: 5px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

/* --- Content panel (article mode) ---
   Uses border-box so padding is inside the max-height constraint.
   Scroll fade via ::after pseudo-element hints at overflow. */
.hybrid-lightbox__content {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hybrid-lightbox__content-text {
  flex: 1;
  min-width: 0;
}

.hybrid-lightbox__content-action {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

/* Hide content panel in gallery mode */
.hybrid-lightbox--gallery .hybrid-lightbox__content {
  display: none;
}

/* Gallery mode: minimize header to reclaim image space */
.hybrid-lightbox--gallery .hybrid-lightbox__header {
  height: 40px;
}

.hybrid-lightbox--gallery .hybrid-lightbox__nav-btn {
  display: none;
}

/* --- Content panel typography --- */
.hybrid-lightbox__date {
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.hybrid-lightbox__title {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: var(--tracking-tight);
  color: var(--color-white);
  line-height: var(--leading-tight);
  margin-bottom: 10px;
}

.hybrid-lightbox__summary {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  line-height: var(--leading-normal);
  color: var(--color-white-60);
  margin-bottom: var(--space-md);
  max-width: 1080px;
}

.hybrid-lightbox__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-navy);
  padding: 10px var(--space-lg);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.hybrid-lightbox__cta:hover {
  background: #002d80;
  transform: translateY(-1px);
}

.hybrid-lightbox__source {
  font-family: var(--font-label);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-sm);
}

/* --- Focus visible --- */
.hybrid-lightbox *:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* --- Responsive: mobile (≤600px) --- */
@media (max-width: 600px) {
  .hybrid-lightbox__header {
    height: 44px;
    padding: 0 var(--space-xs);
  }

  .hybrid-lightbox__nav-title {
    display: none;
  }

  .hybrid-lightbox__nav-btn {
    font-size: var(--text-label);
    padding: var(--space-sm) var(--space-xs);
    min-height: 44px;
    max-width: none;
  }

  /* Carousel buttons stay at 44px — no shrink on mobile */

  .hybrid-lightbox__carousel-btn--prev { left: 8px; }
  .hybrid-lightbox__carousel-btn--next { right: 8px; }

  .hybrid-lightbox__content {
    padding: var(--space-md);
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hybrid-lightbox__content-action {
    align-self: flex-end;
  }

  .hybrid-lightbox__title {
    font-size: 22px;
  }

  .hybrid-lightbox__date {
    font-size: var(--text-label);
  }

  .hybrid-lightbox__source {
    font-size: var(--text-label);
  }

  .hybrid-lightbox__summary {
    font-size: 15px;
  }

  .hybrid-lightbox__cta {
    padding: 14px var(--space-lg);
  }
}

/* --- Responsive: tablet (601–960px) --- */
@media (min-width: 601px) and (max-width: 960px) {
  .hybrid-lightbox__content {
    padding: var(--space-md) var(--space-lg);
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hybrid-lightbox,
  .hybrid-lightbox__stage,
  .hybrid-lightbox__image,
  .hybrid-lightbox__carousel-btn,
  .hybrid-lightbox__nav-btn,
  .hybrid-lightbox__close,
  .hybrid-lightbox__cta {
    transition-duration: 0.01ms !important;
  }

  .hybrid-lightbox__stage {
    transform: none;
  }

  .hybrid-lightbox.is-open .hybrid-lightbox__stage {
    transform: none;
  }
}

/* ===========================================
   10C. SENTINEL ARTICLE CARD
   Text-forward card for Santa Cruz Sentinel articles.
   Used on older season pages (2008-2019) that don't have timelines.
   Reuses .season-gallery for image grids when photos are available.

   Structure:
   <div class="sentinel-card">
     <div class="sentinel-card-meta">
       <span class="sentinel-card-source">Santa Cruz Sentinel</span>
       <span class="sentinel-card-date">July 20, 2019</span>
     </div>
     <h3 class="sentinel-card-title"><a href="...">Title</a></h3>
     <p class="sentinel-card-summary">Summary text.</p>
     <div class="season-gallery">...</div>
   </div>
   =========================================== */

.sentinel-card {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-gray-light);
}

.sentinel-card:last-child {
  border-bottom: none;
}

.sentinel-card-meta {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--text-label);
  color: var(--color-gray);
  margin-bottom: var(--space-xs);
}

.sentinel-card-source {
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.sentinel-card-title {
  margin: 0 0 var(--space-sm);
}

.sentinel-card-title a {
  color: var(--color-navy);
  text-decoration: none;
}

.sentinel-card-title a:hover {
  text-decoration: underline;
}

.sentinel-card-summary {
  margin: 0 0 var(--space-md);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
}

.sentinel-card .season-gallery {
  margin-top: var(--space-md);
}

/* ===========================================
   11. PLAYER SPOTLIGHT WITH HOVER (v7B2 Style)
   Alternative to player-card: text hidden by default, reveals on hover
   Used for featured player sections with photo and narrative

   RULE: Spotlight cards must come in sets of 3.
   The grid is designed for 3 columns and looks best with exactly 3 cards.

   Structure:
   <div class="spotlight-grid">
     <div class="spotlight-card">
       <img class="spotlight-image" src="..." alt="Player Name">
       <div class="spotlight-overlay">
         <h4 class="spotlight-name">Player Name</h4>
         <p class="spotlight-position">Position / SR</p>
         <p class="spotlight-description">Narrative text about the player...</p>
         <div class="spotlight-stats">
           <div class="spotlight-stat">
             <span class="spotlight-stat-value">99</span>
             <span class="spotlight-stat-label">Goals</span>
           </div>
         </div>
       </div>
     </div>
     <!-- Repeat for exactly 3 cards -->
   </div>
   =========================================== */

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.spotlight-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-gray-f5);
}

.spotlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-image {
  transform: scale(1.08);
}

.spotlight-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 32, 92, 0.95) 0%,
    rgba(0, 32, 92, 0.8) 60%,
    transparent 100%
  );
  padding: 40px 20px 20px;
  color: var(--color-white);
  transition: background 0.4s ease;
}

.spotlight-card:hover .spotlight-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 32, 92, 0.98) 0%,
    rgba(0, 32, 92, 0.9) 50%,
    rgba(0, 32, 92, 0.6) 80%,
    transparent 100%
  );
}

.spotlight-name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  line-height: 1;
  margin-bottom: 4px;
}

.spotlight-position {
  font-family: var(--font-label);
  font-size: var(--text-p3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.spotlight-description {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, margin 0.4s ease;
  margin-top: 0;
}

.spotlight-card:hover .spotlight-description {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

/* Stats row within spotlight */
.spotlight-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.15s, margin 0.4s ease, padding 0.4s ease;
}

.spotlight-card:hover .spotlight-stats {
  max-height: 80px;
  opacity: 1;
  margin-top: 12px;
  padding-top: 12px;
}

.spotlight-stat {
  flex: 1;
  text-align: center;
}

.spotlight-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  line-height: 1;
}

.spotlight-stat-label {
  font-family: var(--font-label);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* Responsive - Spotlight Grid */
@media (max-width: 900px) {
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    aspect-ratio: 4/5;
  }

  /* Show content by default on mobile (no hover) */
  .spotlight-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 32, 92, 0.98) 0%,
      rgba(0, 32, 92, 0.9) 50%,
      rgba(0, 32, 92, 0.6) 80%,
      transparent 100%
    );
  }

  .spotlight-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
  }

  .spotlight-stats {
    max-height: 80px;
    opacity: 1;
    margin-top: 12px;
    padding-top: 12px;
  }
}

/* ===========================================
   SPOTLIGHT DUO
   Full-width brothers/duo spotlight card.
   Spans full grid width with shared narrative
   and individual headshot + stats for each player.
   =========================================== */

.spotlight-duo {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-navy);
  overflow: hidden;
  min-height: 420px;
}

.spotlight-duo-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.spotlight-duo-content {
  padding: 40px 40px 32px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-duo-label {
  font-family: var(--font-label);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.spotlight-duo-headline {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  line-height: 1;
  margin-bottom: 4px;
}

.spotlight-duo-position {
  font-family: var(--font-label);
  font-size: var(--text-p3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.spotlight-duo-description {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.spotlight-duo-players {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.spotlight-duo-player {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.spotlight-duo-headshot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.spotlight-duo-player-name {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  line-height: 1;
  margin-bottom: 2px;
}

.spotlight-duo-player-after {
  font-family: var(--font-label);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.spotlight-duo-player-stats {
  font-family: var(--font-label);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* Responsive - Spotlight Duo */
@media (max-width: 900px) {
  .spotlight-duo {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .spotlight-duo-bg {
    aspect-ratio: 4/3;
  }

  .spotlight-duo-content {
    padding: 32px 24px 28px;
  }
}

@media (max-width: 480px) {
  .spotlight-duo-players {
    flex-direction: column;
    gap: 16px;
  }

  .spotlight-duo-content {
    padding: 24px 20px 24px;
  }

  .spotlight-duo-headline {
    font-size: var(--text-h4);
  }
}

/* --- Spotlight Feature (full-width player feature, matches goalie-feature style) --- */

.spotlight-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  overflow: hidden;
}

.spotlight-feature-image-wrapper {
  position: relative;
  overflow: hidden;
}

.spotlight-feature-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
}

.spotlight-feature-content {
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-feature-label {
  font-family: var(--font-label);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.spotlight-feature-name {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1;
}

.spotlight-feature-number {
  opacity: 0.5;
  font-size: var(--text-h4);
}

.spotlight-feature-badge {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}

.spotlight-feature-narrative {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.spotlight-feature-stats {
  display: flex;
  gap: 24px;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 20px;
}

.spotlight-feature-stat {
  text-align: center;
  flex: 1;
}

.spotlight-feature-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--color-navy);
  line-height: 1;
}

.spotlight-feature-stat-label {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-top: 4px;
}

.spotlight-feature-stats-section {
  background: var(--color-gray-f5);
  padding: 16px 40px;
  margin: 20px -40px;
}

.spotlight-feature-stats-section .spotlight-feature-stats {
  margin-bottom: 0;
}

.spotlight-feature-stats-heading {
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-navy);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-gray-light);
}

.spotlight-feature-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.spotlight-feature-achievement {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
}

/* --- Spotlight Player Card Thumbnail --- */

.spotlight-feature-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 4px;
}

.spotlight-feature-header-text {
  flex: 1;
  min-width: 0;
}

.spotlight-playercard {
  flex-shrink: 0;
  text-align: center;
}

.spotlight-playercard-frame {
  position: relative;
  width: 82px;
  height: 106px;
  border: 2px solid var(--color-navy);
  outline: 1px solid var(--color-navy);
  outline-offset: 3px;
  overflow: hidden;
}

.spotlight-playercard-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 15%;
  display: block;
}


/* Responsive - Spotlight Feature */
@media (max-width: 900px) {
  .spotlight-feature {
    grid-template-columns: 1fr;
  }

  .spotlight-feature-image {
    min-height: 300px;
  }

  .spotlight-feature-content {
    padding: 32px 24px;
  }

  .spotlight-feature-stats-section {
    padding: 16px 24px;
    margin: 20px -24px;
  }
}

@media (max-width: 480px) {
  .spotlight-playercard-frame {
    width: 66px;
    height: 86px;
  }

  .spotlight-feature-stats-section {
    padding: 14px 24px;
    margin: 16px -24px;
  }

  .spotlight-feature-header {
    gap: 14px;
  }

  .spotlight-feature-name {
    font-size: var(--text-h4);
  }

  .spotlight-feature-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .spotlight-feature-narrative {
    font-size: var(--text-p3);
  }
}

/* --- Spotlight Feature Inline Gallery --- */

.spotlight-feature-gallery {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.spotlight-feature-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.spotlight-feature-gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  height: 100%;
}

.spotlight-feature-gallery-slide img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.spotlight-feature-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: var(--text-p3);
  line-height: 1.4;
  padding: 10px 16px;
  pointer-events: none;
}

.spotlight-feature-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  z-index: 10;
}

.spotlight-feature-gallery-nav:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.8);
}

.spotlight-feature-gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.spotlight-feature-gallery-nav svg {
  width: 24px;
  height: 24px;
}

.spotlight-feature-gallery-prev {
  left: 12px;
}

.spotlight-feature-gallery-next {
  right: 12px;
}

.spotlight-feature-gallery-dots {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.spotlight-feature-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-white-60);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.spotlight-feature-gallery-dot:hover {
  background: var(--color-white);
}

.spotlight-feature-gallery-dot.active {
  background: var(--color-white);
  transform: scale(1.35);
}

/* Hide nav arrows when gallery has a single slide */
.spotlight-feature-gallery[data-count="1"] .spotlight-feature-gallery-nav,
.spotlight-feature-gallery[data-count="1"] .spotlight-feature-gallery-dots {
  display: none;
}

/* Responsive — Spotlight Feature Gallery */
@media (max-width: 900px) {
  .spotlight-feature-gallery-slide img {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .spotlight-feature-gallery-slide img {
    min-height: 240px;
  }

  .spotlight-feature-gallery-nav {
    width: 36px;
    height: 36px;
  }

  .spotlight-feature-gallery-nav svg {
    width: 20px;
    height: 20px;
  }

  .spotlight-feature-gallery-prev {
    left: 8px;
  }

  .spotlight-feature-gallery-next {
    right: 8px;
  }

  .spotlight-feature-gallery-dots {
    bottom: 40px;
  }

  .spotlight-feature-gallery-dot {
    width: 7px;
    height: 7px;
  }

  .spotlight-feature-gallery-caption {
    font-size: var(--text-small);
    padding: 8px 12px;
  }
}

/* ===========================================
   COACHING STAFF SPLIT SPOTLIGHT
   Full-width two-column coaching staff feature.
   Each panel: game-day photo with gradient overlay
   and coach name/role/caption.
   =========================================== */

.coaching-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--color-white);
  margin: 40px 0 12px;
}

.coaching-split-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
}

.coaching-split-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coaching-split-panel:hover .coaching-split-photo {
  transform: scale(1.04);
}

.coaching-split-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 28px;
  background: linear-gradient(
    to top,
    rgba(0, 16, 48, 0.94) 0%,
    rgba(0, 16, 48, 0.6) 50%,
    transparent 100%
  );
  color: var(--color-white);
}

.coaching-split-role {
  font-family: var(--font-label);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.coaching-split-name {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  line-height: 1;
  margin-bottom: 10px;
}

.coaching-split-caption {
  font-family: var(--font-body);
  font-size: var(--text-p3);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive - Coaching Split */
@media (max-width: 900px) {
  .coaching-split-panel {
    aspect-ratio: 4 / 5;
  }

  .coaching-split-overlay {
    padding: 28px 24px 24px;
  }

  .coaching-split-name {
    font-size: var(--text-h4);
  }
}

@media (max-width: 600px) {
  .coaching-split {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .coaching-split-panel {
    aspect-ratio: 4 / 5;
  }

  .coaching-split-caption {
    font-size: var(--text-small);
  }
}

/* ===========================================
   12. HEADER VARIANTS
   Extended header patterns for different page types
   =========================================== */

/* Header - Grid variant with dropdowns (season pages)
   Logo centered, team dropdown left, year dropdown right

   Structure:
   <header class="header header--grid header--sticky">
     <div class="container">
       <div class="header__inner">
         <div class="header__nav-left">...</div>
         <a class="header__logo-link"><img class="header__logo"></a>
         <div class="header__nav-right">...</div>
       </div>
     </div>
   </header>
   */
.header--grid {
  padding: 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.header--grid .header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
}

.header__nav-left {
  justify-self: start;
}

.header__logo-link {
  justify-self: center;
  text-decoration: none;
}

.header--grid .header__logo {
  height: 64px;
  width: auto;
}

.header__nav-right {
  justify-self: end;
}

/* Sticky header modifier */
.header--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  transition: box-shadow 0.2s;
}

.header--sticky.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Nav dropdown component */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown__label {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.nav-dropdown__select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
}

.nav-dropdown:focus-within .nav-dropdown__label {
  outline: 2px solid var(--color-navy);
  outline-offset: 4px;
}

.nav-dropdown__chevron {
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-navy);
  pointer-events: none;
}

@media (max-width: 600px) {
  .header--grid .header__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .header__logo-link {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .header__nav-left {
    grid-column: 1;
    grid-row: 2;
  }

  .header__nav-right {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  .header--grid .header__logo {
    height: 56px;
  }

  .nav-dropdown__label {
    font-size: var(--text-h4);
  }

}

/* ===========================================
   13. HERO VARIANTS
   Extended hero patterns for different page types
   =========================================== */

/* Hero - Full width with overlay (season pages)

   Structure:
   <section class="hero hero--full">
     <img class="hero__image" src="..." alt="...">
     <div class="hero__overlay">
       <div class="container">
         <p class="hero__tagline">...</p>
         <h1 class="hero__headline">...</h1>
         <p class="hero__subtitle">...</p>
         <p class="hero__caption">...</p>
       </div>
     </div>
   </section>
   */
.hero--full {
  position: relative;
  height: 80vh;
  min-height: 540px;
  max-height: 720px;
  overflow: hidden;
}

.hero--full .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 0 64px;
  background: linear-gradient(transparent 0%, rgba(0,32,92,0.6) 30%, rgba(0,32,92,0.95) 100%);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-p1);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  max-width: 640px;
  line-height: 1.8;
}

.hero__caption {
  font-family: var(--font-body);
  font-size: var(--text-p3);
  color: rgba(255,255,255,0.4);
  margin-top: 32px;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .hero__headline {
    font-size: var(--text-h2);
  }

  .hero__subtitle {
    font-size: var(--text-p2);
  }
}

/* ===========================================
   14. STATS BAR VARIANT
   Horizontal stats display with grid layout

   Structure:
   <section class="stats stats--bar">
     <div class="stats__grid">
       <div class="stats__item">
         <span class="stats__value">13-3</span>
         <span class="stats__label">Record</span>
       </div>
     </div>
   </section>
   =========================================== */

.stats--bar {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
}

.stats--bar .stats__item {
  background: var(--color-navy);
  padding: 24px 16px;
  text-align: center;
  border-right: none;
}

.stats__value {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
  display: block;
}

.stats__label {
  font-family: var(--font-label);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  display: block;
}

@media (max-width: 960px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__value {
    font-size: var(--text-h4);
  }
}

/* ===========================================
   15. CHAPTER STRUCTURE
   Narrative sections for season story pages

   Structure:
   <section class="chapter">
     <div class="container">
       <div class="chapter__header">
         <span class="chapter__timeframe">February 2025</span>
         <h2 class="chapter__title">The Rough Start</h2>
         <p class="chapter__narrative">Story text...</p>
       </div>
       <blockquote class="chapter__quote">
         Quote text...
         <cite class="chapter__quote-attribution">Attribution</cite>
       </blockquote>
     </div>
   </section>
   =========================================== */

.chapter {
  padding: 80px 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.chapter:last-of-type {
  border-bottom: none;
}

.chapter__header {
  margin-bottom: 48px;
}

.chapter__timeframe {
  font-family: var(--font-heading);
  font-size: var(--text-h6);
  letter-spacing: 0.2em;
  color: var(--color-gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  display: block;
}

.chapter__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 24px;
}

.chapter__narrative {
  font-family: var(--font-body);
  font-size: var(--text-p1);
  line-height: 1.8;
  color: var(--color-black);
  max-width: 720px;
}

.chapter__narrative strong {
  color: var(--color-navy);
  font-weight: 600;
}

.chapter__quote {
  font-family: var(--font-body);
  font-size: var(--text-h4);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-navy);
  padding: 32px 0 32px 32px;
  border-left: 4px solid var(--color-navy);
  margin: 40px 0;
  max-width: 640px;
}

.chapter__quote-attribution {
  font-family: var(--font-label);
  font-size: var(--text-p2);
  font-style: normal;
  color: var(--color-gray);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

/* Chapter on dark background */
.chapter--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.chapter--dark .chapter__timeframe {
  color: rgba(255,255,255,0.5);
}

.chapter--dark .chapter__title {
  color: var(--color-white);
}

.chapter--dark .chapter__narrative {
  color: rgba(255,255,255,0.85);
}

.chapter--dark .chapter__narrative strong {
  color: var(--color-white);
}

@media (max-width: 960px) {
  .chapter {
    padding: 60px 0;
  }

  .chapter__title {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .chapter {
    padding: 48px 0;
  }

  .chapter__header {
    margin-bottom: 32px;
  }

  .chapter__title {
    font-size: var(--text-h3);
  }

  .chapter__narrative {
    font-size: var(--text-p2);
  }

  .chapter__quote {
    font-size: var(--text-h5);
    padding-left: 20px;
  }
}

/* Chapter 3-up photo grid
   Inline narrative game gallery — links to lightbox modal via data-article-id.

   Usage:
   <div class="chapter-photo-grid">
     <figure>
       <a href="#" data-article-id="{shortcode}" data-slide="{0-based index}">
         <img src="..." alt="..." loading="lazy">
       </a>
     </figure>
     <figure>
       <a href="#" data-article-id="{shortcode}" data-slide="{0-based index}">
         <img src="..." alt="..." loading="lazy">
       </a>
       <figcaption>📸 @photographer · Game, Date</figcaption>
     </figure>
     <figure>
       <a href="#" data-article-id="{shortcode}" data-slide="{0-based index}">
         <img src="..." alt="..." loading="lazy">
       </a>
     </figure>
   </div>

   Notes:
   - Requires modal.js setupArticleLinks to wire click → openModal
   - data-slide is 0-based image index within the article carousel
   - figcaption goes on whichever figure holds the photo credit
   - object-position defaults to center top; add class="chapter-photo-center"
     for center-center cropping on close-up portraits
   =========================================== */

.chapter-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-2xl) 0;
}

.chapter-photo-grid figure {
  margin: 0;
}

.chapter-photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.chapter-photo-grid a img:hover {
  opacity: 0.88;
}

.chapter-photo-grid img.chapter-photo-center {
  object-position: center center;
}

.chapter-photo-grid figcaption {
  font-family: var(--font-body);
  font-size: var(--text-p3);
  color: var(--color-gray);
  margin-top: 8px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

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

/* ===========================================
   16. TABLE PATTERNS
   Shared table styles for standings, schedules, rosters
   =========================================== */

/* Base table */
.table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-label);
  font-size: var(--text-p2);
}

.table th {
  text-align: left;
  font-family: var(--font-label);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-black);
}

.table th.num,
.table td.num {
  text-align: right;
}

.table td {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-black);
}

/* Highlight row (current team, featured game) */
.table tr.highlight td {
  font-weight: 600;
  color: var(--color-navy);
}

/* Clickable rows */
.table tr.clickable {
  cursor: pointer;
  transition: background 0.15s;
}

.table tr.clickable:hover {
  background: var(--color-gray-f5);
}

/* Result indicators */
.table .result-w { color: var(--color-black); }
.table .result-l { color: var(--color-gray); }

/* Schedule table variant */
.table--schedule td {
  font-size: 12px;
}

.table--schedule tr.featured td {
  background: rgba(0, 32, 92, 0.05);
  font-weight: 500;
}

/* Roster table variant */
.table--roster {
  background: var(--color-white);
}

.table--roster th {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.table--roster th:hover {
  background: rgba(0, 32, 92, 0.9);
}

.table--roster th.sorted-asc::after {
  content: ' ▲';
  font-size: 9px;
}

.table--roster th.sorted-desc::after {
  content: ' ▼';
  font-size: 9px;
}

.table--roster td {
  font-family: var(--font-label);
  font-size: var(--text-p2);
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-gray-light);
}

.table--roster tbody tr:hover {
  background: var(--color-gray-f5);
}

.table--roster .col-number {
  width: 60px;
  text-align: center;
  font-weight: 600;
  color: var(--color-navy);
}

.table--roster .col-name {
  font-weight: 500;
}

.table--roster .col-position {
  color: var(--color-gray);
}

.table--roster .stat-highlight {
  font-weight: 600;
  color: var(--color-navy);
}

.table--roster .stat-leader {
  color: #c9a227;
  font-weight: 700;
}

@media (max-width: 600px) {
  .table--roster {
    font-size: 13px;
  }

  .table--roster th,
  .table--roster td {
    padding: 10px 8px;
  }
}

/* ===========================================
   17. AWARDS GRID
   Grid of award cards for recognition sections

   Structure:
   <div class="awards-grid">
     <div class="award-card award-card--featured">
       <h4 class="award-card__name">Player Name</h4>
       <p class="award-card__honor">Player of the Year</p>
     </div>
   </div>
   =========================================== */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.award-card {
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-left: 3px solid rgba(255,255,255,0.3);
}

.award-card--featured {
  background: rgba(255,255,255,0.12);
  border-left-color: var(--color-white);
}

.award-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: 400;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.award-card__honor {
  font-family: var(--font-body);
  font-size: var(--text-p2);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 960px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* 18. FLOATING NAVIGATION — styles in season.css (lines 913-994) */

/* ===========================================
   19. GOALIE FEATURE
   Full-width player feature card

   Structure:
   <div class="goalie-feature">
     <div class="goalie-feature__image-wrapper">
       <img class="goalie-feature__image" src="..." alt="...">
     </div>
     <div class="goalie-feature__content">
       <h3 class="goalie-feature__name">Name <span class="goalie-feature__number">#0</span></h3>
       <span class="goalie-feature__badge">Position</span>
       <p class="goalie-feature__narrative">...</p>
       <div class="goalie-feature__stats">
         <div class="goalie-feature__stat">
           <span class="goalie-feature__stat-value">.580</span>
           <span class="goalie-feature__stat-label">Save %</span>
         </div>
       </div>
       <span class="goalie-feature__award">First-Team All-League</span>
     </div>
   </div>
   =========================================== */

.goalie-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  overflow: hidden;
}

.goalie-feature__image-wrapper {
  position: relative;
  overflow: hidden;
}

.goalie-feature__image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
}

.goalie-feature__content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.goalie-feature__name {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1;
}

.goalie-feature__number {
  opacity: 0.5;
  font-size: var(--text-h4);
}

.goalie-feature__badge {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}

.goalie-feature__narrative {
  font-family: var(--font-body);
  font-size: var(--text-p1);
  line-height: 1.7;
  color: var(--color-black);
  margin-bottom: 24px;
}

.goalie-feature__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.goalie-feature__stat {
  text-align: center;
  padding: 20px 32px;
  background: var(--color-gray-f5);
}

.goalie-feature__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  color: var(--color-navy);
  line-height: 1;
  display: block;
}

.goalie-feature__stat-label {
  font-family: var(--font-label);
  font-size: var(--text-p3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-top: 6px;
  display: block;
}

.goalie-feature__award {
  display: inline-block;
  background: #c9a227;
  color: var(--color-navy);
  font-family: var(--font-label);
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  width: fit-content;
}

@media (max-width: 900px) {
  .goalie-feature {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .goalie-feature__image {
    min-height: 300px;
  }

  .goalie-feature__content {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .goalie-feature__content {
    padding: 24px;
  }

  .goalie-feature__name {
    font-size: var(--text-h4);
  }

  .goalie-feature__stat-value {
    font-size: var(--text-h3);
  }

  .goalie-feature__stats {
    flex-direction: column;
    gap: 12px;
  }

  .goalie-feature__stat {
    padding: 16px;
  }
}

/* ===========================================
   20. SEASON SECTION
   Section with header row containing title and badge

   Structure:
   <section class="season-section">
     <div class="container">
       <div class="season-section__header">
         <h2>Section Title</h2>
         <span class="season-badge">Badge Text</span>
       </div>
       <div class="season-section__grid">
         <div class="season-section__left">...</div>
         <div class="season-section__right">...</div>
       </div>
     </div>
   </section>
   =========================================== */

.season-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.season-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-black);
}

.season-section__header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-navy);
}

.season-section__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
}

.season-section__left h3,
.season-section__right h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  margin-bottom: 16px;
}

/* Stats summary within season section */
.stats-summary {
  margin-bottom: 32px;
}

.stats-summary__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stats-summary__item {
  padding: 20px;
  background: var(--color-gray-f5);
}

.stats-summary__value {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-navy);
  line-height: 1;
}

.stats-summary__label {
  font-family: var(--font-label);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .season-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .season-section {
    padding: 48px 0;
  }
}

/* ===========================================
   21. SCORERS SECTION
   Grid of scorer cards with optional header
   =========================================== */

.scorers-section {
  padding: 64px 0;
  background: var(--color-gray-f5);
}

.scorers-section__header {
  margin-bottom: 32px;
}

.scorers-section__header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-navy);
}

.scorers-section__subtitle {
  font-family: var(--font-label);
  font-size: var(--text-p3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray);
}

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

/* Scorer card on white background (within gray section) */
.scorers-section .scorer-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
}

.scorers-section .scorer-card.featured {
  border: 2px solid var(--color-navy);
}

/* Alt scorers section (white bg) */
.scorers-section--alt {
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-light);
}

.scorers-section--alt .scorer-card {
  background: var(--color-gray-f5);
}

@media (max-width: 960px) {
  .scorers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .scorers-section {
    padding: 48px 0;
  }

  .scorers-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   11. DONATE BANNER
   Fixed bottom banner for fundraising campaigns
   =========================================== */

.donate-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 60px;
  background: #c9a227;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.donate-banner--visible {
  transform: translateY(0);
}

.donate-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.donate-banner-left {
  flex-shrink: 0;
}

.donate-banner-deadline {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(0, 32, 92, 0.12);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

.donate-banner-center {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.donate-banner-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.donate-banner-close {
  background: none;
  border: none;
  color: rgba(0, 32, 92, 0.5);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.donate-banner-close:hover {
  color: var(--color-navy);
}

.donate-banner-headline {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--color-navy);
  line-height: 1;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.donate-banner-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.donate-banner-progress-track {
  width: 120px;
  height: 6px;
  background: rgba(0, 32, 92, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.donate-banner-progress-fill {
  width: 0;
  height: 100%;
  background: var(--color-navy);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.donate-banner-progress-fill--animate {
  /* width set inline by donate-banner.js */
}

.donate-banner-progress-label {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
}

.donate-banner-of {
  font-weight: 400;
  opacity: 0.6;
}

.donate-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: var(--tracking-wide);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.donate-banner-btn:hover {
  background: #001a4a;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .donate-banner-progress-track {
    width: 80px;
  }

  .donate-banner-headline {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .donate-banner {
    height: auto;
  }

  .donate-banner-inner {
    padding: 0 var(--container-padding-mobile);
    gap: 10px;
    min-height: 52px;
  }

  /* Fix: was .donate-banner-urgency which didn't match any HTML element */
  .donate-banner-left {
    display: none;
  }

  .donate-banner-center {
    overflow: hidden;
  }

  .donate-banner-headline {
    display: block;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .donate-banner-progress-track {
    width: 50px;
  }

  .donate-banner-progress-label {
    font-size: 11px;
  }

  .donate-banner-btn {
    padding: 7px 14px;
    font-size: 14px;
    flex-shrink: 0;
  }
}

@media (max-width: 420px) {
  .donate-banner-inner {
    flex-wrap: wrap;
    padding: 8px var(--container-padding-mobile);
    gap: 6px;
    align-items: center;
  }

  .donate-banner-center {
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 8px;
    overflow: hidden;
  }

  .donate-banner-progress {
    display: none;
  }

  .donate-banner-headline {
    font-size: 13px;
    white-space: nowrap;
    line-height: 1.2;
  }

  .donate-banner-right {
    flex: 1;
    justify-content: space-between;
  }

  .donate-banner-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
}

/* ===========================================
   11. SCORING SPOTLIGHT
   In-chapter stat callout: photo + live MaxPreps
   player data. Designed for the Big 3 scoring
   pace card in active season chapters.

   To update each game, edit the .ssp-* span
   text values and the data-games attribute on
   .scoring-spotlight. Projected season totals
   use formula: (G ÷ games) × 16, rounded.
   =========================================== */

.scoring-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 720px;
  margin: 28px 0 28px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.scoring-spotlight__photo {
  position: relative;
  aspect-ratio: 1 / 1;
}

.scoring-spotlight__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.scoring-spotlight__photo-credit {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.scoring-spotlight__data {
  background: var(--color-navy);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
}

.scoring-spotlight__eyebrow {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a84b;
  margin-bottom: 6px;
}

.scoring-spotlight__headline {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 4px;
}

.scoring-spotlight__subtitle {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.scoring-spotlight__col-headers {
  display: grid;
  grid-template-columns: 1fr 28px 28px 28px;
  gap: 0 4px;
  padding: 0 0 6px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.scoring-spotlight__col-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.scoring-spotlight__col-label:first-child {
  text-align: left;
}

.scoring-spotlight__player {
  display: grid;
  grid-template-columns: 1fr 28px 28px 28px;
  gap: 0 4px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.scoring-spotlight__player:last-of-type {
  border-bottom: none;
}

.scoring-spotlight__player-name {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--color-white);
  line-height: 1;
}

.scoring-spotlight__player-meta {
  font-family: var(--font-label);
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.scoring-spotlight__stat {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--color-white);
  text-align: center;
  line-height: 1;
}


.scoring-spotlight__footer {
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
}

.scoring-spotlight__source {
  font-family: var(--font-label);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scoring-spotlight__source a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.scoring-spotlight__source a:hover {
  color: rgba(255,255,255,0.7);
}

.scoring-spotlight__team-total {
  font-family: var(--font-label);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .scoring-spotlight {
    grid-template-columns: 1fr;
  }

  .scoring-spotlight__photo {
    min-height: 200px;
    max-height: 220px;
  }

  .scoring-spotlight__data {
    padding: 18px 16px 14px;
  }

  .scoring-spotlight__headline {
    font-size: 24px;
  }
}
