/* =========================================================
   sport.co.jp — Site CSS
   A comedy about a girl called Sport
   ========================================================= */

:root {
  --sport-red: #e3323a;
  --sport-red-dark: #a91522;
  --sport-blue: #11345d;
  --sport-blue-soft: #24507f;
  --sport-gold: #f7c948;
  --sport-cream: #fff7e8;
  --sport-paper: #fffdf7;
  --sport-ink: #151515;
  --sport-muted: #5f6670;
  --sport-line: rgba(17, 52, 93, 0.16);
  --sport-white: #ffffff;
  --sport-shadow: 0 24px 70px rgba(17, 52, 93, 0.16);
  --sport-radius: 28px;
  --sport-radius-small: 16px;
  --max-width: 1180px;
}

/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--sport-ink);
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.24), transparent 34rem),
    radial-gradient(circle at top right, rgba(227, 50, 58, 0.14), transparent 32rem),
    linear-gradient(180deg, #fffdf7 0%, #fff7e8 48%, #ffffff 100%);
  line-height: 1.75;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1.1rem;
}

strong {
  color: #000;
}

::selection {
  background: var(--sport-gold);
  color: #111;
}

/* =========================================================
   Layout Helpers
   ========================================================= */

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 54px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 2px solid rgba(17, 52, 93, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sport-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "●";
  color: var(--sport-red);
  font-size: 0.7rem;
}

.section-title {
  margin: 0 0 18px;
  color: var(--sport-blue);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.section-lede {
  max-width: 760px;
  margin: 0;
  color: #303843;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.85;
}

.text-center {
  text-align: center;
}

.text-center .section-lede {
  margin-inline: auto;
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(17, 52, 93, 0.12);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 1000;
  color: var(--sport-blue);
  letter-spacing: -0.04em;
  font-size: 1.34rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--sport-red), var(--sport-red-dark));
  box-shadow: 0 10px 24px rgba(227, 50, 58, 0.24);
  font-weight: 1000;
}

.logo small {
  display: block;
  margin-top: -5px;
  color: var(--sport-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-menu a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--sport-blue);
  font-size: 0.9rem;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: var(--sport-red);
  color: #fff;
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--sport-blue);
  color: #fff !important;
}

/* =========================================================
   Buttons
   ========================================================= */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 1000;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(17, 52, 93, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px) rotate(-0.4deg);
  box-shadow: 0 20px 40px rgba(17, 52, 93, 0.18);
}

.btn-primary {
  background: var(--sport-red);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--sport-blue);
  border-color: rgba(17, 52, 93, 0.2);
}

.btn-gold {
  background: var(--sport-gold);
  color: #1b1b1b;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 20, 38, 0.92) 0%, rgba(8, 20, 38, 0.76) 42%, rgba(8, 20, 38, 0.22) 100%),
    url("/images/sport-home-hero-girl-named-sport-standing-on-school-field-comedy.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--sport-paper), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 36px));
  margin-inline: auto;
  padding: 84px 0 130px;
}

.hero-card {
  max-width: 690px;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
  color: var(--sport-gold);
}

.hero-lede {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.85;
}

.hero-joke {
  max-width: 540px;
  margin-top: 26px;
  padding: 18px 22px;
  border-left: 7px solid var(--sport-gold);
  border-radius: 0 20px 20px 0;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 1.04rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

/* =========================================================
   Comedy Strips / Callout Cards
   ========================================================= */

.comedy-strip {
  position: relative;
  margin-top: -80px;
  z-index: 5;
}

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

.strip-card {
  min-height: 180px;
  padding: 26px;
  border-radius: var(--sport-radius);
  background: #fff;
  border: 1px solid rgba(17, 52, 93, 0.12);
  box-shadow: var(--sport-shadow);
  transform: rotate(-0.8deg);
}

.strip-card:nth-child(2) {
  transform: rotate(0.8deg);
}

.strip-card:nth-child(3) {
  transform: rotate(-0.25deg);
}

.strip-card .number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--sport-red);
  color: #fff;
  font-weight: 1000;
}

.strip-card h3 {
  margin: 0 0 8px;
  color: var(--sport-blue);
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.strip-card p {
  margin: 0;
  color: #3d4650;
  font-weight: 700;
}

/* =========================================================
   Character Cards
   ========================================================= */

.character-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.character-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--sport-radius);
  background: #111;
  box-shadow: var(--sport-shadow);
  isolation: isolate;
}

.character-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 62%);
  z-index: 1;
}

.character-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.character-card:hover img {
  transform: scale(1.06);
}

