/* ============================================================
   G9 Sports Events — sports.css  v5.0
   ============================================================ */

:root {
  --sp-green:    #1a6b3c;
  --sp-green-dk: #0d3d22;
  --sp-dark:     #0d1f16;
  --sp-dark-alt: #0d2a1a;
  --sp-light:    #f4f8f5;
  --sp-white:    #ffffff;
  --sp-gold:     #c9a84c;
  --sp-text:     #1a2e22;
  --sp-muted:    #5a7060;
  --sp-radius:   12px;
  --sp-radius-sm:8px;
  --sp-shadow:   0 4px 20px rgba(0,0,0,0.12);
  --sp-shadow-lg:0 12px 48px rgba(0,0,0,0.22);
  --sp-accent:   #1a6b3c; /* overridden per sport */
}

*, *::before, *::after { box-sizing: border-box; }

.g9sp-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--sp-text);
  line-height: 1.6;
  margin: 0;
}

/* ── Container ── */
.sp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.sp-container--narrow {
  max-width: 760px;
}

/* ── Sections ── */
.sp-section { padding: 64px 0; }
.sp-section--white    { background: var(--sp-white); }
.sp-section--light    { background: var(--sp-light); }
.sp-section--dark     { background: var(--sp-dark); }
.sp-section--dark-alt { background: var(--sp-dark-alt); }
.sp-section--slim     { padding: 32px 0; }

.sp-section-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 32px;
  color: var(--sp-text);
}
.sp-section-title--light { color: var(--sp-white); }

/* ── Back link ── */
.sp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.sp-back-link:hover { color: #fff; }

/* ═══════════════════════════════════════════════
   HUB PAGE HERO
═══════════════════════════════════════════════ */
.sp-hub-hero {
  position: relative;
  background: linear-gradient(135deg, var(--sp-green-dk) 0%, var(--sp-green) 60%, #2a8a52 100%);
  color: #fff;
  padding: 80px 20px 72px;
  text-align: center;
  overflow: hidden;
}
.sp-hub-hero__inner { position: relative; z-index: 2; }
.sp-hub-hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 10px;
}
.sp-hub-hero__title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.sp-hub-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  max-width: 520px;
  margin: 0 auto;
}

/* Decorative pattern */
.sp-hub-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   OBA BANNER (hub)
═══════════════════════════════════════════════ */
.sp-oba-banner {
  background: linear-gradient(90deg, #1a1a0a, #3d3000, #1a1a0a);
  border-top: 3px solid var(--sp-gold);
  border-bottom: 3px solid var(--sp-gold);
  padding: 18px 0;
}
.sp-oba-banner__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}
.sp-oba-banner__inner:hover { opacity: 0.85; }
.sp-oba-banner__icon { font-size: 1.6rem; }
.sp-oba-banner__text {
  flex: 1;
  font-size: 0.95rem;
}
.sp-oba-banner__text strong {
  color: var(--sp-gold);
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 3px;
}
.sp-oba-banner__text span {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.sp-oba-banner__arrow {
  color: var(--sp-gold);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════
   NEXT TOURNAMENT SPOTLIGHT  (v3 — full redesign)
═══════════════════════════════════════════════ */
.sp-spotlight {
  position: relative;
  background: #152b1e;
  border-top: 3px solid var(--sp-gold);
  overflow: hidden;
  padding: 0;
}

/* Optional blurred photo background */
.sp-spotlight__photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(0.6);
  transform: scale(1.08);
  opacity: 0.22;
  pointer-events: none;
}

/* Dark gradient overlay — lighter so the section reads as forest-green, not black */
.sp-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(18,40,26,0.92) 0%,
    rgba(18,40,26,0.78) 50%,
    rgba(18,40,26,0.55) 100%
  );
  pointer-events: none;
}

/* Accent colour side-stripe */
.sp-spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  background: var(--sp-accent);
}

/* Grid layout: left text | right deco */
.sp-spotlight__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 52px;
}

/* ── Live / status badge ── */
.sp-spotlight__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.sp-spotlight__pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: sp-pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes sp-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(74,222,128,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0);   }
  100% { box-shadow: 0 0 0 0    rgba(74,222,128,0);   }
}

/* ── Sport label (small caps above title) ── */
.sp-spotlight__sport-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-accent);
  filter: brightness(1.6) saturate(0.8);
  margin: 0 0 10px;
}

/* ── Big title ── */
.sp-spotlight__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 640px;
}

/* ── Meta pills ── */
.sp-spotlight__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.sp-spotlight__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.sp-spotlight__pill svg { flex-shrink: 0; opacity: 0.65; }

/* ── Highlight note ── */
.sp-spotlight__note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  border-left: 3px solid var(--sp-accent);
  padding-left: 14px;
  margin: 0 0 20px;
  line-height: 1.6;
  max-width: 520px;
}

