:root {
  --blue: #184f9c;
  --blue-dark: #123d78;
  --sky: #eaf3ff;
  --red: #d94242;
  --yellow: #ffcc4d;
  --ink: #1f2937;
  --muted: #687385;
  --line: #d8e0ea;
  --bg: #f4f7fb;
  --white: #fff;
  --green: #16805f;
  --orange: #c46c1b;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  line-height: 1.55;
}

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.official {
  background: #eef4fb;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.official .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  color: #3c4b60;
}

.flag {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-main {
  display: grid;
  grid-template-columns: 250px 1fr 170px;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 4px solid var(--blue);
  border-radius: 50%;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.logo-mark::before {
  inset: 6px 16px 6px 6px;
  background: var(--red);
}

.logo-mark::after {
  right: 6px;
  bottom: 6px;
  width: 13px;
  height: 13px;
  background: var(--yellow);
}

.search {
  display: grid;
  grid-template-columns: 1fr 56px;
  height: 50px;
  border: 3px solid var(--blue);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}

.search input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: var(--ink);
  font-size: 16px;
  outline: none;
}

.search button {
  border: 0;
  color: var(--white);
  background: var(--blue);
  font-size: 21px;
  font-weight: 900;
  cursor: pointer;
}

.header-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.gnb {
  border-top: 1px solid var(--line);
}

.gnb .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
}

.menu {
  display: flex;
  gap: clamp(18px, 4vw, 48px);
  font-weight: 800;
}

.menu a {
  padding: 13px 0;
  border-bottom: 3px solid transparent;
}

.menu a:hover,
.menu a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.date {
  color: var(--muted);
  font-size: 14px;
}

main {
  padding: 26px 0 56px;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.keyword-title {
  margin-right: 6px;
  color: var(--blue-dark);
  font-weight: 900;
}

.chip {
  padding: 7px 11px;
  color: #31445c;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.top-layout {
  display: grid;
  grid-template-columns: 1.55fr .95fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 41, 55, .06);
}

.headline-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  min-height: 390px;
}

.visual {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(18, 61, 120, .02), rgba(18, 61, 120, .7)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/1%20Malecon%20Havana.jpg") center / cover no-repeat;
}

.visual-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
}

.headline-content,
.content-panel {
  padding: 28px;
}

.label {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 9px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.label.red { background: var(--red); }
.label.green { background: var(--green); }
.label.orange { background: var(--orange); }
.label.dark { background: var(--blue-dark); }

h1 {
  margin: 18px 0 12px;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.16;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.headline-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.headline-list a {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: start;
}

.topic {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.ranking,
.list-panel {
  padding: 22px;
}

.panel-title,
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.stamp {
  color: var(--muted);
  font-size: 13px;
}

.rank-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rank;
}

.rank-list li {
  counter-increment: rank;
  border-top: 1px solid var(--line);
}

.rank-list a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 13px 0;
  align-items: start;
}

.rank-list a::before {
  content: counter(rank);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  font-weight: 900;
  font-size: 14px;
}

.section {
  margin-top: 28px;
}

.more {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

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

.news-card {
  min-height: 235px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-card h3 {
  margin: 16px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.briefing-summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: 22px;
  align-items: end;
  margin-top: 16px;
  padding: 24px 24px 24px 30px;
  color: #10233f;
  background: #ffffff;
  border: 2px solid #10233f;
  border-left: 10px solid #10233f;
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(16, 35, 63, .12);
}

.briefing-summary::after {
  content: "ROOM";
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(16, 35, 63, .14);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

.briefing-summary h3 {
  margin: 14px 0 0;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.08;
}

.briefing-summary p {
  margin: 0;
  color: #5f6f84;
  font-size: 17px;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.department-grid.compact {
  margin-top: 14px;
}

.department-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px 22px 22px 28px;
  color: #10233f;
  background: #ffffff;
  border: 2px solid #d8e0ea;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(16, 35, 63, .08);
  transition: transform .16s ease-out, border-color .16s ease-out, box-shadow .16s ease-out;
}

.department-card:hover {
  border-color: var(--dept, #184f9c);
  box-shadow: 10px 10px 0 rgba(16, 35, 63, .12);
  transform: translate(-3px, -3px);
}

.department-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #10233f;
}

.department-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  border-top: 3px solid #10233f;
  border-right: 3px solid #10233f;
  opacity: .32;
}

.department-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  color: #ffffff;
  background: #10233f;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.department-card h3 {
  margin: 34px 0 10px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
}

.department-card p {
  margin: 0;
  color: #5f6f84;
}

.department-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #e5edf5;
  color: #374151;
  font-size: 14px;
  list-style: none;
}

.department-card li {
  position: relative;
  padding-left: 14px;
}

.department-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  background: #10233f;
  border-radius: 50%;
}

.department-card.env,
.department-card.eco,
.department-card.def,
.department-card.med,
.department-card.tour {
  --dept: #10233f;
}

.policy-data-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.policy-data-summary.expanded {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 0;
}