.character-info {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
  color: #fff;
}

.character-info h3 {
  margin: 0 0 5px;
  font-size: 1.32rem;
  letter-spacing: -0.04em;
}

.character-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

/* Character image helper classes */

.img-sport {
  background-image: url("/images/sport-character-sport-girl-confused-by-whistle-and-ball.jpg");
}

.img-coach {
  background-image: url("/images/sport-coach-sensei-believes-she-is-a-champion.jpg");
}

.img-mina {
  background-image: url("/images/sport-manager-mina-clipboard-trying-to-control-chaos.jpg");
}

.img-grandma {
  background-image: url("/images/sport-grandma-victory-olympic-dream-origin-story.jpg");
}

.img-dog {
  background-image: url("/images/sport-referee-dog-stealing-soccer-ball.jpg");
}

/* =========================================================
   Feature / Episode Cards
   ========================================================= */

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.episode-card {
  overflow: hidden;
  border-radius: var(--sport-radius);
  background: #fff;
  border: 1px solid rgba(17, 52, 93, 0.12);
  box-shadow: var(--sport-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.episode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(17, 52, 93, 0.2);
}

.episode-image {
  aspect-ratio: 16 / 10;
  background: var(--sport-blue);
  overflow: hidden;
}

.episode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-body {
  padding: 24px;
}

.episode-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(227, 50, 58, 0.1);
  color: var(--sport-red-dark);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-body h3 {
  margin: 0 0 10px;
  color: var(--sport-blue);
  font-size: 1.48rem;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.episode-body p {
  margin: 0;
  color: #3d4650;
  font-weight: 650;
}

/* =========================================================
   Big Image Feature Blocks
   ========================================================= */

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-image {
  overflow: hidden;
  border-radius: calc(var(--sport-radius) + 10px);
  box-shadow: var(--sport-shadow);
  background: #ddd;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.split-copy {
  padding: 26px;
}

.split-copy h2 {
  margin: 0 0 18px;
  color: var(--sport-blue);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.split-copy p {
  color: #333d47;
  font-size: 1.08rem;
}

.quote-card {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 24px;
  background: var(--sport-blue);
  color: #fff;
  box-shadow: 0 18px 48px rgba(17, 52, 93, 0.22);
}

.quote-card p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.6;
}

/* =========================================================
   Poster / Page Hero
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(5, 13, 25, 0.9), rgba(5, 13, 25, 0.24)),
    var(--page-hero-image, url("/images/sport-gallery-hero-comedy-sports-school-scenes.jpg")) center / cover no-repeat;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 36px));
  margin-inline: auto;
  padding: 110px 0 70px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

/* Useful per-page hero variables */

.hero-gallery {
  --page-hero-image: url("/images/sport-gallery-hero-comedy-sports-school-scenes.jpg");
}

.hero-og {
  --page-hero-image: url("/images/sport-og-girl-named-sport-comedy-poster.jpg");
}

.hero-captain {
  --page-hero-image: url("/images/sport-episode-accidental-team-captain-schoolyard-chaos.jpg");
}

.hero-running {
  --page-hero-image: url("/images/sport-episode-running-late-is-not-track-comedy.jpg");
}

/* =========================================================
   Article Pages
   ========================================================= */

.article-wrap {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.article-wrap h2 {
  margin: 2.4rem 0 1rem;
  color: var(--sport-blue);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.article-wrap h3 {
  margin: 2rem 0 0.8rem;
  color: var(--sport-red-dark);
  font-size: 1.55rem;
  line-height: 1.22;
}

.article-wrap p,
.article-wrap li {
  color: #2f3843;
  font-size: 1.08rem;
}

.article-card {
  padding: 34px;
  border-radius: var(--sport-radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 52, 93, 0.12);
  box-shadow: var(--sport-shadow);
}

.dialogue {
  margin: 28px 0;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 2px dashed rgba(227, 50, 58, 0.36);
}

.dialogue p {
  margin-bottom: 0.85rem;
  font-weight: 750;
}

.dialogue strong {
  color: var(--sport-red-dark);
}

/* =========================================================
   Gallery
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: var(--sport-shadow);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.88);
}

.gallery-caption {
  position: absolute;
  inset: auto 12px 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--sport-blue);
  font-size: 0.84rem;
  font-weight: 1000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   Lightbox
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 8, 16, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.lightbox button {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--sport-blue);
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  font-size: 1.7rem;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  margin-top: 70px;
  padding: 60px 0 34px;
  background:
    radial-gradient(circle at top right, rgba(247, 201, 72, 0.2), transparent 24rem),
    linear-gradient(180deg, var(--sport-blue), #07182c);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--sport-gold);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

/* =========================================================
   Utility Backgrounds
   ========================================================= */

.bg-white-card {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(17, 52, 93, 0.08);
  border-bottom: 1px solid rgba(17, 52, 93, 0.08);
}

.bg-blue {
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--sport-blue), #081b32);
  color: #fff;
}

.bg-blue .section-title,
.bg-blue .section-lede {
  color: #fff;
}

.bg-blue .section-lede {
  opacity: 0.86;
}

.warning-note {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(247, 201, 72, 0.24);
  border: 2px solid rgba(247, 201, 72, 0.55);
  color: #2d2d2d;
  font-weight: 800;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-menu {
    justify-content: flex-start;
  }

  .hero {
    min-height: 700px;
    background:
      linear-gradient(180deg, rgba(8, 20, 38, 0.92) 0%, rgba(8, 20, 38, 0.68) 62%, rgba(8, 20, 38, 0.32) 100%),
      url("/images/sport-home-hero-girl-named-sport-standing-on-school-field-comedy.jpg") center / cover no-repeat;
  }

  .strip-grid,
  .episode-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .character-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-feature,
  .split-feature.reverse {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--max-width));
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    padding: 64px 0 112px;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 5.4rem);
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .strip-grid,
  .episode-grid,
  .gallery-grid,
  .character-grid {
    grid-template-columns: 1fr;
  }

  .strip-card,
  .strip-card:nth-child(2),
  .strip-card:nth-child(3) {
    transform: none;
  }

  .character-card,
  .character-card img {
    min-height: 430px;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero-inner {
    padding: 86px 0 54px;
  }

  .article-card {
    padding: 24px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
.bg-blue .eyebrow {
  background: rgba(255, 255, 255, 0.96);
  color: var(--sport-blue);
  border-color: rgba(255, 255, 255, 0.9);
}

.bg-blue .quote-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--sport-ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.bg-blue .quote-card p {
  color: var(--sport-ink);
}

.bg-blue .warning-note {
  background: rgba(255, 255, 255, 0.96);
  color: var(--sport-ink);
  border-color: rgba(247, 201, 72, 0.75);
}

/* =========================================================
   Global readability + hero crop surgery
   Applies across Sport.co.jp
   ========================================================= */

/* Make page heroes stop cutting heads so aggressively */
.page-hero {
  background-position: center 38% !important;
}

@media (max-width: 640px) {
  .page-hero {
    background-position: center 32% !important;
  }
}

/* Standardize page hero overlay for better readability */
.page-hero {
  background-blend-mode: normal;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 25, 0.86) 0%, rgba(5, 13, 25, 0.58) 48%, rgba(5, 13, 25, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 13, 25, 0.68), rgba(5, 13, 25, 0.08));
  z-index: 1;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

/* Make all quote cards readable everywhere */
.quote-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--sport-ink);
  border: 1px solid rgba(17, 52, 93, 0.14);
  box-shadow: 0 24px 70px rgba(17, 52, 93, 0.16);
}

.quote-card p {
  color: var(--sport-ink);
  font-weight: 900;
}

/* Quote cards inside dark / blue sections must not inherit weak contrast */
.bg-blue .quote-card,
.bg-blue .warning-note,
.page-hero .quote-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--sport-ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.bg-blue .quote-card p,
.bg-blue .warning-note,
.page-hero .quote-card p {
  color: var(--sport-ink);
}

/* Make important standalone quotes larger and clearer */
.split-copy .quote-card {
  padding: 26px 30px;
  border-radius: 28px;
}

.split-copy .quote-card p {
  margin: 0;
  font-size: clamp(1.08rem, 1.55vw, 1.36rem);
  line-height: 1.75;
  letter-spacing: -0.015em;
}

/* Restore white text for blue section headings and lead copy */
.bg-blue .section-title,
.bg-blue .section-lede,
.bg-blue .split-copy h2,
.bg-blue .split-copy > p {
  color: #fff;
}

/* But keep cards inside blue sections dark-on-light */
.bg-blue .quote-card p,
.bg-blue .warning-note {
  color: var(--sport-ink);
}

/* Eyebrows on dark backgrounds */
.bg-blue .eyebrow,
.page-hero .hero-kicker {
  background: rgba(255, 255, 255, 0.96);
  color: var(--sport-blue);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Footer year fallback: useful if JS fails */
.footer-bottom [data-current-year]:empty::before {
  content: "2026";
}
