:root {
  --ink: #101820;
  --muted: #687382;
  --line: #d9e1ea;
  --surface: #f4f7fb;
  --navy: #061c38;
  --blue: #0a72ce;
  --cyan: #49d7ff;
  --green: #b6ff2e;
  --purple: #5c43d6;
  --orange: #ff8a22;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, "Noto Sans KR", sans-serif;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 70px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(6, 28, 56, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 58px;
  padding: 0;
}

.brand img {
  width: 52px;
  height: auto;
}

.federation-brand {
  gap: 12px;
  min-width: 248px;
}

.federation-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-wordmark span:last-child {
  color: var(--cyan);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--green); }

.inline-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 10px;
  background: rgba(6, 28, 56, 0.98);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0,0,0,0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  padding: 11px 12px;
  color: rgba(255,255,255,0.82);
  border-radius: 6px;
}

.nav-submenu a:hover {
  color: var(--navy);
  background: var(--green);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.language-switcher button {
  min-width: 38px;
  height: 32px;
  padding: 0 8px;
  color: rgba(255,255,255,0.74);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--navy);
  background: var(--green);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
}

.header-action,
.primary-button {
  color: var(--navy);
  background: var(--green);
}

.secondary-button {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.34);
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,13,28,0.94) 0%, rgba(6,28,56,0.68) 46%, rgba(6,28,56,0.22) 100%);
}

.motion-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-media {
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 88px 0 178px;
}

.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0 22px;
  pointer-events: none;
}

.hero-arrow,
.hero-dots button {
  pointer-events: auto;
  cursor: pointer;
}

.hero-arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.hero-arrow:hover {
  color: var(--navy);
  background: var(--green);
  border-color: var(--green);
}