/* ── Defending champion ── */
.sp-spotlight__defending {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 28px;
}
.sp-spotlight__trophy-icon { color: var(--sp-gold); flex-shrink: 0; }
.sp-spotlight__defending strong { color: #fff; font-weight: 700; }

/* ── Action row ── */
.sp-spotlight__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sp-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0d1f16;
  padding: 13px 26px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.sp-spotlight__cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.sp-spotlight__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.sp-spotlight__cta-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ── Right: decorative icon panel ── */
.sp-spotlight__right {
  position: relative;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sp-spotlight__deco-year {
  position: absolute;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.sp-spotlight__icon-ring {
  position: relative;
  z-index: 1;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 16px rgba(255,255,255,0.03), 0 0 0 32px rgba(255,255,255,0.015);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  animation: sp-ring-pulse 3s ease-in-out infinite;
}
@keyframes sp-ring-pulse {
  0%, 100% { box-shadow: 0 0 0 16px rgba(255,255,255,0.03), 0 0 0 32px rgba(255,255,255,0.015); }
  50%       { box-shadow: 0 0 0 20px rgba(255,255,255,0.05), 0 0 0 40px rgba(255,255,255,0.02); }
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .sp-spotlight__container {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 48px;
  }
  .sp-spotlight__right {
    display: none; /* hide decorative panel on small screens */
  }
  .sp-spotlight__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}
@media (max-width: 480px) {
  .sp-spotlight__actions { flex-direction: column; align-items: flex-start; }
  .sp-spotlight__cta, .sp-spotlight__cta-ghost { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   SPORT CARDS GRID
═══════════════════════════════════════════════ */
.sp-sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.sp-sport-card {
  display: flex;
  flex-direction: column;
  background: var(--sp-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--sp-radius);
  padding: 28px 24px 22px;
  text-decoration: none;
  color: var(--sp-text);
  box-shadow: var(--sp-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.sp-sport-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sp-accent);
  border-radius: var(--sp-radius) var(--sp-radius) 0 0;
}
.sp-sport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sp-shadow-lg);
}
.sp-sport-card--oba::before { background: var(--sp-gold); }

.sp-sport-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sp-sport-card__icon { font-size: 2.4rem; }
.sp-sport-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sp-gold);
  color: #1a1a0a;
  padding: 3px 8px;
  border-radius: 20px;
}
.sp-sport-card__badge--next {
  background: #4ade80;
  color: #0d3d22;
}
.sp-sport-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.sp-sport-card__tagline {
  font-size: 0.85rem;
  color: var(--sp-muted);
  margin: 0 0 16px;
}

/* ── Stats strip ── */
.sp-sport-card__stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 auto;
}
.sp-sport-card__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  border-right: 1px solid rgba(0,0,0,0.07);
  background: var(--sp-light);
  text-align: center;
}
.sp-sport-card__stat:last-child { border-right: none; }
.sp-sport-card__stat-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sp-accent);
  line-height: 1.1;
  margin-bottom: 3px;
}
.sp-sport-card__stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sp-muted);
}

.sp-sport-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 12px;
  margin-top: 12px;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-sport-card__champ {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sp-accent);
}
.sp-sport-card__champ-year {
  font-size: 0.75rem;
  color: var(--sp-muted);
}

/* ═══════════════════════════════════════════════
   SPORT PAGE HERO
═══════════════════════════════════════════════ */
.sp-sport-hero {
  background: linear-gradient(135deg, var(--sp-dark) 0%, color-mix(in srgb, var(--sp-accent) 40%, #000) 100%);
  color: #fff;
  padding: 56px 0 52px;
}
.sp-sport-hero__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.sp-sport-hero__icon { font-size: 3.2rem; flex-shrink: 0; }
.sp-sport-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.sp-sport-hero__tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.sp-sport-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0;
  line-height: 1.7;
}

/* ── OBA Achievement Banner ── */
.sp-oba-achievement {
  background: linear-gradient(90deg, #2a2000, #3d3000, #2a2000);
  border-bottom: 2px solid var(--sp-gold);
  padding: 18px 0;
}
.sp-oba-achievement__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.sp-oba-achievement__trophy { font-size: 2rem; }
.sp-oba-achievement__inner p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

/* ── Sport Quick Stats ── */
.sp-sport-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--sp-radius);
  overflow: hidden;
  box-shadow: var(--sp-shadow);
}
.sp-sport-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(0,0,0,0.08);
  background: var(--sp-white);
  text-align: center;
}
.sp-sport-stat:last-child { border-right: none; }
.sp-sport-stat__val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sp-accent, var(--sp-green));
  margin-bottom: 6px;
  word-break: break-word;
}
.sp-sport-stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sp-muted);
}

/* ── Honours Board ── */
.sp-honours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.sp-honour-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sp-radius-sm);
  padding: 14px 16px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.sp-honour-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}
.sp-honour-card__year {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  min-width: 40px;
}
.sp-honour-card__name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}
.sp-honour-card__arrow {
  color: var(--sp-accent, var(--sp-gold));
  font-size: 1rem;
  transition: transform 0.2s;
}
.sp-honour-card:hover .sp-honour-card__arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════
   SEASONS LIST / TABLE  (sport page — v3)
═══════════════════════════════════════════════ */
.sp-seasons-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-season-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 0 20px;
  align-items: center;
  background: var(--sp-white);
  border-radius: var(--sp-radius);
  box-shadow: var(--sp-shadow);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sp-season-row:hover {
  box-shadow: var(--sp-shadow-lg);
  transform: translateY(-2px);
}

/* Highlight the top/latest row */
.sp-season-row--latest {
  border-left: 4px solid var(--sp-accent);
}

/* ── Thumbnail cell ── */
.sp-season-row__thumb {
  position: relative;
  width: 140px;
  height: 110px;
  flex-shrink: 0;
  align-self: stretch;
}
.sp-season-row__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sp-season-row__thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sp-dark) 0%, color-mix(in srgb, var(--sp-accent, #1a6b3c) 60%, #000) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.sp-season-row__badge {
  position: absolute;
  bottom: 7px; left: 7px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--sp-accent);
  color: #fff;
}
.sp-season-row__badge--latest {
  background: var(--sp-gold);
  color: #1a1a0a;
}

/* ── Info cell ── */
.sp-season-row__info {
  padding: 18px 0 18px 4px;
  min-width: 0;
}

.sp-season-row__meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.sp-season-row__year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sp-accent);
  letter-spacing: 0.06em;
}
.sp-season-row__edition {
  font-size: 0.72rem;
  background: var(--sp-light);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--sp-muted);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.sp-season-row__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sp-text);
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-season-row__details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 6px;
}
.sp-season-row__detail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--sp-muted);
}
.sp-season-row__detail strong { color: var(--sp-text); font-weight: 600; }
.sp-season-row__detail svg { flex-shrink: 0; opacity: 0.6; }

