/* ===============
   World Cup Matchday 2026
   Light green Korean editorial landing
   =============== */

:root {
  --bg: #eef7ef;
  --bg-soft: #f7fbf7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --line: rgba(76, 132, 92, 0.16);
  --line-strong: rgba(33, 107, 55, 0.24);
  --text: #163322;
  --text-soft: #597061;
  --title: #0e2417;
  --green: #1e7a3d;
  --green-deep: #0f5d2b;
  --green-bright: #2ca862;
  --green-soft: #dff3e4;
  --mint: #92d3aa;
  --gold: #f0c568;
  --sea: #6ec7b8;
  --shadow-lg: 0 32px 80px rgba(21, 62, 35, 0.14);
  --shadow-md: 0 20px 50px rgba(21, 62, 35, 0.1);
  --shadow-sm: 0 10px 24px rgba(21, 62, 35, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 15px;
  --container: min(1280px, calc(100vw - 48px));
  --hero-height: 100svh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(151, 214, 165, 0.24), transparent 20%),
    radial-gradient(circle at 90% 8%, rgba(124, 198, 146, 0.18), transparent 16%),
    linear-gradient(180deg, #f9fdf8 0%, #edf7ef 24%, #ecf5ef 100%);
}

img { display: block; max-width: 100%; }
button, a, input { font: inherit; }
a { color: inherit; text-decoration: none; }

.container { width: var(--container); margin: 0 auto; }
.page-shell { overflow-x: clip; }

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 80;
  transition: transform .25s ease;
}
.site-header.is-scrolled .header-row {
  box-shadow: 0 20px 40px rgba(18, 56, 31, 0.13);
  background: rgba(255,255,255,0.92);
  border-color: rgba(33, 107, 55, 0.18);
}
.header-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 18px 0 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(33, 107, 55, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand__mark { width: 52px; height: 52px; flex: 0 0 52px; }
.brand__copy {
  display: grid;
  line-height: 1;
  gap: 5px;
}
.brand__copy strong {
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.brand__copy small {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
.site-nav a {
  position: relative;
  font-weight: 700;
  color: rgba(22, 51, 34, 0.8);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #79cb92);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
  font-weight: 800;
}
.header-cta,
.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #218444, #0f5c2a);
  box-shadow: 0 18px 30px rgba(30, 122, 61, 0.26);
}
.header-cta:hover,
.btn:hover { transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,0.74);
  border-color: rgba(16, 93, 43, 0.18);
  color: var(--green-deep);
}
.btn--full { width: 100%; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 15px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--title);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  padding: 118px 0 34px;
  display: flex;
  align-items: stretch;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(114, 197, 126, 0.28), transparent 18%),
    linear-gradient(90deg, rgba(247,252,247,.96) 0%, rgba(242,249,242,.93) 30%, rgba(233,246,235,.68) 52%, rgba(223, 244, 227, .22) 100%);
}
.hero__grid {
  position: relative;
  z-index: 2;
  min-height: calc(var(--hero-height) - 152px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 40px;
  align-items: center;
}
.hero__content {
  padding: 50px 0 30px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(16, 93, 43, 0.12);
  color: var(--green);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero h1 {
  margin: 20px 0 20px;
  font-size: clamp(3rem, 5.7vw, 3.8rem);
  line-height: .93;
  letter-spacing: -.05em;
  color: var(--title);
}
.hero__lead {
  margin: 0;
  max-width: 64ch;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-soft);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.stat-card,
.group-card,
.odds-card,
.analysis-card,
.ticket-card,
.channel-card,
.schedule-row,
.live-card {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(16, 93, 43, 0.1);
  box-shadow: var(--shadow-sm);
}
.stat-card {
  padding: 18px 16px;
  border-radius: 18px;
  display: grid;
  gap: 4px;
  min-height: 96px;
  align-content: start;
}
.stat-card__icon { font-size: 1.3rem; }
.stat-card strong { font-size: 1.3rem; }
.stat-card span:last-child { color: var(--text-soft); font-size: .9rem; }

.card-panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(236,247,239,0.75));
  border: 1px solid rgba(16, 93, 43, 0.08);
}
.hero__visual {
  /*min-height: min(72vh, 820px);*/
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.countdown-card {
  position: absolute;
  left: 30px;
  bottom: 26px;
  right: 30px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(12, 47, 23, 0.7);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  backdrop-filter: blur(14px);
}
.countdown-card__label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(87, 222, 135, 0.18);
  color: #bfffd2;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.countdown-card__date {
  font-size: 1.35rem;
  font-weight: 900;
}
.countdown-card__meta {
  margin-top: 5px;
  color: rgba(255,255,255,0.82);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 42px;
  height: 72px;
  border: 1px solid rgba(16, 93, 43, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  display: grid;
  place-items: center;
  z-index: 2;
}
.scroll-cue span {
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  animation: nudge 1.2s infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateY(-5px); opacity: .55; }
  50% { transform: translateY(6px); opacity: 1; }
}

