:root {
  --bg: #ffffff;
  --ink: #10131a;
  --muted: #5f6673;
  --line: #e8e9ee;
  --soft: #f6f7f9;
  --sumac: #9f2330;
  --saffron: #d99a21;
  --pistachio: #7f9c55;
  --turquoise: #087d8f;
  --copper: #b56535;
  --charcoal: #20242d;
  --shadow: 0 18px 48px rgba(16, 19, 26, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

button {
  font: inherit;
}

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--sumac), var(--saffron), var(--turquoise));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(135deg, var(--sumac), var(--copper) 44%, var(--turquoise));
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35), 0 9px 22px rgba(159, 35, 48, 0.25);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.top-nav a {
  padding: 10px 0;
  font-weight: 800;
}

.top-nav a:hover {
  color: var(--ink);
}

main {
  background:
    linear-gradient(90deg, rgba(8, 125, 143, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(159, 35, 48, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 46px 46px;
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.2) 0%, rgba(7, 9, 13, 0.42) 43%, rgba(7, 9, 13, 0.9) 100%),
    radial-gradient(circle at 74% 28%, rgba(217, 154, 33, 0.18), transparent 30%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, transparent, #fff 92%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 160px;
}

.issue-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.issue-row::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 6px rgba(217, 154, 33, 0.24);
}

.issue-row span {
  white-space: nowrap;
}

.hero-content h1 {
  max-width: 920px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 7.2vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
  word-break: keep-all;
}

.hero-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.4vw, 23px);
  word-break: keep-all;
}

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

.primary-link,
.icon-button {
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-weight: 900;
}

.primary-link {
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.icon-button {
  width: 46px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.icon-button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--saffron);
  border-color: var(--saffron);
}

.hero-digest {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 32px));
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-digest article {
  min-width: 0;
  min-height: 118px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-digest span {
  display: block;
  color: var(--sumac);
  font-size: 13px;
  font-weight: 950;
}

.hero-digest strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.32;
  word-break: keep-all;
}

.ticker-band {
  width: 100%;
  max-width: 100vw;
  margin-top: 28px;
  border-block: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  contain: paint;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
}

.ticker-track span {
  padding: 13px 18px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.ticker-track span:nth-child(odd) {
  color: var(--ink);
  font-weight: 900;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading,
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading.split > div {
  min-width: 0;
}

.section-heading h2,
.lead-article h2,
.immersive-copy h2,
.visual-card h2,
.closing-section h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 950;
  word-break: keep-all;
}

.section-kicker,
.reading-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sumac);
  background: transparent;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-kicker::before,
.reading-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.lead-article,
.quote-card,
.feature-card,
.news-card,
.read-card,
.board-copy,
.board-item {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 19, 26, 0.06);
  overflow: hidden;
}

.lead-article {
  min-height: 460px;
  padding: clamp(24px, 4vw, 42px);
}

.lead-article p,
.quote-card p,
.feature-card p,
.news-card p,
.read-card p,
.board-copy p,
.immersive-copy p,
.closing-section p {
  color: var(--muted);
  margin: 12px 0 0;
  word-break: keep-all;
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.side-stack {
  display: grid;
  gap: 12px;
}

.quote-card {
  min-height: 100%;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 125, 143, 0.96), rgba(32, 36, 45, 0.98)),
    url("../img/private-meeting.jpg") center/cover;
  background-blend-mode: multiply;
  box-shadow: var(--shadow);
}

.quote-card span,
.feature-card span,
.news-card span,
.visual-card span,
.board-copy span,
.read-card span {
  color: var(--sumac);
  font-size: 13px;
  font-weight: 950;
}

.quote-card span,
.quote-card p {
  color: rgba(255, 255, 255, 0.86);
}