.hero-dots {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 146px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(6,28,56,0.42);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-dots button {
  width: 34px;
  height: 5px;
  padding: 0;
  background: rgba(255,255,255,0.42);
  border: 0;
  border-radius: 999px;
}

.hero-dots button.is-active {
  background: var(--green);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: clamp(34px, 6.6vw, 86px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 7.4vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-inner h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 7.4vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.22;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  line-height: 1.72;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ranking-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.ranking-board {
  padding: 24px;
  background: rgba(6, 28, 56, 0.62);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.ranking-board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.ranking-board-head span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ranking-board-head strong {
  font-size: 24px;
  line-height: 1;
}

.ranking-board ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-board li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
}

.ranking-board li b {
  color: var(--green);
  font-size: 14px;
}

.ranking-board li span {
  font-weight: 900;
  word-break: keep-all;
}

.ranking-board li em {
  color: rgba(255,255,255,0.68);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ranking-board p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.58;
  word-break: keep-all;
}

.hero-scoreboard {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: min(1180px, calc(100% - 44px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-scoreboard div {
  min-height: 96px;
  padding: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-scoreboard span,
.schedule-item span,
.division-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-scoreboard strong {
  display: block;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.18;
  white-space: nowrap;
}

.ticker {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.ticker a {
  flex: 1 0 180px;
  padding: 18px 22px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.ticker a:hover { background: var(--surface); }

.intro-section,
.section,
.partners-section {
  padding: 78px clamp(18px, 5vw, 72px);
}

.portal-programs-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
}

.portal-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.portal-program-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(217,225,234,0.86);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(6, 28, 56, 0.08);
}

.portal-program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portal-program-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.portal-program-card span {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-program-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 24px;
}

.portal-program-card p,
.portal-program-card li,
.portal-program-card dd {
  color: var(--muted);
  line-height: 1.62;
  word-break: keep-all;
}

.portal-program-card strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.portal-program-card dl {
  display: grid;
  gap: 8px;
  margin: 8px 0 14px;
}

.portal-program-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.portal-program-card dt {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-program-card dd {
  margin: 0;
  text-align: right;
}

.portal-program-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 18px;
}

.portal-program-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.portal-program-card a:hover {
  background: var(--blue);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}

.intro-section p,
.division-grid p,
.stats-band p {
  color: var(--muted);
  line-height: 1.72;
  word-break: keep-all;
}

.intro-section > p {
  margin: 34px 0 0;
  font-size: 18px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stats-band article {
  min-height: 190px;
  padding: 34px clamp(18px, 4vw, 48px);
  background: var(--surface);
}

.stats-band span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--purple);
  border-radius: 8px;
  font-weight: 900;
}

.stats-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.dark-section {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-source {
  display: inline-flex;
  margin-top: 2px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.segmented button {
  min-height: 40px;
  padding: 0 15px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.segmented button.is-active {
  color: var(--navy);
  background: var(--green);
}

.schedule-list {
  display: grid;
  gap: 10px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  color: inherit;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
}

.schedule-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(182,255,46,0.42);
}

.schedule-item span b {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
}

.schedule-item small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 7px;
  color: var(--navy);
  background: var(--green);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.schedule-item strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.schedule-item p {
  margin: 5px 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.schedule-item em {
  justify-self: end;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.division-section { background: var(--white); }

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

.division-grid article {
  min-height: 250px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.division-grid span { color: var(--purple); }

.division-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  word-break: keep-all;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.media-news-section {
  color: var(--white);
  background: #044969;
}

.media-news-section .eyebrow {
  color: var(--green);
}

.media-news-section .section-head {
  align-items: start;
}

.media-read-more {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.78);
}

.media-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
}

.media-news-card {
  display: flex;
  flex-direction: column;
  min-height: 338px;
  overflow: hidden;
  color: var(--ink);
  background: #f7f8fa;
  border: 0;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

.media-news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.media-news-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  padding: 0 16px 16px;
}

.media-news-card.is-featured {
  grid-column: span 1;
  min-height: 338px;
}

.media-news-card.is-featured img {
  min-height: 0;
}

.media-news-card span {
  display: inline-flex;
  width: calc(100% + 32px);
  min-height: 26px;
  align-items: center;
  margin: 0 -16px 12px;
  padding: 0 16px;
  color: #0071bc;
  background: #dceef8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.media-news-card h3 {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.24;
  word-break: keep-all;
}

.media-news-card:not(.is-featured) h3 {
  font-size: 17px;
}

.media-news-card time {
  margin-top: auto;
  color: #66717d;
  font-size: 13px;
}

.media-news-card p {
  display: none;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  word-break: keep-all;
}

.video-section {
  color: var(--white);
  background: #044969;
}

.video-section .eyebrow {
  color: var(--green);
}

.video-section .section-head {
  align-items: start;
}

.video-section .text-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.78);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 268px;
  color: var(--ink);
  background: #f7f8fa;
  border: 0;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

.video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: transparent;
}

.video-card div {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 16px 16px;
}

.video-card span {
  display: inline-flex;
  width: calc(100% + 32px);
  min-height: 26px;
  align-items: center;
  margin: 0 -16px 12px;
  padding: 0 16px;
  color: #0071bc;
  background: #dceef8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-card h3 {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.24;
  word-break: keep-all;
}

.video-card p {
  display: none;
  margin: 0;
}

.gallery-section {
  color: var(--white);
  background: #111821;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.gallery-grid .wide {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--navy);
  background: var(--green);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.gallery-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  color: var(--navy);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.gallery-more a:hover {
  background: var(--white);
}

.partners-section {
  padding-inline: clamp(18px, 5vw, 72px);
  text-align: center;
  background: #eef3f8;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: clamp(18px, 3vw, 36px) clamp(24px, 4vw, 48px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding: 0;
}

.partner-grid a,
.partner-logo-item {
  display: grid;
  place-items: center;
  min-height: 78px;
}

.partner-grid img {
  width: min(156px, 100%);
  max-height: 58px;
  object-fit: contain;
}

.partner-grid a:nth-child(2) img {
  width: min(112px, 100%);
  max-height: 54px;
}

.partner-grid a:nth-child(1) img {
  width: min(178px, 100%);
  max-height: 70px;
}

.partner-grid a:nth-child(3) img,
.partner-grid .partner-logo-item:nth-child(5) img {
  width: min(170px, 100%);
  max-height: 64px;
}

.partners-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.partners-view-all:hover {
  background: var(--blue);
}

.rules-section {
  background: #f7fafc;
}

.standard-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.standard-grid article,
.contact-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.standard-grid strong,
.contact-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.standard-grid p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  word-break: keep-all;
}

.contact-section {
  color: var(--white);
  background: #062742;
}

.contact-section .eyebrow {
  color: var(--green);
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
}

.contact-grid article {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.contact-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.contact-grid strong a {
  color: inherit;
  text-decoration: none;
}

.contact-grid strong a:hover {
  color: var(--green);
}

.contact-grid p {
  color: rgba(255,255,255,0.72);
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 120px clamp(18px, 5vw, 72px) 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,13,28,0.94), rgba(6,28,56,0.46)),
    var(--page-hero-image, url("./assets/pnr-hero.jpg")) center / cover;
}

.page-hero .eyebrow {
  color: var(--green);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: 20px;
  line-height: 1.68;
  word-break: keep-all;
}

.page-meta-grid,
.portal-detail-grid,
.feature-card-grid,
.faq-grid,
.exchange-network-grid {
  display: grid;
  gap: 14px;
}

.page-meta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.page-meta-grid div,
.portal-detail-card,
.feature-card,
.faq-grid article,
.exchange-network-card,
.official-action-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-meta-grid div {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.page-meta-grid span,
.portal-detail-card span,
.feature-card span,
.exchange-network-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-meta-grid span {
  color: var(--cyan);
}

.page-meta-grid strong,
.portal-detail-card strong,
.feature-card strong,
.exchange-network-card strong,
.official-action-panel strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.22;
}

.page-meta-grid strong {
  color: var(--white);
}

.portal-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-detail-card p,
.feature-card p,
.faq-grid p,
.exchange-network-card p,
.official-action-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
  word-break: keep-all;
}

.feature-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 8px;
}

.international-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 14px;
  align-items: stretch;
}

.event-feature-card {
  display: flex;
  flex-direction: column;
}

.event-feature-card img {
  aspect-ratio: 1 / 1;
}

.event-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(6,28,56,0.22);
  border-radius: 8px;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.event-video-card > div:last-child {
  padding: 26px;
}

.event-video-card span,
.match-format-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-video-card strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.event-video-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.event-video-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.international-detail-grid {
  margin-bottom: 16px;
}

.match-format-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.match-format-list article {
  min-height: 118px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.match-format-list span {
  color: var(--blue);
}

.match-format-list strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.24;
}

.source-link-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-link-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.source-link-panel a:hover {
  color: var(--navy);
  background: var(--green);
  border-color: var(--green);
}

.content-band {
  background: #f7fafc;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.info-list b {
  color: var(--navy);
}

.info-list span {
  color: var(--muted);
  text-align: right;
}

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

.faq-grid h3 {
  color: var(--navy);
  font-size: 20px;
}

.exchange-network-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.official-action-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  background: var(--navy);
  border-color: var(--navy);
}

.official-action-panel strong,
.official-action-panel p {
  color: var(--white);
}

.official-action-panel a,
.disabled-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--navy);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.disabled-button {
  opacity: 0.72;
  cursor: default;
}

.partners-page-hero {
  min-height: 440px;
  display: grid;
  align-content: end;
  padding: 92px clamp(18px, 5vw, 72px) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,13,28,0.92), rgba(6,28,56,0.42)),
    url("./assets/pnr-drone-02.jpg") center / cover;
}