.section {
  position: relative;
  padding: 88px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.section-head--tight { margin-bottom: 18px; }
.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -.04em;
  line-height: .95;
}
.text-link {
  color: var(--green);
  font-weight: 800;
}

.section--groups {
  padding-top: 48px;
}
.carousel-controls {
  display: flex;
  gap: 10px;
}
.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(16, 93, 43, 0.14);
  background: rgba(255,255,255,0.82);
  color: var(--green-deep);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.group-carousel {
  overflow: hidden;
  padding: 6px 0 6px;
}
.group-carousel__track {
  display: flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
}
.group-card {
  min-width: calc((100% - 54px) / 4);
  border-radius: 26px;
  padding: 22px;
  background:
    radial-gradient(circle at 85% 15%, rgba(132, 218, 150, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(241,248,242,0.92));
}
.group-card h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
}
.group-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.group-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-weight: 700;
}
.flag {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f7fbf8;
  border: 1px solid rgba(16, 93, 43, 0.08);
}

.odds-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.odds-card {
  min-height: 214px;
  border-radius: 28px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(242,248,243,0.94));
}
.odds-card--featured {
  background:
    radial-gradient(circle at 85% 18%, rgba(129, 220, 141, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(234,247,237,0.96));
}
.odds-card__rank {
  font-size: .88rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: .12em;
}
.odds-card__team {
  font-size: 1.32rem;
  font-weight: 900;
}
.odds-card__team span {
  margin-right: 9px;
}
.odds-card__price {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.05em;
}
.odds-card__trend {
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.55;
}
.odds-card__trend.up { color: #1f8c44; }
.odds-card__trend.down { color: #c66b46; }
.odds-card__trend.flat { color: #72867c; }

.analysis-card {
  border-radius: 32px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(240,249,241,0.95)),
    url('assets/tactics-lines.svg') right bottom / 280px auto no-repeat;
}
.analysis-copy {
  position: relative;
  max-width: 1000px;
  transition: max-height .28s ease;
}
.analysis-copy.is-collapsed {
  max-height: 170px;
  overflow: hidden;
}
.analysis-copy.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(245,251,246,0), rgba(245,251,246,1));
}
.analysis-copy p,
.analysis-copy li {
  color: var(--text-soft);
  line-height: 1.85;
}
.analysis-copy h3 {
  margin-top: 26px;
  font-size: 1.22rem;
}
.expand-btn {
  border: 1px solid rgba(16, 93, 43, 0.16);
  background: rgba(255,255,255,.8);
  color: var(--green);
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.article-list {
  padding-left: 1.1rem;
}

.article-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(16, 93, 43, 0.12);
  background: rgba(255,255,255,0.88);
}
.article-table thead {
  background: #edf7ef;
}
.article-table th,
.article-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(16, 93, 43, 0.08);
}
.article-table th {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
}
.article-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-list {
  display: grid;
  gap: 14px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 1.15fr 1.5fr 1.2fr .55fr;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(243,248,243,0.94));
}
.schedule-row__date,
.schedule-row__fixture,
.schedule-row__venue {
  display: grid;
  gap: 4px;
}
.schedule-row__date span,
.schedule-row__venue span {
  color: var(--text-soft);
}
.schedule-row__capacity {
  justify-self: end;
  font-weight: 900;
  color: var(--green);
}
.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(16, 93, 43, 0.1);
  color: var(--text-soft);
  font-size: .82rem;
  font-weight: 800;
}
.badge--green {
  background: #e3f6e8;
  color: #19713a;
}
.badge--mint {
  background: #e0f7f3;
  color: #137867;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.ticket-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,249,243,0.95));
}
.ticket-card__top {
  position: relative;
  min-height: 122px;
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: start;
  background-size: cover;
}
.ticket-card__top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,34,17,0.2), rgba(8,34,17,0.58));
}
.ticket-card__top > * {
  position: relative;
  z-index: 1;
}
.ticket-card__top strong {
  font-size: 1.2rem;
}
.ticket-card__top--city { background: linear-gradient(135deg, #2a9d53, #0e5d2a), url('assets/card-wave.svg') center/cover no-repeat; }
.ticket-card__top--gold { background: linear-gradient(135deg, #cfa54a, #8b6b27), url('assets/card-wave.svg') center/cover no-repeat; }
.ticket-card__top--sea { background: linear-gradient(135deg, #2f9682, #156558), url('assets/card-wave.svg') center/cover no-repeat; }
.ticket-card__top--mint { background: linear-gradient(135deg, #44a267, #1d7240), url('assets/card-wave.svg') center/cover no-repeat; }

.ticket-tag {
  display: inline-flex;
  min-height: 30px;
  padding: 0 11px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 800;
  font-size: .78rem;
}
.ticket-card__body {
  display: grid;
  gap: 14px;
  padding: 20px;
}
.ticket-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
}
.ticket-card__body p {
  margin: 0;
  color: var(--text-soft);
}
.ticket-meta {
  display: grid;
  gap: 6px;
  color: var(--text-soft);
  font-weight: 600;
}
.ticket-status {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}
.ticket-status--good {
  background: #e4f6e9;
  color: #1a7c40;
}
.ticket-status--low {
  background: #fff2dc;
  color: #b87217;
}

.broadcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 18px;
}
.live-card {
  position: relative;
  min-height: 360px;
  padding: 26px;
  border-radius: 34px;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 31, 17, 0.12), rgba(6,31,17,0.4)),
    url('assets/live-panel.svg') center/cover no-repeat,
    linear-gradient(135deg, #0d6c33, #093f1e);
}
.live-card__badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 82, 82, 0.9);
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .08em;
}
.live-card__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 80px auto 18px;
  text-align: center;
}
.live-card__teams span {
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 900;
}
.live-card__teams strong {
  font-size: 2rem;
}
.live-card p {
  text-align: center;
  color: rgba(255,255,255,0.86);
}
.live-card__play {
  margin: 26px auto 0;
  display: inline-flex;
  min-height: 56px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.broadcast-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.channel-card {
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(242,248,243,0.92));
}
.channel-card--wide {
  grid-column: 1 / -1;
}
.channel-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}
.channel-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.75;
}