.policy-dossier {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px 22px 22px;
  color: #10233f;
  background: #ffffff;
  border: 2px solid #d8e0ea;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(16, 35, 63, .08);
  transition: transform .16s ease-out, border-color .16s ease-out, box-shadow .16s ease-out;
}

.policy-dossier::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 86px;
  height: 10px;
  background: #10233f;
  border-radius: 0 0 6px 6px;
}

.policy-dossier::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 44px;
  height: 44px;
  background: #eef3f8;
  border-left: 2px solid #d8e0ea;
  border-bottom: 2px solid #d8e0ea;
  transform: rotate(0deg);
}

.policy-dossier:hover {
  border-color: #10233f;
  box-shadow: 10px 10px 0 rgba(16, 35, 63, .12);
  transform: translate(-3px, -3px);
}

.policy-dossier.primary {
  border: 2px solid #10233f;
  box-shadow: 10px 10px 0 rgba(16, 35, 63, .12);
}

.policy-dossier span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #ffffff;
  background: #10233f;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.policy-dossier h3 {
  margin: 38px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.policy-dossier p {
  margin: 0;
  color: #5f6f84;
}

.data-page {
  --home-coral: #10233f;
  --home-lime: #10233f;
  background:
    linear-gradient(90deg, rgba(16, 35, 63, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 35, 63, .035) 1px, transparent 1px),
    #eef3f8;
  background-size: 34px 34px;
  color: #10233f;
}

.data-page .eyebrow {
  color: #10233f;
}

.data-page .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.portal-index .data-block {
  position: relative;
  overflow: hidden;
  background: #f8fbff;
}

.portal-index .data-block::before {
  content: "POLICY DATA";
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(16, 35, 63, .08);
  font-size: clamp(34px, 8vw, 92px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.portal-index .data-block > .wrap {
  position: relative;
  z-index: 1;
}

.portal-index .data-block .section-head {
  border-bottom-color: #10233f;
}

.data-page main {
  padding: 24px 0 42px;
}

.data-hero,
.data-modules,
.data-matrix,
.data-runbook,
.data-sources {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto 24px;
  padding: clamp(28px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 41, 55, .05);
}

.data-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  overflow: hidden;
  border: 2px solid #10233f;
  box-shadow: 10px 10px 0 rgba(16, 35, 63, .1);
}

.data-hero::before {
  content: "DATA";
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  top: clamp(18px, 4vw, 44px);
  color: rgba(16, 35, 63, .08);
  font-size: clamp(54px, 11vw, 140px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.data-hero > * {
  position: relative;
  z-index: 1;
}

.data-hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  color: #10233f;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
}

.data-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #5f6f84;
  font-size: clamp(17px, 2vw, 21px);
}

.data-status {
  position: relative;
  padding: 22px;
  background: #f8fbff;
  border: 2px solid #10233f;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(16, 35, 63, .08);
}

.data-status::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 58px;
  border-top: 2px dashed #d8e0ea;
}

.data-status strong,
.data-status span {
  display: block;
}

.data-status strong {
  color: #687385;
  font-size: 13px;
}

.data-status span {
  margin-top: 8px;
  color: #10233f;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.data-status p {
  margin: 18px 0 0;
  color: #5f6f84;
  font-size: 15px;
}

.data-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 3px solid #10233f;
}

.data-section-head h2,
.data-runbook h2,
.data-sources h2 {
  margin: 0;
  color: #10233f;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.matrix-table {
  display: grid;
  border: 2px solid #10233f;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(16, 35, 63, .08);
}

.matrix-table > div {
  display: grid;
  grid-template-columns: minmax(130px, .45fr) minmax(260px, 1fr) minmax(260px, 1fr);
  border-top: 1px solid #d8e0ea;
  background: #ffffff;
  transition: background .16s ease-out;
}

.matrix-table > div:not(.matrix-head):hover {
  background: #f8fbff;
}

.matrix-table > div:first-child {
  border-top: 0;
}

.matrix-table span {
  padding: 18px;
  border-left: 1px solid #d8e0ea;
}

.matrix-table span:first-child {
  border-left: 0;
  color: #10233f;
  font-weight: 900;
}

.matrix-head {
  color: #ffffff;
  background: #10233f;
  font-weight: 900;
}

.matrix-head span:first-child {
  color: #ffffff;
}

.data-runbook,
.data-sources {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(24px, 5vw, 64px);
}

.checklist {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #d8e0ea;
}

.checklist li {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 18px;
  background: #f8fbff;
  border: 2px solid #d8e0ea;
  border-left: 8px solid #10233f;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(16, 35, 63, .06);
}

.checklist strong {
  color: #10233f;
}

.checklist span {
  color: #5f6f84;
}

.focus-board {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 16px;
  margin-top: 16px;
}

.focus-lead,
.focus-axis article,
.focus-card,
.question-list article,
.scenario-stack article {
  background: #ffffff;
  border: 2px solid #d8e0ea;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(16, 35, 63, .08);
}