.partners-page-hero .eyebrow {
  color: var(--green);
}

.partners-page-hero h1 {
  margin-bottom: 12px;
}

.partners-page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 20px;
  line-height: 1.7;
  word-break: keep-all;
}

.partners-page-section {
  padding: 78px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.partner-supporters {
  background: #eef3f8;
}

.all-partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.all-partner-grid.compact {
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  width: 100%;
  max-width: 100%;
}

.all-partner-grid a,
.partner-logo-item {
  display: grid;
  place-items: center;
  min-height: 108px;
}

.all-partner-grid img,
.partner-logo-item img {
  width: min(190px, 100%);
  max-height: 72px;
  object-fit: contain;
}

.all-partner-grid.compact img {
  width: min(210px, 100%);
  max-height: 78px;
}

.all-partner-grid a:nth-child(2) img {
  width: min(122px, 100%);
  max-height: 62px;
}

.all-partner-grid a:nth-child(1) img {
  width: min(196px, 100%);
  max-height: 76px;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255,255,255,0.72);
  background: #06101d;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.footer-legal {
  max-width: 820px;
}

.footer-legal span {
  display: block;
  line-height: 1.55;
  word-break: keep-all;
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

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

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

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  gap: 24px;
  align-items: start;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  text-align: right;
  word-break: keep-all;
}