.site-footer {
  position: relative;
  padding: 42px 0 48px;
  background:
    linear-gradient(180deg, rgba(242,249,243,0), rgba(226,244,230,0.96)),
    url('assets/footer-wave.svg') right bottom / 320px auto no-repeat;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .7fr;
  gap: 28px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 93, 43, 0.12);
}
.footer-brand {
  display: flex;
  gap: 16px;
  align-items: start;
}
.footer-brand strong,
.footer-links h3,
.footer-social h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer-brand p,
.footer-links a {
  color: var(--text-soft);
}
.footer-links {
  display: grid;
  gap: 10px;
}
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(16, 93, 43, 0.12);
  font-weight: 800;
  color: var(--green);
}

@media (max-width: 1180px) {
  .hero__grid,
  .broadcast-grid,
  .odds-grid,
  .ticket-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 520px;
  }
  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .group-card { min-width: calc((100% - 18px) / 2); }
  .schedule-row {
    grid-template-columns: 1fr 1fr;
  }
  .schedule-row__capacity {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 24px, 100vw - 24px);
  }
  .site-header {
    top: 12px;
  }
  .header-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 14px;
    min-height: 72px;
  }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(16, 93, 43, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
  }
  .site-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero {
    min-height: auto;
    padding-top: 110px;
  }
  .hero__grid {
    min-height: auto;
    gap: 24px;
  }
  .hero h1 {
    max-width: 11ch;
  }
  .group-card { min-width: 100%; }
  .broadcast-side {
    grid-template-columns: 1fr;
  }
  .analysis-card,
  .ticket-card,
  .live-card,
  .channel-card,
  .schedule-row {
    border-radius: 24px;
  }
  .scroll-cue { display: none; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .hero__stats,
  .schedule-row,
  .ticket-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand__copy small { letter-spacing: .08em; }
  .analysis-card { padding: 22px; }
  .schedule-row { padding: 18px; }
}