.focus-lead {
  min-height: 310px;
  padding: 26px;
  border-color: #10233f;
  box-shadow: 10px 10px 0 rgba(16, 35, 63, .12);
}

.focus-lead span,
.focus-card span,
.scenario-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 10px;
  color: #ffffff;
  background: #10233f;
  border-radius: 4px;
  font-weight: 900;
}

.focus-lead h3 {
  margin: 34px 0 12px;
  color: #10233f;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.focus-lead p,
.focus-axis p,
.focus-card p,
.question-list p,
.scenario-stack p {
  margin: 0;
  color: #5f6f84;
}

.focus-axis {
  display: grid;
  gap: 12px;
}

.focus-axis article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 20px;
}

.focus-axis span {
  color: #10233f;
  font-weight: 900;
}

.focus-axis strong {
  color: #10233f;
  font-size: 20px;
}

.focus-axis p {
  grid-column: 2;
}

.focus-page {
  --home-coral: #10233f;
  --home-lime: #10233f;
  background:
    linear-gradient(90deg, rgba(16, 35, 63, .04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 35, 63, .03) 1px, transparent 1px),
    #eef3f8;
  background-size: 34px 34px;
  color: #10233f;
}

.focus-page .eyebrow {
  color: #10233f;
}

.focus-page .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.focus-page main {
  padding: 24px 0 42px;
}

.focus-hero,
.focus-priorities,
.focus-questions,
.focus-scenarios {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto 24px;
  padding: clamp(28px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 41, 55, .05);
}

.focus-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  overflow: hidden;
  border: 2px solid #10233f;
  box-shadow: 10px 10px 0 rgba(16, 35, 63, .1);
}

.focus-hero::before {
  content: "FOCUS";
  position: absolute;
  right: clamp(18px, 5vw, 56px);
  top: clamp(18px, 4vw, 42px);
  color: rgba(16, 35, 63, .08);
  font-size: clamp(54px, 11vw, 140px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.focus-hero > * {
  position: relative;
  z-index: 1;
}

.focus-hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  color: #10233f;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
}

.focus-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #5f6f84;
  font-size: clamp(17px, 2vw, 21px);
}

.focus-principle {
  padding: 22px;
  background: #f8fbff;
  border: 2px solid #10233f;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(16, 35, 63, .08);
}

.focus-principle strong,
.focus-principle span {
  display: block;
}

.focus-principle strong {
  color: #687385;
  font-size: 13px;
}

.focus-principle span {
  margin-top: 12px;
  color: #10233f;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1;
}

.focus-principle p {
  margin-top: 18px;
  font-size: 15px;
}

.focus-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 3px solid #10233f;
}

.focus-section-head h2,
.focus-scenarios h2 {
  margin: 0;
  color: #10233f;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.focus-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.focus-card {
  min-height: 240px;
  padding: 22px;
  transition: transform .16s ease-out, border-color .16s ease-out, box-shadow .16s ease-out;
}

.focus-card:hover {
  border-color: #10233f;
  box-shadow: 10px 10px 0 rgba(16, 35, 63, .12);
  transform: translate(-3px, -3px);
}

.focus-card h3 {
  margin: 34px 0 10px;
  color: #10233f;
  font-size: 28px;
  line-height: 1.08;
}

.question-list {
  display: grid;
  gap: 12px;
}

.question-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-left: 8px solid #10233f;
}

.question-list span {
  color: #10233f;
  font-weight: 900;
}

.focus-scenarios {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(24px, 5vw, 64px);
}

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

.scenario-stack article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 20px;
}

.scenario-stack strong {
  color: #10233f;
  font-size: 22px;
}

.scenario-stack p {
  grid-column: 2;
}

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

.dept {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dept h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 18px;
}

.dept ul,
.source-list,
.simple-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dept ul {
  color: #374151;
  font-size: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.simple-list li,
.source-list a {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.simple-list small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
}

.source-list a {
  display: block;
  color: var(--blue-dark);
  font-weight: 800;
}

.language-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.language-card {
  padding: 20px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-card:hover {
  border-color: var(--blue);
}

.language-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-dark);
  font-size: 20px;
}