.footer-contact a {
  color: var(--cyan);
  font-weight: 900;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
}

.footer-social a:hover {
  color: var(--navy);
  background: var(--green);
  border-color: var(--green);
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a[aria-label="YouTube"] svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.footer-social a[aria-label="YouTube"] svg path:last-child {
  fill: #06101d;
  stroke: none;
}

.footer-social a[aria-label="YouTube"]:hover svg path:last-child {
  fill: var(--green);
}

.info-page-hero {
  padding: 96px clamp(18px, 5vw, 72px) 64px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,13,28,0.94), rgba(6,28,56,0.56)),
    url("./assets/pnr-hero.jpg") center / cover;
}

.info-page-hero .eyebrow {
  color: var(--green);
}

.info-page-hero h1 {
  max-width: 980px;
  margin-bottom: 14px;
}

.info-page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 20px;
  line-height: 1.7;
  word-break: keep-all;
}

.info-page-content {
  display: grid;
  gap: 20px;
  padding: 72px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.info-panel {
  max-width: 1040px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 38px);
}

.info-panel p,
.info-panel li {
  color: var(--muted);
  line-height: 1.72;
  word-break: keep-all;
}

.info-panel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.document-card,
.org-card,
.standard-document-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.document-card span,
.org-card span,
.standard-document-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.document-card strong,
.org-card strong,
.standard-document-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.18;
}

.document-card p,
.org-card p,
.standard-document-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
  word-break: keep-all;
}

.org-chart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.org-card.is-lead {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255,255,255,0.12);
}

.org-card.is-lead span {
  color: var(--green);
}

.org-card.is-lead strong {
  color: var(--white);
}

.org-card.is-lead p {
  color: rgba(255,255,255,0.72);
}

.standard-document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.standard-document-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.72;
}

.reference-note {
  max-width: 1040px;
  padding: 24px 28px;
  color: rgba(255,255,255,0.78);
  background: var(--navy);
  border-radius: 8px;
  line-height: 1.72;
  word-break: keep-all;
}

.reference-note a {
  color: var(--green);
  font-weight: 900;
}

.news-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 680px;
  color: var(--white);
  background: var(--navy);
}

.news-article-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.news-article-copy {
  align-self: end;
  padding: 120px clamp(22px, 5vw, 72px) 72px;
}

.news-article-copy .eyebrow {
  color: var(--green);
}

.news-article-copy h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.8vw, 96px);
  line-height: 0.95;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.74);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 21px;
  line-height: 1.68;
  word-break: keep-all;
}

.news-article-body {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 0.36fr);
  gap: clamp(28px, 6vw, 80px);
  padding: 76px clamp(20px, 6vw, 88px);
  background: var(--white);
}

.news-story p {
  margin: 0 0 22px;
  color: #334054;
  font-size: 19px;
  line-height: 1.82;
  word-break: keep-all;
}

.news-story h2 {
  margin: 42px 0 16px;
  font-size: clamp(28px, 4vw, 44px);
}