.sp-season-row__highlight {
  font-size: 0.8rem;
  color: var(--sp-muted);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
  /* truncate to single line */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── CTA cell ── */
.sp-season-row__cta {
  padding: 0 22px 0 10px;
  flex-shrink: 0;
}
.sp-season-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: var(--sp-accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.sp-season-row__btn:hover {
  opacity: 0.88;
  transform: translateX(2px);
}

/* ── Responsive for season rows ── */
@media (max-width: 680px) {
  .sp-season-row {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }
  .sp-season-row__thumb { height: 90px; width: 100px; grid-row: 1 / 3; }
  .sp-season-row__cta   { grid-column: 2; grid-row: 2; padding: 0 12px 14px; }
  .sp-season-row__info  { padding: 12px 4px 6px; }
  .sp-season-row__title { white-space: normal; }
  .sp-season-row__highlight { display: none; }
}
@media (max-width: 440px) {
  .sp-season-row {
    grid-template-columns: 80px 1fr;
  }
  .sp-season-row__thumb { height: 80px; width: 80px; }
  .sp-season-row__btn   { padding: 8px 12px; font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════
   SEASON PAGE HERO
═══════════════════════════════════════════════ */
.sp-season-hero {
  background: linear-gradient(150deg, var(--sp-dark) 0%, color-mix(in srgb, var(--sp-accent) 35%, #000) 100%);
  color: #fff;
  padding: 52px 0 48px;
}
.sp-season-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.sp-season-hero__breadcrumbs a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-season-hero__breadcrumbs a:hover { color: #fff; }

.sp-season-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.sp-season-hero__icon { font-size: 3rem; flex-shrink: 0; line-height: 1; }
.sp-season-hero__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sp-gold);
  margin: 0 0 8px;
}
.sp-season-hero__title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.sp-season-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}
.sp-season-hero__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.sp-season-hero__highlight {
  border-left: 3px solid var(--sp-gold);
  background: rgba(255,255,255,0.07);
  margin: 0;
  padding: 14px 20px;
  border-radius: 0 var(--sp-radius-sm) var(--sp-radius-sm) 0;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
}

/* ── Champion Banner ── */
.sp-champion-banner {
  background: color-mix(in srgb, var(--sp-accent) 15%, #000);
  border-top: 3px solid var(--sp-accent);
  border-bottom: 3px solid var(--sp-accent);
  padding: 20px 0;
}
.sp-champion-banner__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sp-champion-banner__trophy { color: var(--sp-gold); }
.sp-champion-banner__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin: 0 0 4px;
}
.sp-champion-banner__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* ── Results Table ── */
.sp-results-table { display: flex; flex-direction: column; gap: 8px; }

.sp-result-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--sp-radius-sm);
  padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.sp-result-row--pos1 { border-left: 4px solid #d4af37; }
.sp-result-row--pos2 { border-left: 4px solid #a8a9ad; }
.sp-result-row--pos3 { border-left: 4px solid #cd7f32; }

.sp-result-row__medal { font-size: 1.5rem; flex-shrink: 0; }
.sp-result-row__bullet {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sp-result-row__content { flex: 1; }
.sp-result-row__cat {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sp-muted);
  margin-bottom: 2px;
}
.sp-result-row__val {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sp-text);
}
.sp-result-row__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Videos ── */
.sp-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.sp-video-card { display: flex; flex-direction: column; gap: 10px; }

.sp-video-thumb-wrap {
  position: relative;
  padding-bottom: 56.25%;
  cursor: pointer;
  border-radius: var(--sp-radius-sm);
  overflow: hidden;
  background: #000;
}
.sp-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.sp-video-thumb-wrap:hover .sp-video-thumb { opacity: 0.7; }

.sp-video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  color: #000;
}
.sp-video-thumb-wrap:hover .sp-video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

.sp-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--sp-radius-sm);
  overflow: hidden;
}
.sp-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.sp-video-ext-card {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: var(--sp-radius-sm);
  overflow: hidden;
}
.sp-video-ext-bg {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d2a1a, #1a4a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.sp-video-ext-card:hover .sp-video-ext-bg { opacity: 0.8; }

.sp-video-card__title {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.4;
}

/* ── Photos ── */
.sp-photos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sp-photos-header .sp-section-title { margin-bottom: 0; }

.sp-count {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0,0,0,0.08);
  color: var(--sp-muted);
}
.sp-count--light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
}

.sp-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.sp-photo-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--sp-radius-sm);
}
.sp-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.3s;
}
.sp-photo-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
#sp-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
#sp-lightbox[hidden] { display: none; }

#sp-lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(4px);
}
#sp-lb-inner {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  max-width: 90vw; max-height: 92vh;
  padding: 20px;
}
#sp-lb-img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}
#sp-lb-cap, #sp-lb-counter {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 8px 0 0;
}
#sp-lb-counter { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

#sp-lb-close {
  position: fixed; top: 18px; right: 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; z-index: 2;
  transition: background 0.2s;
}
#sp-lb-close:hover { background: rgba(255,255,255,0.28); }

#sp-lb-prev, #sp-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 1.8rem;
  width: 48px; height: 64px; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
#sp-lb-prev { left: 14px; }
#sp-lb-next { right: 14px; }
#sp-lb-prev:hover, #sp-lb-next:hover { background: rgba(255,255,255,0.22); }

/* ═══════════════════════════════════════════════
   HUB HERO — PHOTO COLLAGE  (v4)
═══════════════════════════════════════════════ */
.sp-hub-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* fallback if no photos yet */
  background: linear-gradient(135deg, var(--sp-green-dk) 0%, var(--sp-green) 100%);
}