.page-title {
  margin-bottom: 22px;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-image {
  min-height: 140px;
  border-radius: 6px;
  background: var(--sky) center / cover no-repeat;
  border: 1px solid var(--line);
}

.article-image.cuba-street {
  background-image:
    linear-gradient(180deg, rgba(24, 79, 156, .08), rgba(24, 79, 156, .28)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/1%20Malecon%20Havana.jpg");
}

.article-image.policy {
  background-image:
    linear-gradient(135deg, rgba(24, 79, 156, .92), rgba(217, 66, 66, .72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0 2px, transparent 2px 16px);
}

.article-image.travel {
  background-image:
    linear-gradient(135deg, rgba(22, 128, 95, .88), rgba(255, 204, 77, .62)),
    radial-gradient(circle at 22% 35%, rgba(255, 255, 255, .85) 0 10px, transparent 11px),
    radial-gradient(circle at 72% 62%, rgba(255, 255, 255, .55) 0 18px, transparent 19px);
}

.article-body {
  min-width: 0;
}

.article-item h2 {
  margin-bottom: 8px;
}

.article-item p {
  margin: 0;
  color: var(--muted);
}

footer {
  padding: 30px 0 42px;
  color: #d9e4f2;
  background: #26364a;
  font-size: 14px;
}

footer .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .header-links {
    justify-content: flex-start;
  }

  .top-layout,
  .headline-panel,
  .two-col {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .gnb .wrap,
  .menu {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    gap: 0;
  }

  .date {
    padding-bottom: 12px;
  }

  .news-grid,
  .dept-layout,
  .language-box {
    grid-template-columns: 1fr;
  }

  .headline-list a,
  .article-item,
  footer .wrap {
    grid-template-columns: 1fr;
  }
}

.home-page {
  --home-bg: #f4f7fb;
  --home-panel: #ffffff;
  --home-ink: #10233f;
  --home-muted: #5f6f84;
  --home-line: #d8e0ea;
  --home-lime: #f7d35b;
  --home-coral: #d9272e;
  --home-cyan: #184f9c;
  background: var(--home-bg);
  color: var(--home-ink);
}

.home-page main {
  padding: 0;
}

.portal-home {
  background: #f4f7fb;
  color: #1f2937;
}

.portal-home .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.portal-home .portal-intro {
  padding: 26px 0 42px;
  background: #f4f7fb;
}

.portal-home .top-layout {
  margin-bottom: 0;
}

.portal-home h1 {
  color: #10233f;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.portal-home .lead {
  color: #5f6f84;
}

.portal-home .snapshot-section,
.portal-home .single-section,
.portal-home .story-section,
.portal-home .policy-context {
  scroll-margin-top: 128px;
}

.portal-index {
  background: #eef3f8;
}

.portal-index .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.portal-index main {
  padding: 24px 0 42px;
}

.portal-index .page-block {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto 28px;
  padding: 26px 0;
  background: #ffffff;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 41, 55, .05);
  scroll-margin-top: 128px;
}

.portal-index .page-block[hidden] {
  display: none;
}

.portal-index .chip.active,
.portal-index .more.active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.portal-index .page-block:nth-child(even) {
  background: #f8fbff;
}

.portal-index .intro-block {
  padding-top: 22px;
}

.portal-index .top-layout {
  margin-bottom: 0;
}

.portal-index .page-block > .wrap {
  width: min(1180px, calc(100% - 32px));
}

.portal-index .section-head {
  padding-bottom: 16px;
  border-bottom: 2px solid #e5edf5;
}

.portal-index h1 {
  color: #10233f;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.portal-index .article-list {
  margin-top: 16px;
}

.portal-index .studio-home {
  --bg-x: 0px;
  --bg-y: 0px;
  --photo-x: 0px;
  --photo-y: 0px;
  --photo-rx: 0deg;
  --photo-ry: 0deg;
  --stat-one-x: 0px;
  --stat-one-y: 0px;
  --stat-two-x: 0px;
  --stat-two-y: 0px;
  --tag-one-x: 0px;
  --tag-one-y: 0px;
  --tag-two-x: 0px;
  --tag-two-y: 0px;
  --tag-three-x: 0px;
  --tag-three-y: 0px;
  --title-a: 0px;
  --title-b: 0px;
  --title-c: 0px;
  --shine-x: -120%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  color: #10233f;
  background:
    linear-gradient(135deg, rgba(24, 79, 156, .09), rgba(255, 255, 255, .96) 44%, rgba(217, 39, 46, .08)),
    #ffffff;
  border-color: #d8e0ea;
}

.portal-index .studio-home::before,
.portal-index .studio-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.portal-index .studio-home::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(24, 79, 156, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(24, 79, 156, .055) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 58%, rgba(217, 39, 46, .12) 58% 59%, transparent 59% 100%);
  background-position: var(--bg-x) var(--bg-y), var(--bg-x) var(--bg-y), center;
  background-size: 48px 48px, 48px 48px, 100% 100%;
  transition: background-position .2s ease-out;
}

.portal-index .studio-home::after {
  z-index: 1;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  opacity: .42;
  transform: translate3d(var(--shine-x), 0, 0) skewX(-15deg);
  transition: transform .18s ease-out;
}

.studio-cursor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 22px;
  height: 22px;
  border: 2px solid #d9272e;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(50%, 50%, 0) rotate(45deg);
  transition: opacity .15s ease-out;
}

.studio-home.is-active .studio-cursor {
  opacity: .9;
}

.studio-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: clamp(580px, calc(100vh - 170px), 760px);
  padding: clamp(34px, 5vw, 70px);
}

.studio-hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: rgba(255, 255, 255, .48);
  pointer-events: none;
}

.studio-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.studio-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: #092e71;
  background: #eaf3ff;
  border: 1px solid #c9d9eb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.portal-index .studio-copy h1 {
  max-width: 850px;
  margin: 0;
  color: #10233f;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .92;
}