.news-side-panel {
  align-self: start;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-side-panel h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.news-side-panel a {
  display: block;
  padding: 12px 0;
  color: var(--blue);
  font-weight: 900;
  border-top: 1px solid var(--line);
}

@media (max-width: 1020px) {
  .site-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.14);
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .site-header.is-open .nav-group {
    display: grid;
  }

  .site-header.is-open .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 8px 14px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-open .nav-submenu a {
    padding: 10px 0;
    color: rgba(255,255,255,0.68);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hero-scoreboard,
  .portal-program-grid,
  .division-grid,
  .video-grid,
  .standard-grid,
  .contact-grid,
  .page-meta-grid,
  .portal-detail-grid,
  .international-feature-grid,
  .match-format-list,
  .feature-card-grid,
  .exchange-network-grid,
  .document-grid,
  .org-chart-grid,
  .standard-document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-section,
  .ranking-hero-inner,
  .all-partner-grid {
    grid-template-columns: 1fr;
  }

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

  .all-partner-grid.compact {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .media-news-card,
  .media-news-card.is-featured {
    grid-column: span 1;
    min-height: 338px;
  }

  .media-news-card.is-featured img,
  .media-news-card img {
    min-height: 0;
  }

  .news-article-hero,
  .news-article-body {
    grid-template-columns: 1fr;
  }

  .news-article-hero img {
    min-height: 420px;
  }

}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px auto;
    gap: 8px;
    min-height: 78px;
    padding: 10px 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
  }

  .federation-brand img {
    width: 54px;
    height: 54px;
  }

  .federation-brand {
    gap: 9px;
    min-width: 0;
    overflow: hidden;
  }

  .brand-wordmark {
    min-width: 0;
    font-size: clamp(11px, 3.4vw, 13px);
    white-space: normal;
  }

  .brand-wordmark span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    width: 54px;
    height: 54px;
    margin-left: 0;
    justify-self: center;
  }

  .language-switcher {
    justify-self: end;
    gap: 2px;
    padding: 4px;
  }

  .language-switcher button {
    min-width: 33px;
    height: 34px;
    padding: 0 7px;
    font-size: 12px;
  }

  @media (max-width: 520px) {
    .site-header {
      grid-template-columns: minmax(0, 1fr) min-content 44px;
      align-items: center;
      gap: 7px;
      min-height: 66px;
      padding: 8px 8px;
    }

    .federation-brand {
      grid-row: 1;
      gap: 6px;
      max-width: 100%;
    }

    .federation-brand img {
      width: 36px;
      height: 36px;
    }

    .brand-wordmark {
      font-size: clamp(10px, 3.1vw, 12px);
      line-height: 0.98;
    }

    .menu-button {
      grid-column: 3;
      grid-row: 1;
      width: 44px;
      height: 44px;
      justify-self: end;
      font-size: 20px;
    }

    .language-switcher {
      grid-column: 2;
      grid-row: 1;
      justify-self: end;
      gap: 1px;
      padding: 3px;
    }

    .language-switcher button {
      min-width: 30px;
      height: 30px;
      padding: 0 6px;
      font-size: 11px;
    }
  }

  .hero {
    min-height: 0;
    padding-top: 560px;
    overflow: visible;
  }

  .hero-track,
  .hero-slide {
    inset: 0 0 auto;
    height: 560px;
  }

  .hero-track,
  .hero-slide {
    overflow: hidden;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 92px;
  }

  .ranking-hero-inner {
    align-items: start;
    gap: 18px;
  }

  .ranking-board {
    padding: 18px;
  }

  .ranking-board li {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .ranking-board li em {
    grid-column: 2;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-scoreboard,
  .stats-band,
  .portal-program-grid,
  .division-grid,
  .video-grid,
  .gallery-grid,
  .media-news-grid,
  .standard-grid,
  .contact-grid,
  .page-meta-grid,
  .portal-detail-grid,
  .international-feature-grid,
  .match-format-list,
  .feature-card-grid,
  .faq-grid,
  .exchange-network-grid,
  .document-grid,
  .org-chart-grid,
  .standard-document-grid {
    grid-template-columns: 1fr;
  }

  .media-news-card.is-featured {
    grid-column: span 1;
  }

  .media-news-card,
  .media-news-card.is-featured {
    min-height: 0;
  }

  .media-news-card img,
  .media-news-card.is-featured img {
    height: auto;
    min-height: 0;
  }

  .all-partner-grid.compact {
    grid-template-columns: 1fr;
  }

  .partners-section {
    overflow: hidden;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    width: 100%;
    margin: 26px auto 0;
    padding: 0;
    gap: 22px;
  }

  .partner-grid a,
  .partner-logo-item {
    min-height: 86px;
  }

  .partner-grid img,
  .partner-grid a:nth-child(1) img,
  .partner-grid a:nth-child(2) img,
  .partner-grid a:nth-child(3) img,
  .partner-grid .partner-logo-item:nth-child(5) img {
    width: 100%;
    max-width: 166px;
    max-height: 64px;
  }

  .hero-controls {
    padding: 0 12px;
  }

  .hero-scoreboard {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 5;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 18px 18px 22px;
    transform: none;
    gap: 12px;
    background: #071625;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .hero-scoreboard::-webkit-scrollbar {
    display: none;
  }

  .hero-scoreboard div {
    flex: 0 0 min(78vw, 330px);
    min-height: 92px;
    padding: 16px 18px;
    background: #18314b;
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    backdrop-filter: none;
    scroll-snap-align: start;
  }

  .hero-scoreboard strong {
    white-space: normal;
    font-size: 15px;
    line-height: 1.25;
  }

  .language-switcher {
    order: 3;
  }

  .language-switcher button {
    min-width: 34px;
  }

  @media (max-width: 520px) {
    .language-switcher {
      order: initial;
    }

    .language-switcher button {
      min-width: 30px;
    }
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .hero-dots button {
    width: 22px;
  }

  .hero-dots {
    bottom: 24px;
  }

  .intro-section {
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .intro-section > p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.68;
  }

  .intro-section .inline-action-row {
    margin-top: 12px;
  }

  .stats-band {
    display: flex;
    gap: 12px;
    padding: 12px 18px 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .stats-band::-webkit-scrollbar {
    display: none;
  }

  .stats-band article {
    flex: 0 0 78vw;
    min-height: 190px;
    scroll-snap-align: start;
  }

  .schedule-list,
  .portal-program-grid,
  .division-grid,
  .standard-grid,
  .contact-grid,
  .page-meta-grid,
  .portal-detail-grid,
  .feature-card-grid,
  .faq-grid,
  .exchange-network-grid,
  .media-news-grid,
  .video-grid,
  .gallery-grid {
    display: flex;
    width: calc(100% + 36px);
    margin-inline: -18px;
    padding: 0 18px 12px;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-list::-webkit-scrollbar,
  .portal-program-grid::-webkit-scrollbar,
  .division-grid::-webkit-scrollbar,
  .standard-grid::-webkit-scrollbar,
  .contact-grid::-webkit-scrollbar,
  .page-meta-grid::-webkit-scrollbar,
  .portal-detail-grid::-webkit-scrollbar,
  .feature-card-grid::-webkit-scrollbar,
  .faq-grid::-webkit-scrollbar,
  .exchange-network-grid::-webkit-scrollbar,
  .media-news-grid::-webkit-scrollbar,
  .video-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .schedule-item,
  .portal-program-card,
  .division-grid article,
  .standard-grid article,
  .contact-grid article,
  .page-meta-grid div,
  .portal-detail-card,
  .feature-card,
  .faq-grid article,
  .exchange-network-card,
  .media-news-card,
  .media-news-card.is-featured,
  .video-card,
  .gallery-grid figure {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .division-grid article {
    min-height: 330px;
    padding: 24px;
  }

  .media-news-card,
  .media-news-card.is-featured {
    min-height: 0;
  }

  .video-card {
    min-height: 0;
  }

  .gallery-grid {
    grid-auto-rows: unset;
  }

  .gallery-grid .wide {
    grid-row: span 1;
  }

  .gallery-grid figure {
    height: 260px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 360px;
  }

  .schedule-item em {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .footer-contact {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }
}