/* 4×2 photo grid fills the background */
.sp-hub-hero__collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  pointer-events: none;
}
.sp-hub-hero__collage-cell {
  background-size: cover;
  background-position: center;
  background-color: var(--sp-dark);
  transition: transform 8s ease;
}
.sp-hub-hero__collage-cell:nth-child(odd)  { transform: scale(1.04); }
.sp-hub-hero__collage-cell:nth-child(even) { transform: scale(1.00); }
.sp-hub-hero__collage-cell--empty {
  background: var(--sp-dark);
}

/* v9.7 — darker, more contrasty overlay so the title pops against busy photos.
   Adds a central radial darkening behind the text plus a stronger vignette. */
.sp-hub-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%,
      rgba(5,14,8,0.78) 0%,
      rgba(5,14,8,0.45) 60%,
      rgba(5,14,8,0.20) 100%),
    linear-gradient(to bottom,
      rgba(5,14,8,0.55) 0%,
      rgba(5,14,8,0.50) 40%,
      rgba(5,14,8,0.82) 100%),
    linear-gradient(to right,
      rgba(5,14,8,0.40) 0%,
      transparent 30%,
      transparent 70%,
      rgba(5,14,8,0.40) 100%);
  pointer-events: none;
}

/* Centred content on top */
.sp-hub-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 72px 24px 56px;
  margin: 0 auto;
}

.sp-hub-hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.sp-hub-hero__title {
  font-size: clamp(2.8rem, 7.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 18px;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.7),
    0 4px 24px rgba(0,0,0,0.85),
    0 0 60px rgba(0,0,0,0.55);
}

/* Accent word in title */
.sp-hub-hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
}

.sp-hub-hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.75),
    0 3px 14px rgba(0,0,0,0.65);
}

/* Decorative divider line below sub */
.sp-hub-hero__divider {
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  margin: 22px auto 0;
}

/* ═══════════════════════════════════════════════
   SPORT PAGE HERO — v4 (photo bg + stats bar)
═══════════════════════════════════════════════ */
.sp-sport-hero {
  position: relative;
  background: linear-gradient(135deg, var(--sp-dark) 0%, color-mix(in srgb, var(--sp-accent) 40%, #000) 100%);
  color: #fff;
  padding: 0;
  overflow: hidden;
  min-height: 540px;  /* v9.12 - room for the 24-cell quilt collage */
}

/* Optional photo background */
.sp-sport-hero__photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(0.7);
  transform: scale(1.06);
  opacity: 0.18;
  pointer-events: none;
}
.sp-sport-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,14,8,0.88) 0%, color-mix(in srgb, var(--sp-accent) 30%, rgba(0,0,0,0.85)) 100%);
  pointer-events: none;
}

.sp-sport-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: 0; /* stats bar provides bottom padding */
}
/* v9.14 - solid sport-accent green box behind the title; center-aligned on
   mobile.  Removes the glassy translucent look in favour of a clean solid
   card that always reads regardless of what photo is behind. */
.sp-sport-hero__text {
  display: inline-block;
  padding: 18px 26px;
  background: color-mix(in srgb, var(--sp-accent) 75%, #000 25%);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 36px rgba(0,0,0,0.50);
}
@media (max-width: 700px) {
  .sp-sport-hero__inner {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 14px;
  }
  .sp-sport-hero__text {
    text-align: center;
    display: block;
    width: 100%;
    max-width: 92%;
    margin: 0 auto;
  }
}

.sp-sport-hero__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
.sp-sport-hero__icon { font-size: 3.2rem; flex-shrink: 0; }
.sp-sport-hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: #fff !important;  /* v9.11 — defeat any theme rule that paints it dark */
  text-shadow:
    0 2px 4px rgba(0,0,0,0.85),
    0 4px 18px rgba(0,0,0,0.85);
}
.sp-sport-hero__tagline {
  font-size: 1.1rem;
  color: #fff !important;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
  font-weight: 500;
}
.sp-sport-hero__desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 0 0 20px;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0,0,0,0.65);
}
.sp-sport-hero__oba-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  max-width: 640px;
}

/* Stats bar — bottom of hero, glass row */
.sp-sport-hero__stats-bar {
  display: flex;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.25);
  /* full bleed within container */
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 20px;
}
.sp-sport-hero__stat {
  flex: 0 0 auto;
  padding: 20px 28px 22px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.sp-sport-hero__stat:last-child { border-right: none; }
.sp-sport-hero__stat--champ { flex: 1; }

.sp-sport-hero__stat-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.sp-sport-hero__stat-lbl {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 560px) {
  .sp-sport-hero__stats-bar { flex-wrap: wrap; }
  .sp-sport-hero__stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .sp-sport-hero__stat--champ { flex: 1 1 100%; }
  .sp-sport-hero__inner { flex-direction: column; gap: 12px; }
}

/* ═══════════════════════════════════════════════
   SEASON PAGE HERO — v4
═══════════════════════════════════════════════ */
.sp-season-hero {
  position: relative;
  background: linear-gradient(150deg, var(--sp-dark) 0%, color-mix(in srgb, var(--sp-accent) 35%, #000) 100%);
  color: #fff;
  overflow: hidden;
  min-height: 540px;  /* v9.12 - room for the 24-cell quilt collage */
}

/* Optional photo bg */
.sp-season-hero__photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px) saturate(0.6);
  transform: scale(1.06);
  opacity: 0.20;
  pointer-events: none;
}
.sp-season-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(5,14,8,0.90) 0%, rgba(5,14,8,0.75) 100%);
  pointer-events: none;
}

.sp-season-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 48px;
}