.portal-index .studio-copy h1 span {
  display: block;
  transition: transform .18s ease-out;
}

.portal-index .studio-copy h1 span:nth-child(1) {
  transform: translate3d(var(--title-a), 0, 0);
}

.portal-index .studio-copy h1 span:nth-child(2) {
  transform: translate3d(var(--title-b), 0, 0);
}

.portal-index .studio-copy h1 span:nth-child(3) {
  transform: translate3d(var(--title-c), 0, 0);
}

.studio-copy p:not(.studio-kicker) {
  max-width: 680px;
  margin: 26px 0 0;
  color: #5f6f84;
  font-size: clamp(17px, 2vw, 22px);
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.studio-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  color: #092e71;
  background: #ffffff;
  border: 1px solid #c9d9eb;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .16s ease-out, border-color .16s ease-out, box-shadow .16s ease-out;
}

.studio-actions a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(16, 35, 63, .14);
}

.studio-actions a + a {
  color: #ffffff;
  background: #d9272e;
  border: 1px solid #d9272e;
}

.studio-visual {
  position: relative;
  z-index: 1;
  min-height: 480px;
  perspective: 1000px;
}

.studio-photo {
  position: absolute;
  inset: 26px 0 26px 42px;
  overflow: hidden;
  border: 10px solid #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 46, 113, .02), rgba(9, 46, 113, .82)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/1%20Malecon%20Havana.jpg") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(16, 35, 63, .18);
  transform: perspective(900px) translate3d(var(--photo-x), var(--photo-y), 0) rotateX(var(--photo-rx)) rotateY(var(--photo-ry));
  transform-style: preserve-3d;
  transition: transform .18s ease-out, box-shadow .18s ease-out;
  will-change: transform;
}

.studio-photo::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 38%;
  height: 54%;
  background: #d9272e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.studio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 36%, rgba(255, 255, 255, .3) 47%, transparent 60% 100%);
  transform: translate3d(var(--shine-x), 0, 0);
  transition: transform .18s ease-out;
}

.studio-photo span {
  position: absolute;
  left: 26px;
  bottom: 22px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
}

.studio-stat {
  position: absolute;
  width: min(220px, 48%);
  padding: 18px;
  color: #092e71;
  background: #ffffff;
  border: 1px solid rgba(24, 79, 156, .12);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  transition: transform .18s ease-out, box-shadow .18s ease-out;
  will-change: transform;
}

.studio-stat small {
  display: block;
  margin-bottom: 5px;
  color: #d9272e;
  font-weight: 900;
}

.studio-stat strong {
  font-size: 24px;
  line-height: 1.1;
}

.stat-one {
  left: 0;
  top: 74px;
  transform: translate3d(var(--stat-one-x), var(--stat-one-y), 0);
}

.stat-two {
  right: 0;
  bottom: 70px;
  transform: translate3d(var(--stat-two-x), var(--stat-two-y), 0);
}

.studio-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #ffffff;
  background: #092e71;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(9, 46, 113, .22);
  transition: transform .18s ease-out;
  will-change: transform;
}

.tag-one {
  left: 10%;
  bottom: 20%;
  transform: translate3d(var(--tag-one-x), var(--tag-one-y), 0) rotate(-6deg);
}

.tag-two {
  right: 4%;
  top: 22%;
  background: #d9272e;
  transform: translate3d(var(--tag-two-x), var(--tag-two-y), 0) rotate(5deg);
}

.tag-three {
  right: 12%;
  bottom: 27%;
  color: #092e71;
  background: #ffcc4d;
  transform: translate3d(var(--tag-three-x), var(--tag-three-y), 0) rotate(-3deg);
}

.studio-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #d8e0ea;
  background: #f8fbff;
}

.studio-strip a {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  color: #10233f;
  border-right: 1px solid #d8e0ea;
  transition: transform .16s ease-out, background .16s ease-out, box-shadow .16s ease-out;
}

.studio-strip a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 79, 156, .1), transparent 54%, rgba(217, 39, 46, .12));
  opacity: 0;
  transition: opacity .16s ease-out;
}

.studio-strip a:hover {
  z-index: 1;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(16, 35, 63, .12);
  transform: translateY(-6px);
}

.studio-strip a:hover::before {
  opacity: 1;
}

.studio-strip a > * {
  position: relative;
  z-index: 1;
}

.studio-strip a:last-child {
  border-right: 0;
}

.studio-strip span {
  color: #d9272e;
  font-weight: 900;
}

.studio-strip strong {
  display: block;
  margin: 24px 0 6px;
  font-size: 22px;
}

.studio-strip small {
  color: #5f6f84;
}

.portal-index .two-col,
.portal-index .news-grid,
.portal-index .dept-layout {
  margin-top: 16px;
}

@media (max-width: 640px) {
  .portal-index .page-block {
    width: min(100% - 16px, 1240px);
    margin-bottom: 18px;
    padding: 20px 0;
  }
}