.quote-card p {
  margin-top: 22px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.24;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

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

.feature-card img {
  height: 190px;
}

.feature-card > span,
.feature-card > h3,
.feature-card > p,
.feature-card > ul {
  margin-left: 18px;
  margin-right: 18px;
}

.feature-card > span {
  margin-top: 18px;
}

.feature-card h3,
.news-card h3,
.read-card h3,
.visual-card h3,
.board-copy h3 {
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
  word-break: keep-all;
}

.feature-card.wide {
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
}

.feature-card.wide img {
  height: 100%;
  min-height: 260px;
}

.feature-card.wide div {
  padding: 22px;
}

.feature-card.wide div span,
.feature-card.wide div h3,
.feature-card.wide div p,
.feature-card.wide div ul {
  margin-left: 0;
  margin-right: 0;
}

.feature-card ul {
  padding-left: 18px;
  padding-bottom: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card.accent {
  color: #fff;
  background: var(--charcoal);
}

.feature-card.accent h3,
.feature-card.accent span,
.feature-card.accent p {
  color: rgba(255, 255, 255, 0.86);
}

.feature-card.paper {
  background: #fbf3e7;
}

.immersive-panel {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.immersive-image {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.immersive-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 26, 0.06), rgba(16, 19, 26, 0.18) 42%, rgba(16, 19, 26, 0.74)),
    linear-gradient(180deg, transparent 48%, rgba(16, 19, 26, 0.58));
}

.immersive-copy {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  margin: 0 28px 28px auto;
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 36px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(16, 19, 26, 0.74);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.immersive-copy .section-kicker,
.immersive-copy h2 {
  color: #fff;
}

.immersive-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.immersive-copy .section-kicker::before {
  background: var(--saffron);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tab-buttons button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.tab-buttons button.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

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

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:nth-child(1),
.news-card:nth-child(2) {
  grid-column: span 1;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.news-card.is-hidden {
  display: none;
}

.news-card img {
  height: 190px;
}

.news-card div {
  padding: 18px;
}

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

.timeline-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.timeline-section .section-heading {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 24px;
  min-height: auto;
  margin: 0;
  padding: 24px 28px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 125, 143, 0.96), rgba(32, 36, 45, 0.98)),
    url("../img/data-dashboard.jpg") center/cover;
  background-blend-mode: multiply;
  box-shadow: var(--shadow);
}

.timeline-section .section-heading::after {
  content: "Policy · Institution · Settlement · Seoul Desk";
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 42px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.timeline-section .section-kicker,
.timeline-section .section-heading h2 {
  color: #fff;
}

.timeline-section .section-heading h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  word-break: keep-all;
}

.timeline-section .section-kicker::before {
  background: var(--saffron);
}

.timeline article {
  min-width: 0;
  display: block;
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 19, 26, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.timeline time {
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: #fff;
  background: var(--sumac);
  border-radius: 50%;
  font-weight: 950;
  font-size: 13px;
}

.timeline article:nth-child(2n) time {
  background: var(--turquoise);
}

.timeline article:nth-child(3n) time {
  background: var(--saffron);
  color: var(--ink);
}

.timeline h3 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.26;
  word-break: keep-all;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
  word-break: keep-all;
}

.deep-read {
  padding-top: 60px;
}

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

.read-card {
  min-height: 260px;
  padding: 20px;
  position: relative;
}

.read-card::before {
  content: "KR";
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(159, 35, 48, 0.08);
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
}

.read-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--sumac), var(--saffron));
  border-radius: 50%;
}

.visual-index {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 76px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-card.large {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 660px;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.62));
}

.visual-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.visual-card h2,
.visual-card h3,
.visual-card p,
.visual-card span {
  color: #fff;
}

.editor-board {
  padding-top: 0;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 0.7fr)) minmax(280px, 1.25fr);
  gap: 12px;
}

.board-item {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  text-align: left;
  color: var(--charcoal);
  background: var(--soft);
  cursor: pointer;
}

.board-item span {
  color: var(--sumac);
  font-weight: 950;
}

.board-item strong {
  font-size: 18px;
  line-height: 1.35;
}

.board-item.active {
  color: #fff;
  background: var(--charcoal);
}

.board-item.active span {
  color: var(--saffron);
}

.board-copy {
  grid-column: 4;
  grid-row: 1;
  min-height: 240px;
  padding: 22px;
}

.closing-section {
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 80px 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 19, 26, 0.88), rgba(159, 35, 48, 0.72)),
    url("../img/seoul-close.jpg") center/cover;
  box-shadow: var(--shadow);
}

.closing-section div {
  width: min(850px, 100%);
}