/* Groups dropdown and article refinements */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown::after { content: ""; position: absolute; top: 100%; left: -18px; right: -18px; height: 22px; z-index: 19; }
.nav-dropdown__toggle { position: relative; border: 0; background: transparent; padding: 0; color: rgba(22, 51, 34, 0.8); font-weight: 700; cursor: pointer; }
.nav-dropdown__toggle::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); transition: transform .2s ease; }
.nav-dropdown__menu { position: absolute; z-index: 20; top: calc(100% + 18px); left: 50%; min-width: 220px; display: grid; gap: 4px; padding: 12px; border-radius: 22px; background: rgba(255,255,255,0.96); border: 1px solid rgba(16, 93, 43, 0.12); box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown.is-open .nav-dropdown__toggle::after, .nav-dropdown:hover .nav-dropdown__toggle::after, .nav-dropdown:focus-within .nav-dropdown__toggle::after { transform: translateY(1px) rotate(225deg); }
.nav-dropdown__menu a { display: block; padding: 10px 12px; border-radius: 14px; white-space: nowrap; font-size: .94rem; }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a:focus-visible, .nav-dropdown__menu a.is-active { background: #e5f6e9; color: var(--green); }
.nav-dropdown__menu a::after { display: none; }
.site-nav a.is-active::after { transform: scaleX(1); }
.group-card { color: inherit; text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; }
.group-card:hover, .group-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.analysis-copy h2 { margin: 34px 0 14px; font-size: clamp(1.55rem, 2.4vw, 2.2rem); letter-spacing: -.035em; line-height: 1.08; }
.analysis-copy h2:first-child { margin-top: 0; }
.analysis-copy figure { margin: 24px 0 26px; overflow: hidden; border-radius: 28px; border: 1px solid rgba(16, 93, 43, 0.1); background: rgba(255,255,255,0.86); box-shadow: var(--shadow-sm); }
.analysis-copy figure img { width: 100%; height: auto; object-fit: cover; }
.analysis-copy figcaption { padding: 12px 16px 14px; color: var(--text-soft); font-size: .92rem; line-height: 1.55; }
.toc-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 20px; margin: 20px 0 26px; padding: 18px 18px 18px 38px; border-radius: 22px; background: rgba(255,255,255,0.72); border: 1px solid rgba(16, 93, 43, 0.08); }
@media (max-width: 860px) { .nav-dropdown { width: 100%; display: grid; gap: 10px; } .nav-dropdown::after { display: none; } .nav-dropdown__toggle { width: 100%; text-align: left; } .nav-dropdown__menu { position: static; min-width: 0; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); opacity: 1; visibility: visible; pointer-events: auto; transform: none; box-shadow: none; background: rgba(237,247,239,0.72); padding: 10px; } .nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { transform: none; } .toc-list { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .nav-dropdown__menu { grid-template-columns: 1fr; } }


/* Editorial page extensions */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: .92rem;
}
.breadcrumbs a { color: var(--green); }
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 18px;
}
.table-scroll .article-table { margin-top: 0; min-width: 720px; }
.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 34px 0 8px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(16, 93, 43, 0.12);
  background: radial-gradient(circle at 88% 12%, rgba(144, 219, 163, 0.24), transparent 25%), linear-gradient(135deg, rgba(255,255,255,0.96), rgba(231,247,235,0.96));
  box-shadow: var(--shadow-sm);
}
.page-cta--compact { grid-template-columns: minmax(0, 1fr) auto; margin: 24px 0; }
.page-cta h2,
.page-cta h3 { margin: 10px 0 8px; letter-spacing: -.03em; line-height: 1.04; }
.page-cta p { margin: 0; color: var(--text-soft); line-height: 1.75; }
.page-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.notice-card {
  margin: 20px 0 24px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(16, 93, 43, 0.12);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
}
.notice-card strong { display: block; margin-bottom: 8px; color: var(--green-deep); font-size: 1.1rem; }
.notice-card p { margin: 0; }
.notice-card--responsible { border-left: 6px solid var(--gold); }
.notice-card--safety { border-left: 6px solid var(--green); }
.schedule-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  gap: 10px;
  align-items: stretch;
  margin: 24px 0 28px;
}
.flow-card {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 150px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,248,242,0.94));
  border: 1px solid rgba(16, 93, 43, 0.11);
  box-shadow: var(--shadow-sm);
}
.flow-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 900;
}
.flow-card strong { font-size: 1rem; line-height: 1.15; }
.flow-card small { color: var(--text-soft); font-weight: 700; line-height: 1.45; }
.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 900;
}
.broadcast-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 30px;
}
.broadcast-card-link {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16, 93, 43, 0.1);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.broadcast-card-link:hover,
.broadcast-card-link:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.broadcast-card-link picture { aspect-ratio: 1.55; overflow: hidden; }
.broadcast-card-link img { width: 100%; height: 100%; object-fit: cover; }
.broadcast-card-link__body { display: grid; gap: 10px; padding: 20px; }
.broadcast-card-link__body h3 { margin: 0; font-size: 1.2rem; }
.broadcast-card-link__body p { margin: 0; color: var(--text-soft); line-height: 1.7; }
.broadcast-card-link__body span { color: var(--green); font-weight: 900; }
.faq-block { display: grid; gap: 14px; margin: 18px 0 28px; }
.faq-item {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(16, 93, 43, 0.1);
  background: rgba(255,255,255,0.72);
}
.faq-item h3 { margin-top: 0; }
.internal-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 28px;
}
.internal-link-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(16, 93, 43, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(239,248,242,0.92));
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.internal-link-card:hover,
.internal-link-card:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.internal-link-card strong { color: var(--green-deep); font-size: 1.08rem; }
.internal-link-card span { color: var(--text-soft); line-height: 1.55; }
@media (max-width: 1180px) {
  .schedule-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flow-arrow { display: none; }
  .broadcast-card-grid,
  .internal-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .page-cta,
  .page-cta--compact { grid-template-columns: 1fr; }
  .page-cta__actions { justify-content: flex-start; }
  .schedule-flow,
  .broadcast-card-grid,
  .internal-link-grid { grid-template-columns: 1fr; }
  .flow-card { min-height: auto; }
}
@media (min-width: 1181px) {
  .schedule-flow { display: flex; }
  .schedule-flow .flow-card { flex: 1 1 0; min-width: 0; }
  .schedule-flow .flow-arrow { flex: 0 0 18px; align-self: center; }
}