.sp-season-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sp-season-hero__breadcrumbs a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-season-hero__breadcrumbs a:hover { color: #fff; }
.sp-season-hero__breadcrumbs span:last-child {
  color: rgba(255,255,255,0.75);
}

.sp-season-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
}
.sp-season-hero__icon { font-size: 2.8rem; flex-shrink: 0; line-height: 1.1; }
.sp-season-hero__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sp-gold);
  margin: 0 0 8px;
}
.sp-season-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff !important;  /* v9.11 — defeat any theme rule that paints it dark */
  text-shadow:
    0 2px 4px rgba(0,0,0,0.85),
    0 4px 18px rgba(0,0,0,0.85);
}

/* Meta pills */
.sp-season-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sp-season-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}
.sp-season-hero__pill svg { opacity: 0.6; }

/* ═══════════════════════════════════════════════
   SEASON BODY — TWO-COLUMN SPLIT
═══════════════════════════════════════════════ */
.sp-season-body { padding: 52px 0 56px; }

.sp-season-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ── Left: Intro ── */
.sp-season-split__heading {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sp-accent);
  margin: 0 0 20px;
}

.sp-season-intro__quote {
  position: relative;
  margin: 0 0 24px;
  padding: 18px 20px 18px 28px;
  background: var(--sp-light);
  border-left: 4px solid var(--sp-accent);
  border-radius: 0 var(--sp-radius-sm) var(--sp-radius-sm) 0;
}
.sp-season-intro__quote-mark {
  position: absolute;
  top: 12px; left: -6px;
  width: 20px; height: 15px;
  color: var(--sp-accent);
  opacity: 0.5;
}
.sp-season-intro__quote p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--sp-text);
  line-height: 1.65;
}

.sp-season-intro__sport-desc {
  font-size: 0.95rem;
  color: var(--sp-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Detail list */
.sp-season-intro__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--sp-radius-sm);
  overflow: hidden;
  margin: 0 0 24px;
}
.sp-season-intro__detail {
  display: flex;
  align-items: baseline;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}
.sp-season-intro__detail:last-child { border-bottom: none; }
.sp-season-intro__detail dt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--sp-muted);
  background: var(--sp-light);
  padding: 11px 14px;
  min-width: 110px;
  font-size: 0.82rem;
}
.sp-season-intro__detail dt svg { opacity: 0.6; flex-shrink: 0; }
.sp-season-intro__detail dd {
  margin: 0;
  padding: 11px 14px;
  color: var(--sp-text);
  flex: 1;
}
.sp-season-intro__detail--oba dt { color: #8a6c00; }
.sp-season-intro__detail--oba dd { font-weight: 500; }

.sp-season-intro__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sp-accent);
  text-decoration: none;
  transition: gap 0.2s;
}
.sp-season-intro__back-link:hover { gap: 10px; }

/* ── Right: Champion card ── */
.sp-season-champ-card {
  background: linear-gradient(160deg, #1e4030 0%, #142d22 100%);
  border-radius: var(--sp-radius);
  padding: 28px 24px 24px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.sp-season-champ-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sp-gold), var(--sp-accent));
}
.sp-season-champ-card__trophy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.3);
  margin: 0 auto 12px;
  color: var(--sp-gold);
}
.sp-season-champ-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sp-gold);
  margin: 0 0 8px;
}
.sp-season-champ-card__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Champion team photo */
.sp-season-champ-card__photo {
  margin: 16px -24px -24px;
  border-radius: 0 0 var(--sp-radius) var(--sp-radius);
  overflow: hidden;
  max-height: 200px;
}
.sp-season-champ-card__photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ── Expandable result row — team members toggle ── */
.sp-result-row--expandable {
  flex-wrap: wrap;
  cursor: default;
}
.sp-result-row__expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sp-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.sp-result-row__expand-btn::before {
  content: 'Members ';
}
.sp-result-row__expand-btn:hover {
  background: rgba(0,0,0,0.1);
  color: var(--sp-text);
}
.sp-result-row__expand-btn[aria-expanded="true"] .sp-result-row__expand-chevron {
  transform: rotate(180deg);
}
.sp-result-row__expand-chevron {
  transition: transform 0.2s;
  opacity: 0.6;
}
.sp-result-row__expand-count {
  background: var(--sp-accent);
  color: #fff;
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 0.65rem;
}

/* Members expanded panel */
.sp-result-members {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 18px 12px;
  background: var(--sp-light);
  border-top: 1px solid rgba(0,0,0,0.06);
  animation: sp-members-in 0.18s ease;
}
.sp-result-members[hidden] { display: none; }

@keyframes sp-members-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sp-result-member {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--sp-text);
  font-weight: 500;
}
.sp-result-member svg { opacity: 0.45; flex-shrink: 0; }

/* Results panel in right column */
.sp-season-results-panel {
  background: var(--sp-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--sp-radius);
  overflow: hidden;
  box-shadow: var(--sp-shadow);
}
.sp-season-results-panel__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sp-muted);
  padding: 12px 16px;
  background: var(--sp-light);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin: 0;
}
.sp-season-results-panel .sp-results-table { gap: 0; }
.sp-season-results-panel .sp-result-row {
  border-radius: 0;
  border-left-width: 4px;
  box-shadow: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sp-season-results-panel .sp-result-row:last-child { border-bottom: none; }

.sp-season-split__empty {
  color: var(--sp-muted);
  font-size: 0.9rem;
  font-style: italic;
  padding: 20px 0;
}

/* Responsive: stack columns */
@media (max-width: 800px) {
  .sp-season-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════════
   PHOTOS GRID — responsive for small counts
═══════════════════════════════════════════════ */
.sp-photos-grid--single .sp-photo-item {
  aspect-ratio: 16/9;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--sp-radius);
}
.sp-photos-grid--single .sp-photo-item img { object-fit: cover; }

.sp-photos-grid--few {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sp-photos-grid--many {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.sp-photo-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--sp-radius-sm);
}
.sp-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}
.sp-photo-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