@media (max-width: 980px) {
  .studio-hero,
  .studio-strip {
    grid-template-columns: 1fr;
  }

  .studio-visual {
    min-height: 430px;
  }

  .studio-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #d8e0ea;
  }
}

@media (max-width: 640px) {
  .studio-hero {
    padding: 28px 18px;
  }

  .studio-hero::before {
    inset: 12px;
    border-radius: 20px;
  }

  .portal-index .studio-copy h1 {
    font-size: clamp(40px, 14vw, 62px);
  }

  .studio-photo {
    inset: 24px 0;
  }

  .studio-stat {
    width: 170px;
  }

  .studio-tag {
    display: none;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .studio-cursor {
    display: none;
  }

  .portal-index .studio-home::before,
  .portal-index .studio-home::after,
  .portal-index .studio-copy h1 span,
  .studio-photo,
  .studio-photo::after,
  .studio-stat,
  .studio-tag,
  .studio-strip a,
  .studio-actions a {
    transition: none;
  }
}

.home-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--home-ink);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--home-line);
  backdrop-filter: blur(18px);
}

.home-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.home-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 35%, var(--home-coral) 0 28%, transparent 29%),
    linear-gradient(180deg, #ffffff 0 20%, var(--home-cyan) 20% 40%, #ffffff 40% 60%, var(--home-cyan) 60% 80%, #ffffff 80% 100%);
}

.home-menu,
.home-lang,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-menu {
  justify-content: center;
  flex-wrap: wrap;
}

.home-menu a,
.home-lang a {
  padding: 9px 11px;
  color: #34465f;
  border-radius: 999px;
  font-size: 14px;
}

.home-menu a:hover,
.home-lang a:hover {
  color: var(--home-ink);
  background: #eaf3ff;
}

.cuba-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 68px);
  padding: clamp(60px, 8vw, 108px) clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

.cuba-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(244, 247, 251, .98) 0%, rgba(244, 247, 251, .88) 46%, rgba(244, 247, 251, .28) 100%),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/1%20Malecon%20Havana.jpg") center / cover no-repeat;
  opacity: 1;
}

.cuba-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: 50vw;
  height: 50vw;
  min-width: 420px;
  min-height: 420px;
  background: conic-gradient(from 140deg, #d9272e, #ffffff, #1d5fb8, #f7d35b, #d9272e);
  opacity: .14;
  filter: blur(24px);
  border-radius: 50%;
}

.hero-copy-block,
.hero-visual-stack {
  position: relative;
  z-index: 1;
}

.hero-copy-block {
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--home-lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-page h1 {
  max-width: 880px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(48px, 8.5vw, 112px);
  line-height: .93;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--home-muted);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.primary-action {
  color: #0c111d;
  background: var(--home-lime);
}

.secondary-action {
  color: var(--home-ink);
  border: 1px solid #b9c8d9;
  background: #ffffff;
}

.hero-visual-stack {
  align-self: center;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  inset: 30px 20px 20px 70px;
  border: 1px solid #d8e0ea;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(12, 17, 29, .08), rgba(12, 17, 29, .78)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/1%20Malecon%20Havana.jpg") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(16, 35, 63, .18);
  overflow: hidden;
}

.hero-photo span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: var(--home-ink);
  font-size: 46px;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  width: 190px;
  padding: 18px;
  color: var(--home-ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid #d8e0ea;
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(16, 35, 63, .16);
}

.floating-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--home-muted);
}

.floating-card strong {
  font-size: 25px;
}

.card-capital {
  left: 8px;
  top: 86px;
}

.card-language {
  right: 0;
  bottom: 80px;
}

.snapshot-section,
.story-section,
.policy-context {
  padding: 86px clamp(18px, 5vw, 72px);
}

.snapshot-section {
  background:
    linear-gradient(90deg, rgba(217, 39, 46, .08), transparent 38%),
    #f8fbff;
  color: #081e48;
}

.snapshot-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.snapshot-head .eyebrow,
.story-panel .eyebrow,
.policy-context .eyebrow {
  color: #d9272e;
}

.snapshot-section h2,
.story-section h2,
.policy-context h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .98;
}

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

.snapshot-card {
  min-height: 230px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(29, 95, 184, .16);
  border-radius: 22px;
}

.snapshot-card span {
  color: #687385;
  font-weight: 800;
}

.snapshot-card strong {
  display: block;
  margin: 22px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.snapshot-card p {
  margin: 0;
  color: #5f6876;
}

.story-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  background: #f4f7fb;
}

.story-panel {
  min-height: 430px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
}

.story-panel.dark {
  color: #10233f;
  background: #ffffff;
  border: 1px solid #d8e0ea;
}

.story-panel.light {
  color: #071f4f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .65), rgba(255, 255, 255, .18)),
    var(--home-lime);
}

.story-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: inherit;
  opacity: .78;
  font-size: 18px;
}

.policy-context {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  background: #ffffff;
  color: #081e48;
}

.single-section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.news-section {
  color: #081e48;
  background: #ffffff;
}