/* Stadium guide navigation and page refinements */
.nav-dropdown__toggle.is-active { color: var(--green-deep); }
.nav-dropdown--stadiums .nav-dropdown__menu {
  min-width: min(680px, calc(100vw - 56px));
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  max-height: min(70vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-dropdown::after { height: 30px; }
.stadium-hero .hero__visual picture { border-radius: 26px; overflow: hidden; }
.related-stadium-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.internal-link-card span { color: var(--text-soft); line-height: 1.55; }
.stadium-index-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stadium-index-card { overflow: hidden; padding: 0; }
.stadium-index-card img { width: 100%; aspect-ratio: 1.38; object-fit: cover; }
.stadium-index-card strong, .stadium-index-card span { padding-left: 18px; padding-right: 18px; }
.stadium-index-card strong { padding-top: 16px; }
.stadium-index-card span { padding-bottom: 18px; }
.toc-list a { color: var(--green-deep); font-weight: 800; }
@media (max-width: 1180px) {
  .stadium-index-grid, .related-stadium-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .nav-dropdown__menu { display: none; }
  .nav-dropdown.is-open .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu { display: grid; }
  .nav-dropdown--stadiums .nav-dropdown__menu { grid-template-columns: 1fr; min-width: 0; max-height: 45vh; }
}
@media (max-width: 620px) {
  .stadium-index-grid, .related-stadium-grid { grid-template-columns: 1fr; }
}

/* Team preview navigation and content */
.nav-dropdown--teams .nav-dropdown__menu {
  min-width: min(860px, calc(100vw - 56px));
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  max-height: min(72vh, 620px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.site-nav a.is-active { color: var(--green-deep); }
.team-content-figure { margin: 28px 0 34px; overflow: hidden; }
.team-content-figure picture { display: block; aspect-ratio: 1.6; overflow: hidden; }
.team-content-figure img { width: 100%; height: 100%; object-fit: cover; }
.team-content-figure figcaption { margin: 0; padding: 14px 18px 18px; color: var(--text-soft); font-weight: 700; line-height: 1.55; background: rgba(255,255,255,0.84); }
.team-index-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-index-card img { width: 100%; aspect-ratio: 1.6; object-fit: cover; }
.team-index-card strong, .team-index-card span { padding-left: 18px; padding-right: 18px; }
.team-index-card strong { padding-top: 16px; }
.team-index-card span { padding-bottom: 18px; }
@media (max-width: 1180px) {
  .nav-dropdown--teams .nav-dropdown__menu, .team-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .nav-dropdown--teams .nav-dropdown__menu { grid-template-columns: 1fr; min-width: 0; max-height: 48vh; }
}
@media (max-width: 620px) { .team-index-grid { grid-template-columns: 1fr; } }


/* Bilingual language switcher */
.language-switcher{display:inline-flex;align-items:center;gap:7px;padding:6px 8px;border-radius:999px;background:rgba(255,255,255,.78);border:1px solid rgba(16,93,43,.14);font-weight:900;color:var(--text-soft)}
.language-switcher .lang-link{padding:4px 7px;border-radius:999px;color:var(--green-deep)}
.language-switcher .lang-link.is-active{background:var(--green);color:#fff}
.language-switcher .lang-link::after{display:none}
@media (min-width:861px){.site-nav{gap:clamp(12px,1.65vw,26px)}}
@media (max-width:860px){.language-switcher{margin-top:4px}.site-nav .language-switcher{width:auto}}