/* Caption on hover */
.sp-photo-item__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.2s;
}
.sp-photo-item:hover .sp-photo-item__cap { opacity: 1; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — GENERAL
═══════════════════════════════════════════════ */
@media (max-width: 560px) {
  .sp-section { padding: 40px 0; }
  .sp-season-body { padding: 36px 0 44px; }
  .sp-sports-grid { grid-template-columns: 1fr 1fr; }
  .sp-honours-grid { grid-template-columns: 1fr; }
  .sp-hub-hero__title { font-size: clamp(2rem, 10vw, 3rem); }
  .sp-hub-hero__collage { grid-template-columns: repeat(2, 1fr); }
  .sp-season-hero__inner { flex-direction: column; gap: 12px; }
  .sp-spotlight__container { padding-top: 40px; padding-bottom: 44px; }

  /* SP-02 — tighten sport cards in 2-column grid so stats fit */
  .sp-sport-card { padding: 20px 14px 16px; }
  .sp-sport-card__stat { padding: 8px 4px; }
  .sp-sport-card__stat-val { font-size: 0.9rem; }
  .sp-sport-card__stat-lbl { font-size: 0.58rem; letter-spacing: 0.04em; }
  .sp-sport-card__icon { font-size: 2rem; }
  .sp-sport-card__name { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════════
   SP-01 — Spotlight Countdown
═══════════════════════════════════════════════ */
.sp-spotlight__countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 14px;
}
.sp-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  min-width: 56px;
  padding: 10px 8px 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sp-countdown__num {
  font-family: 'Libre Baskerville','Georgia',serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.sp-countdown__lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.sp-countdown__sep {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  align-self: flex-start;
  margin-top: 10px;
  line-height: 1;
}
@media (max-width: 560px) {
  .sp-countdown__unit { min-width: 48px; padding: 8px 6px 5px; }
  .sp-countdown__num  { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════════
   v8 — UX audit Critical #08: prev/next season nav strip
   Lives at the bottom of /sports-events/{sport}/{season}/
═══════════════════════════════════════════════════════════════ */
.sp-season-pn { padding: 36px 0 8px; background: #fff; }
.sp-season-pn__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.sp-season-pn__link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1px solid #e2e6e3;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  background: #fafbfa;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
  min-height: 64px;
}
.sp-season-pn__link:hover {
  border-color: #1a6b3c; background: #f1f7f3; transform: translateY(-1px);
}
.sp-season-pn__link--prev { justify-content: flex-start; }
.sp-season-pn__link--next { justify-content: flex-end; text-align: right; }
.sp-season-pn__arrow {
  font-size: 1.4rem; line-height: 1;
  color: #1a6b3c; font-weight: 700;
  width: 28px; text-align: center; flex-shrink: 0;
}
.sp-season-pn__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sp-season-pn__meta--right { align-items: flex-end; }
.sp-season-pn__lbl   { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: #6a7170; font-weight: 700; }
.sp-season-pn__title { font-size: .98rem; font-weight: 700; color: #1a1a1a; line-height: 1.25; }
.sp-season-pn__hublink {
  align-self: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  color: #1a6b3c;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 44px;
  display: flex; align-items: center;
}
.sp-season-pn__hublink:hover { background: #f1f7f3; border-color: #d9e7df; }
.sp-season-pn__spacer { display: block; min-height: 64px; }
@media (max-width: 720px) {
  .sp-season-pn { padding: 24px 0 4px; }
  .sp-season-pn__row { grid-template-columns: 1fr; gap: 10px; }
  .sp-season-pn__link--next { justify-content: flex-start; text-align: left; }
  .sp-season-pn__meta--right { align-items: flex-start; }
  .sp-season-pn__hublink { order: 99; align-self: stretch; justify-content: center; }
  .sp-season-pn__spacer { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   v8 — UX audit #19: empty photo state on season row
═══════════════════════════════════════════════════════════════ */
.sp-season-row__detail--empty {
  color: #8a918e;
  font-style: italic;
  opacity: .85;
}
.sp-season-row__detail--empty svg { stroke: #b1b8b4; }

/* v9 — OBA result discipline label */
.sp-result-row__discipline {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a6b3c;
  margin-bottom: 1px;
}

/* v9 — sport event name + series videos section */
.sp-sport-hero__event-name {
  font-size: 1.05rem; font-weight: 700; font-style: italic;
  color: rgba(255,255,255,.92); margin: 2px 0 0;
}
.sp-sport-videos { padding: 48px 0 56px; background: #fafbfa; }
.sp-sport-videos__heading {
  font-size: 1.5rem; font-weight: 800; margin: 0 0 22px; color: #1a1a1a;
}
.sp-sport-videos__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
@media (max-width: 640px) { .sp-sport-videos__grid { grid-template-columns: 1fr; } }

/* v9.1 — Winner photo in OBA result rows (Inaam B2 feedback) */
.sp-result-row__photo {
  width: 56px; height: 56px;
  object-fit: cover; border-radius: 8px;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.sp-result-row--has-photo { align-items: center; }
@media (min-width: 720px) {
  .sp-result-row__photo { width: 64px; height: 64px; }
}

/* v9.7 - HERO STRATEGIES (split by level)
   ─ Hub  → CSS-GRID QUILT: varied-size tiles, predictable cropping, no
            natural-aspect overflow.  Photos use object-position: center 28%
            for face-safe cropping.
   ─ Sport / Season → ABOUT-PAGE 2-layer CROSSFADE rotator (unchanged).
   Old .sp-hero-collage / .sp-hub-masonry-(column) selectors retained as
   a no-op safety net for any cached HTML. */

/* ── HUB 24-CELL QUILT CROSSFADE COLLAGE v9.12 ──
   24 cells in a 6×4 grid with span variations (some 2×2, 2×1, 1×2 tiles).
   Each cell crossfades independently through the photo pool, mirroring
   the About-page pattern.  KEY FIX vs v9.10: collage container `top`
   matches the theme's fixed-nav padding so the top row of photos is no
   longer hidden behind the menu bar. */
.sp-hub-collage {
  position: absolute !important;
  top: 96px !important;
  left: 0 !important; right: 0 !important; bottom: 0 !important;
  z-index: 0;
  overflow: hidden;
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);   /* v9.14 - explicit 4 rows fill exactly */
  grid-auto-rows: 0;                    /* prevent ghost rows from spans */
  grid-auto-flow: dense;
  gap: 2px;
  background: #0a1a0f;
  column-count: unset !important;
}
@media (min-width: 880px) {
  .sp-hub-collage { top: 90px !important; }
}
body.admin-bar .sp-hub-collage { top: 128px !important; }
@media (min-width: 880px) {
  body.admin-bar .sp-hub-collage { top: 122px !important; }
}
@media (max-width: 1100px) {
  .sp-hub-collage { grid-template-columns: repeat(5, 1fr); }
  .sp-hub-slot:nth-child(n+21) { display: none; }  /* show 20 cells */
}
@media (max-width: 900px) {
  .sp-hub-collage { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, 1fr); }
  .sp-hub-slot:nth-child(n+17) { display: none; }  /* show 16 cells */
}
@media (max-width: 600px) {
  .sp-hub-collage { grid-template-columns: repeat(3, 1fr); }
  .sp-hub-slot:nth-child(n+13) { display: none; }  /* show 12 cells */
}
@media (max-width: 380px) {
  .sp-hub-collage { grid-template-columns: repeat(2, 1fr); }
  .sp-hub-slot:nth-child(n+9) { display: none; }   /* show 8 cells */
}

/* Span variations for the "quilt" feel — deterministic by index */
.sp-hub-slot:nth-child(7n+2)  { grid-row:    span 2; }
.sp-hub-slot:nth-child(11n+5) { grid-column: span 2; }
.sp-hub-slot:nth-child(13n+8) { grid-row:    span 2; grid-column: span 2; }
@media (max-width: 600px) {
  /* simplify spans on small screens so cells stay readable */
  .sp-hub-slot:nth-child(13n+8) { grid-row: span 1; grid-column: span 1; }
  .sp-hub-slot:nth-child(7n+2)  { grid-row: span 1; }
}

.sp-hub-slot {
  position: relative;
  overflow: hidden;
}
.sp-hub-slot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;  /* face-safe bias */
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity, transform;
}
.sp-hub-slot__img--active { opacity: 1; }

/* Ken Burns per slot — different keyframes so the wall has motion variety.
   Active layer gets the animation; outgoing fades out via opacity transition. */
@keyframes sp-hub-kb1 { from { transform: scale(1)    translate(0,0);     } to { transform: scale(1.12) translate(-2%,-2%); } }
@keyframes sp-hub-kb2 { from { transform: scale(1.10) translate(1%,0);    } to { transform: scale(1)    translate(-1%,1%);  } }
@keyframes sp-hub-kb3 { from { transform: scale(1)    translate(-1%,1%);  } to { transform: scale(1.13) translate(2%,-1%);  } }
@keyframes sp-hub-kb4 { from { transform: scale(1.08) translate(0,-1%);   } to { transform: scale(1)    translate(1%,2%);   } }
@keyframes sp-hub-kb5 { from { transform: scale(1)    translate(1%,0);    } to { transform: scale(1.11) translate(-1%,-1%); } }
@keyframes sp-hub-kb6 { from { transform: scale(1.09) translate(-1%,1%);  } to { transform: scale(1)    translate(2%,-2%);  } }
@keyframes sp-hub-kb7 { from { transform: scale(1)    translate(2%,2%);   } to { transform: scale(1.13) translate(-2%,-1%); } }
@keyframes sp-hub-kb8 { from { transform: scale(1.10) translate(-2%,-1%); } to { transform: scale(1)    translate(1%,1%);   } }
/* Ken Burns: cycle the 8 keyframes across all 24 cells via :nth-child(8n+k) */
.sp-hub-slot:nth-child(8n+1) .sp-hub-slot__img--active { animation: sp-hub-kb1 11s ease-in-out forwards; }
.sp-hub-slot:nth-child(8n+2) .sp-hub-slot__img--active { animation: sp-hub-kb2  9s ease-in-out forwards; }
.sp-hub-slot:nth-child(8n+3) .sp-hub-slot__img--active { animation: sp-hub-kb3 13s ease-in-out forwards; }
.sp-hub-slot:nth-child(8n+4) .sp-hub-slot__img--active { animation: sp-hub-kb4 10s ease-in-out forwards; }
.sp-hub-slot:nth-child(8n+5) .sp-hub-slot__img--active { animation: sp-hub-kb5 12s ease-in-out forwards; }
.sp-hub-slot:nth-child(8n+6) .sp-hub-slot__img--active { animation: sp-hub-kb6  8s ease-in-out forwards; }
.sp-hub-slot:nth-child(8n+7) .sp-hub-slot__img--active { animation: sp-hub-kb7 11s ease-in-out forwards; }
.sp-hub-slot:nth-child(8n)   .sp-hub-slot__img--active { animation: sp-hub-kb8  9s ease-in-out forwards; }

/* Legacy v9.6/9.8 masonry no-op (in case any cached HTML still references it) */
.sp-hub-masonry { display: none !important; }

/* ── SPORT / SEASON CROSSFADE ── */
.sp-hero-fade {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: #0a1a0f;
}
.sp-hero-fade__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;  /* face-safe bias */
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.sp-hero-fade__img.is-active { opacity: 1; }

/* Reduced-motion: slow the transition right down but still allow it,
   so visitors with reduce-motion ON don't see a static single photo. */
@media (prefers-reduced-motion: reduce) {
  .sp-hero-fade__img { transition: opacity 2.4s ease; }
}

/* ── LEGACY collage classes (no-op safety net) ── */
.sp-hero-collage { display: none; }
.sp-hero-collage__cell { background-image: none !important; animation: none !important; }
/* Five Ken Burns keyframes, rotated across cells via :--kb1..--kb5 */
@keyframes sp-kbA { from { transform: scale(1)    translate(0,0); }
                   to   { transform: scale(1.14) translate(-2%,-2%); } }
@keyframes sp-kbB { from { transform: scale(1.11) translate(1.5%,0); }
                   to   { transform: scale(1)    translate(-1%,1.5%); } }
@keyframes sp-kbC { from { transform: scale(1)    translate(-1%,1%); }
                   to   { transform: scale(1.13) translate(2%,-1%); } }
@keyframes sp-kbD { from { transform: scale(1.09) translate(0,-1%); }
                   to   { transform: scale(1)    translate(1.5%,2%); } }
@keyframes sp-kbE { from { transform: scale(1)    translate(1%,0); }
                   to   { transform: scale(1.12) translate(-1.5%,-1.5%); } }
.sp-hero-collage__cell--kb1 { animation: sp-kbA 18s ease-in-out infinite alternate; }
.sp-hero-collage__cell--kb2 { animation: sp-kbB 22s ease-in-out infinite alternate; animation-delay: -3s; }
.sp-hero-collage__cell--kb3 { animation: sp-kbC 16s ease-in-out infinite alternate; animation-delay: -7s; }
.sp-hero-collage__cell--kb4 { animation: sp-kbD 24s ease-in-out infinite alternate; animation-delay: -2s; }
.sp-hero-collage__cell--kb5 { animation: sp-kbE 20s ease-in-out infinite alternate; animation-delay: -10s; }
@media (prefers-reduced-motion: reduce) {
  .sp-hero-collage__cell { animation: none !important; transform: scale(1) !important; }
}

/* v9.9 overlay - LIGHTENED (v9.7's overlay was smothering the photo).
   The frosted backdrop card behind the title (added in v9.8) does the heavy
   lifting for text contrast, so the overlay only needs a gentle darkening
   to keep the photo from blowing out the page chrome. */
.sp-sport-hero--has-fade .sp-sport-hero__photo-overlay,
.sp-sport-hero--has-collage .sp-sport-hero__photo-overlay,
.sp-season-hero--has-fade .sp-season-hero__photo-overlay,
.sp-season-hero--has-collage .sp-season-hero__photo-overlay {
  background:
    radial-gradient(ellipse 65% 80% at 25% 50%,
      rgba(5,14,8,0.42) 0%,
      rgba(5,14,8,0.22) 50%,
      rgba(5,14,8,0.08) 100%),
    linear-gradient(135deg, rgba(5,14,8,0.28) 0%,
      color-mix(in srgb, var(--sp-accent) 18%, rgba(0,0,0,0.32)) 100%) !important;
}
.sp-hub-hero { overflow: hidden; }
.sp-hub-hero--has-collage .sp-hub-hero__overlay {
  background: linear-gradient(180deg, rgba(0,40,18,0.4) 0%, rgba(0,40,18,0.74) 100%) !important;
}

/* v9.14 - solid sport-accent green box behind season title */
.sp-season-hero__title-wrap,
.sp-season-hero__edition {
  display: inline-block;
}
.sp-season-hero__title {
  padding: 12px 22px;
  background: color-mix(in srgb, var(--sp-accent) 75%, #000 25%);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 32px rgba(0,0,0,0.50);
  display: inline-block;
}
.sp-season-hero__edition {
  background: color-mix(in srgb, var(--sp-accent) 60%, #000 40%);
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 700px) {
  .sp-season-hero__inner {
    text-align: center;
  }
  .sp-season-hero__title,
  .sp-season-hero__edition {
    display: inline-block;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════
   v9.12 — MOBILE OPTIMISATION FOR QUILT HEROES
   • Smaller min-heights so the hero doesn't dominate the viewport
   • Tighter content padding so the title doesn't push the quilt down
   • Smaller cell row heights so the wall fits in a shorter band
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .sp-hub-hero,
  .sp-sport-hero,
  .sp-season-hero {
    min-height: 460px;
  }
  .sp-hub-collage {
    grid-template-rows: repeat(4, 1fr);
    gap: 1px;
  }
}
@media (max-width: 600px) {
  .sp-hub-hero,
  .sp-sport-hero,
  .sp-season-hero {
    min-height: 380px;
  }
  .sp-hub-collage {
    grid-template-rows: repeat(4, 1fr);
    top: 96px !important;
  }
  .sp-hub-hero__inner { padding: 56px 18px 40px; }
  .sp-sport-hero__content { padding-top: 36px; }
  .sp-sport-hero__text {
    padding: 12px 16px;
    border-radius: 10px;
  }
  .sp-season-hero__title {
    padding: 8px 14px;
    border-radius: 8px;
  }
}
@media (max-width: 380px) {
  .sp-hub-hero,
  .sp-sport-hero,
  .sp-season-hero {
    min-height: 340px;
  }
  .sp-hub-collage {
    grid-template-rows: repeat(4, 1fr);
  }
  .sp-hub-slot__img--active { animation-duration: 14s !important; }
}

/* v9.14 - description text backdrop card so it reads over busy photo collage */
.sp-sport-hero__desc {
  background: rgba(5, 14, 8, 0.55);
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  max-width: 720px;
  color: #fff !important;
}
@media (max-width: 700px) {
  .sp-sport-hero__desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    padding: 12px 16px;
  }
}