.briefing-section {
  color: #10233f;
  background: #f4f7fb;
  border-top: 2px solid #d8e0ea;
  border-bottom: 2px solid #d8e0ea;
}

.briefing-block .label,
.briefing-page .label {
  color: #ffffff;
  background: #10233f;
}

.briefing-page .eyebrow {
  color: #10233f;
}

.single-head {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1fr;
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  margin-bottom: 26px;
}

.single-head h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 76px);
  line-height: .96;
}

.single-head p:not(.eyebrow) {
  margin: 0;
  color: #687385;
  font-size: 18px;
}

.briefing-section .single-head p:not(.eyebrow) {
  color: #5f6f84;
}

.home-news-list {
  display: grid;
  gap: 16px;
}

.home-news-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  color: #081e48;
  background: #f8fbff;
  border: 1px solid rgba(29, 95, 184, .16);
  border-radius: 24px;
}

.home-news-card h3 {
  margin: 14px 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.home-news-card p {
  margin: 0;
  color: #687385;
  font-size: 17px;
}

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

.briefing-grid article {
  min-height: 260px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #d8e0ea;
  border-radius: 24px;
}

.briefing-grid span {
  color: #10233f;
  font-weight: 900;
}

.briefing-grid h3 {
  margin: 38px 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.briefing-grid p {
  margin: 0;
  color: #5f6f84;
}

.context-list {
  display: grid;
  gap: 12px;
}

.context-list a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 22px;
  color: #081e48;
  background:
    linear-gradient(90deg, rgba(29, 95, 184, .08), rgba(217, 39, 46, .04)),
    #f8fbff;
  border: 1px solid rgba(29, 95, 184, .14);
  border-radius: 20px;
}

.context-list span {
  color: var(--home-coral);
  font-weight: 900;
}

.context-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.context-list p {
  grid-column: 2;
  margin: 0;
  color: #687385;
}

.language-page {
  --home-coral: #d9272e;
  --home-lime: #d9272e;
  background: #eef3f8;
  color: #10233f;
}

.language-page .eyebrow {
  color: #d9272e;
}

.language-page .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.language-page main {
  padding: 0;
}

.language-hero,
.language-section,
.language-sources {
  width: min(1240px, calc(100% - 28px));
  margin: 24px auto;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(31, 41, 55, .05);
}

.language-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(24px, 5vw, 64px);
  min-height: 520px;
  padding: clamp(32px, 5vw, 66px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(24, 79, 156, .08), rgba(255, 255, 255, .94) 48%, rgba(217, 39, 46, .08)),
    #ffffff;
}

.language-copy {
  align-self: center;
}

.language-copy h1 {
  max-width: 860px;
  margin: 0;
  color: #10233f;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
}

.japanese-page .language-copy h1 {
  max-width: 760px;
  line-height: 1.05;
}

.language-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #5f6f84;
  font-size: clamp(17px, 2vw, 21px);
}

.language-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.language-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  color: #092e71;
  background: #ffffff;
  border: 1px solid #c9d9eb;
  border-radius: 999px;
  font-weight: 900;
}

.language-actions a:first-child {
  color: #ffffff;
  background: #184f9c;
  border-color: #184f9c;
}

.language-brief {
  display: grid;
  align-content: center;
  gap: 12px;
}

.language-brief div,
.language-grid article {
  border: 1px solid rgba(24, 79, 156, .14);
  border-radius: 8px;
  background: #f8fbff;
}

.language-brief div {
  padding: 22px;
}

.language-brief span,
.language-grid span {
  color: #d9272e;
  font-size: 13px;
  font-weight: 900;
}

.language-brief strong {
  display: block;
  margin-top: 12px;
  color: #092e71;
  font-size: 24px;
  line-height: 1.1;
}

.language-brief p,
.language-grid p {
  margin: 10px 0 0;
  color: #5f6f84;
}

.language-section,
.language-sources {
  padding: clamp(28px, 4vw, 48px);
}

.language-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5edf5;
}

.language-section-head h2,
.language-sources h2 {
  margin: 0;
  color: #10233f;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

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

.language-grid article {
  min-height: 235px;
  padding: 22px;
}

.language-grid h3 {
  margin: 24px 0 0;
  color: #10233f;
  font-size: 26px;
  line-height: 1.12;
}

.language-sources {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(24px, 5vw, 64px);
}

.briefing-page {
  background: #edf1f5;
  color: #10233f;
}

.briefing-page .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.briefing-page main {
  padding: 24px 0 42px;
}

.briefing-room-hero,
.briefing-departments,
.briefing-runbook {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto 24px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(31, 41, 55, .05);
}

.briefing-room-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .62fr);
  gap: clamp(24px, 5vw, 64px);
  min-height: 500px;
  padding: clamp(32px, 5vw, 66px);
  overflow: hidden;
  background: #ffffff;
  border: 2px solid #10233f;
  box-shadow: 10px 10px 0 rgba(16, 35, 63, .12);
}