.closing-section h2,
.closing-section p,
.closing-section .section-kicker {
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px max(16px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.footer-copy strong {
  color: var(--ink);
  font-size: 15px;
}

.footer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.footer-button:hover {
  color: var(--sumac);
  border-color: var(--sumac);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(16, 19, 26, 0.54);
  backdrop-filter: blur(8px);
}

.modal-backdrop.show {
  display: flex;
}

.legal-modal {
  width: min(560px, 100%);
  max-height: min(78svh, 680px);
  overflow: auto;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.modal-head h3 {
  margin: 0;
  font-size: 22px;
}

.modal-close {
  flex: none;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  cursor: pointer;
}

.modal-body {
  padding: 20px;
  color: var(--muted);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.modal-body p {
  margin: 0 0 12px;
}

.modal-body ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.modal-body li {
  margin: 8px 0;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 58px;
  }

  .top-nav {
    display: none;
  }

  .hero-section {
    min-height: 88svh;
  }

  .hero-content {
    padding: 86px 0 118px;
  }

  .hero-digest,
  .intro-grid,
  .feature-grid,
  .immersive-panel,
  .timeline-section,
  .section-heading,
  .section-heading.split,
  .visual-index,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .hero-digest {
    margin-top: -42px;
  }

  .section-shell {
    padding: 56px 0;
  }

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

  .visual-card.large,
  .board-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .visual-card.large {
    min-height: 420px;
  }

  .tab-buttons {
    justify-content: flex-start;
  }

  .timeline-section .section-heading {
    grid-template-columns: 1fr;
  }

  .timeline-section .section-heading::after {
    justify-content: flex-start;
    text-align: left;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand strong {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .hero-content,
  .section-shell,
  .hero-digest,
  .visual-index {
    width: min(100% - 24px, 1180px);
  }

  .hero-section {
    min-height: 84svh;
  }

  .hero-content {
    padding: 72px 0 90px;
  }

  .issue-row {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-content h1 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 1.02;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-link,
  .icon-button {
    width: 100%;
  }

  .hero-digest {
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .hero-digest article {
    min-height: 128px;
    scroll-snap-align: start;
  }

  .ticker-track span {
    padding: 11px 14px;
    font-size: 12px;
  }

  .section-shell {
    padding: 46px 0;
  }

  .section-heading,
  .section-heading.split {
    gap: 14px;
    margin-bottom: 18px;
  }

  .section-heading h2,
  .lead-article h2,
  .immersive-copy h2,
  .closing-section h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .lead-article,
  .quote-card,
  .read-card,
  .board-copy {
    padding: 16px;
  }

  .feature-grid,
  .news-grid,
  .read-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    min-height: auto;
    display: block;
    background: #fff;
  }

  .feature-card.wide img {
    display: block;
    width: 100%;
    height: 230px;
    min-height: 230px;
    object-fit: cover;
  }

  .feature-card img,
  .news-card img {
    height: 168px;
  }

  .feature-card.wide div,
  .news-card div {
    padding: 16px;
  }

  .feature-card.wide div {
    color: var(--ink);
    background: #fff;
  }

  .feature-card.wide div span,
  .feature-card.wide div h3,
  .feature-card.wide div p,
  .feature-card.wide div li {
    color: var(--ink);
  }

  .feature-card.wide div p,
  .feature-card.wide div li {
    color: var(--muted);
  }

  .feature-card.wide div ul {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .timeline article {
    min-height: auto;
    padding: 16px;
  }

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

  .timeline h3 {
    margin-top: 18px;
  }

  .immersive-panel {
    min-height: auto;
    width: min(100% - 24px, 1180px);
    margin-top: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .immersive-image {
    position: relative;
    min-height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .immersive-copy {
    width: calc(100% - 24px);
    margin: -34px auto 0;
    padding: 20px 16px;
  }

  .visual-card,
  .visual-card.large {
    min-height: 320px;
  }

  .board-grid {
    gap: 10px;
  }

  .board-item {
    min-height: 120px;
  }

  .site-footer {
    display: grid;
    padding-inline: 12px;
  }

  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .footer-button {
    width: 100%;
  }

  .modal-head,
  .modal-body {
    padding: 16px;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 30px;
    height: 30px;
    flex: none;
  }

  .site-header {
    min-height: 54px;
  }

  .hero-section {
    min-height: 82svh;
  }

  .hero-content {
    padding: 66px 0 82px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 11.4vw, 50px);
  }

  .hero-digest strong,
  .feature-card h3,
  .news-card h3,
  .read-card h3,
  .board-copy h3 {
    font-size: 20px;
  }

  .quote-card p {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }
}