.briefing-room-hero::before,
.briefing-room-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.briefing-room-hero::before {
  right: clamp(20px, 5vw, 72px);
  top: clamp(20px, 5vw, 58px);
  width: 120px;
  height: 120px;
  border: 12px solid rgba(16, 35, 63, .12);
}

.briefing-room-hero::after {
  left: 0;
  bottom: 0;
  width: min(42vw, 420px);
  height: 18px;
  background: #10233f;
}

.briefing-hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.briefing-hero-copy h1 {
  max-width: 880px;
  margin: 18px 0 0;
  color: #10233f;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
}

.briefing-hero-copy p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #5f6f84;
  font-size: clamp(17px, 2vw, 21px);
}

.briefing-order {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 24px;
  background: #f8fbff;
  border: 2px solid #10233f;
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(16, 35, 63, .1);
}

.briefing-order h2 {
  margin-bottom: 14px;
  color: #10233f;
}

.briefing-order ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.briefing-order li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid #d8e0ea;
  transition: padding-left .16s ease-out, border-color .16s ease-out;
}

.briefing-order li:hover {
  padding-left: 8px;
  border-color: #10233f;
}

.briefing-order span {
  color: #10233f;
  font-weight: 900;
}

.briefing-order strong,
.briefing-order small {
  grid-column: 2;
}

.briefing-order small {
  color: #687385;
  font-size: 13px;
}

.briefing-departments,
.briefing-runbook {
  padding: clamp(28px, 4vw, 48px);
  border: 2px solid #d8e0ea;
}

.briefing-section-title {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5edf5;
}

.briefing-section-title h2,
.briefing-runbook h2 {
  margin: 0;
  color: #10233f;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.briefing-runbook {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(24px, 5vw, 64px);
  background: #ffffff;
}

.runbook-list {
  display: grid;
  gap: 12px;
}

.runbook-list article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 20px;
  background: #f8fbff;
  border: 2px solid #d8e0ea;
  border-left: 8px solid #10233f;
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(16, 35, 63, .07);
}

.runbook-list span {
  color: #10233f;
  font-size: 13px;
  font-weight: 900;
}

.runbook-list strong {
  color: #10233f;
  font-size: 20px;
}

.runbook-list p {
  grid-column: 2;
  margin: 0;
  color: #5f6f84;
}

@media (max-width: 980px) {
  .home-nav {
    grid-template-columns: 1fr;
  }

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

  .cuba-hero,
  .story-section,
  .policy-context,
  .language-hero,
  .language-sources,
  .briefing-room-hero,
  .briefing-runbook,
  .briefing-summary,
  .data-hero,
  .data-runbook,
  .data-sources,
  .focus-board,
  .focus-hero,
  .focus-scenarios,
  .single-head {
    grid-template-columns: 1fr;
  }

  .hero-visual-stack {
    min-height: 460px;
  }

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

  .home-news-card {
    grid-template-columns: 1fr;
  }

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

  .language-grid,
  .department-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-nav {
    position: static;
  }

  .home-menu,
  .home-lang {
    align-items: flex-start;
    flex-direction: column;
  }

  .cuba-hero {
    padding-top: 46px;
  }

  .hero-visual-stack {
    min-height: 390px;
  }

  .hero-photo {
    inset: 20px 0 20px 0;
  }

  .floating-card {
    width: 160px;
  }

  .card-capital {
    left: 8px;
    top: 0;
  }

  .card-language {
    right: 8px;
    bottom: 24px;
  }

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

  .context-list a {
    grid-template-columns: 1fr;
  }

  .context-list p {
    grid-column: auto;
  }

  .language-hero,
  .language-section,
  .language-sources,
  .briefing-room-hero,
  .briefing-departments,
  .briefing-runbook,
  .data-hero,
  .data-modules,
  .data-matrix,
  .data-runbook,
  .data-sources,
  .focus-hero,
  .focus-priorities,
  .focus-questions,
  .focus-scenarios {
    width: min(100% - 16px, 1240px);
    margin: 18px auto;
  }

  .language-hero,
  .briefing-room-hero,
  .data-hero,
  .focus-hero {
    padding: 28px 18px;
  }

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

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

  .runbook-list article {
    grid-template-columns: 1fr;
  }

  .runbook-list p {
    grid-column: auto;
  }

  .matrix-table,
  .matrix-table > div,
  .matrix-table span {
    display: block;
  }

  .matrix-table > div {
    border-top: 2px solid #d8e0ea;
  }

  .matrix-table span {
    border-left: 0;
    border-top: 1px solid #e5edf5;
  }

  .matrix-table span:first-child {
    border-top: 0;
    background: #f8fbff;
  }

  .matrix-head span:first-child {
    background: transparent;
  }

  .checklist li {
    grid-template-columns: 1fr;
  }

  .focus-axis article,
  .question-list article,
  .scenario-stack article {
    grid-template-columns: 1fr;
  }

  .focus-axis p,
  .scenario-stack p {
    grid-column: auto;
  }
}
