:root {
  --ink: #11201f;
  --ink-soft: #2e4744;
  --paper: #f5efe4;
  --paper-deep: #e3d5bb;
  --panel: rgba(255, 248, 236, 0.82);
  --line: rgba(17, 32, 31, 0.12);
  --moss: #1d5b50;
  --moss-bright: #2f7d70;
  --lava: #8b4331;
  --sand: #d39e55;
  --sky: #8fb7b8;
  --shadow: 0 22px 50px rgba(17, 32, 31, 0.12);
  --radius: 28px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(211, 158, 85, 0.2), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(47, 125, 112, 0.18), transparent 22%),
    linear-gradient(180deg, #f8f2e8 0%, #efe7da 48%, #f6f0e6 100%);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 32, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 32, 31, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
}

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

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

.site-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.site-shell--topbar {
  padding-bottom: 0;
}

.site-shell--issue-detail {
  padding-top: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  margin-bottom: 28px;
  position: sticky;
  top: 14px;
  z-index: 20;
  background: rgba(245, 239, 228, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(17, 32, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.92rem;
}

.brand-copy strong {
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(17, 32, 31, 0.18);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, border-color 160ms ease;
  flex: 0 0 auto;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(29, 91, 80, 0.1);
  border-color: rgba(29, 91, 80, 0.45);
  outline: none;
}

.nav-toggle-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.nav-toggle-bar:nth-child(1) {
  top: 14px;
}

.nav-toggle-bar:nth-child(2) {
  top: 21px;
}

.nav-toggle-bar:nth-child(3) {
  top: 28px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(29, 91, 80, 0.1);
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown-trigger {
  font: inherit;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 180ms ease;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown-trigger.is-active,
.nav-dropdown-trigger:hover {
  background: rgba(29, 91, 80, 0.1);
  color: var(--ink);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--surface, #fff);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 35, 30, 0.12);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: 150ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: rgba(29, 91, 80, 0.1);
  color: var(--ink);
}

.locale-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 32, 31, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 180ms ease;
}

.locale-toggle:hover {
  background: rgba(29, 91, 80, 0.1);
}

main {
  display: grid;
  gap: 24px;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cover-hero,
.page-hero,
.feature-card,
.list-panel,
.support-card,
.quote-band {
  padding: 32px;
}

.cover-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(560px, 82vh, 880px);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  isolation: isolate;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  background: #11201f;
}

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

.cover-hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.cover-hero-slide.is-active {
  opacity: 1;
}

.cover-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.03);
}

.cover-hero-slide.is-active .cover-hero-media {
  animation: cover-pan 6.5s ease forwards;
}

.cover-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 32, 31, 0.12) 0%, rgba(17, 32, 31, 0.25) 42%, rgba(17, 32, 31, 0.88) 100%),
    linear-gradient(120deg, rgba(17, 32, 31, 0.62) 0%, rgba(17, 32, 31, 0.1) 55%, rgba(17, 32, 31, 0.28) 100%);
  z-index: 1;
}

.cover-hero-content {
  position: relative;
  z-index: 2;
}

.cover-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: stretch;
  gap: 22px;
  padding: 40px 0;
}

.cover-hero-content {
  padding: 0;
  max-width: min(760px, 100%);
  color: #fff;
  align-self: center;
  justify-self: center;
  text-align: center;
}

.cover-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.cover-hero-content .lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin-inline: auto;
  white-space: pre-line;
}

.cover-hero-content h1,
.page-hero h1,
.section-head h2,
.feature-card h2,
.support-card h2,
.quote-band blockquote,
.section-minihead h2,
.section-minihead h3 {
  font-family: var(--font-display);
}

.cover-hero-content h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  max-width: none;
}

.page-hero h1 {
  max-width: 14ch;
}

.lede {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 62ch;
  color: var(--ink-soft);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px;
  max-width: 72ch;
  margin: 0 auto;
}

.about-body p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--ink);
}

.about-body strong {
  color: var(--ink-strong, var(--ink));
  font-weight: 700;
}

.about-body .about-signoff {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 8px;
  color: var(--moss);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
}

.contact-page-card {
  padding: 32px;
}

.contact-page-card h2,
.contact-map-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  line-height: 1.03;
  max-width: 14ch;
}

.contact-page-copy,
.contact-map-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-page-card--accent {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(22, 51, 58, 0.98), rgba(44, 86, 82, 0.96));
  color: #fff;
}

.contact-page-card--accent .eyebrow,
.contact-page-card--accent .contact-page-copy,
.contact-page-card--accent .contact-page-note {
  color: rgba(255, 255, 255, 0.8);
}

.contact-page-card--accent .bank-box {
  margin-top: 24px;
  background: rgba(255, 248, 236, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.contact-page-meta {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-page-meta-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.contact-page-card--accent .contact-page-meta-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-page-meta-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--moss);
}

.contact-page-card--accent .contact-page-meta-label {
  color: rgba(255, 255, 255, 0.68);
}

.contact-page-meta-item p {
  margin: 0;
  line-height: 1.7;
}

.contact-page-meta-item a,
.contact-page-note a,
.contact-map-copy a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(84, 116, 187, 0.35);
  text-underline-offset: 0.18em;
}

.contact-page-card--accent .contact-page-meta-item a,
.contact-page-card--accent .contact-page-note a {
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.contact-page-note {
  margin-top: 18px;
  line-height: 1.7;
}

.contact-page-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-page-link {
  min-height: 146px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(140, 165, 216, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.58);
  display: grid;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-page-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(19, 35, 50, 0.08);
  border-color: rgba(84, 116, 187, 0.18);
}

.contact-page-link-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.05;
  color: var(--ink);
}

.contact-page-link-meta {
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-page-link-arrow {
  margin-top: auto;
  color: var(--moss);
  font-weight: 700;
}

.contact-map-shell {
  padding: 0;
}

.contact-map-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(320px, 1.2fr);
  align-items: stretch;
}

.contact-map-copy {
  padding: 32px;
}

.contact-map-copy p + p {
  margin-top: 14px;
}

.contact-map-copy strong {
  color: var(--ink);
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-map-embed {
  position: relative;
  min-height: 340px;
  background: rgba(29, 91, 80, 0.06);
}

.contact-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.walking-pilgrimage-main {
  gap: 0;
}

.pilgrimage-poster {
  --pilgrimage-accent: #d6e83d;
  --pilgrimage-font-ko: "Nanum Myeongjo", "AppleMyungjo", "Batang", "Times New Roman", serif;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 32px 72px rgba(7, 16, 11, 0.36);
  background:
    #1b2620 url("/assets/walking-pilgrimage-page-background.jpeg") center 52% / cover no-repeat;
}

.pilgrimage-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 7, 0.42) 0%, rgba(6, 10, 7, 0.28) 20%, rgba(6, 10, 7, 0.34) 42%, rgba(6, 10, 7, 0.66) 100%),
    linear-gradient(90deg, rgba(7, 10, 8, 0.52) 0%, rgba(7, 10, 8, 0.2) 28%, rgba(7, 10, 8, 0.16) 62%, rgba(7, 10, 8, 0.42) 100%),
    radial-gradient(circle at 24% 18%, rgba(9, 17, 11, 0.4), transparent 34%),
    radial-gradient(circle at 74% 74%, rgba(7, 13, 9, 0.62), transparent 36%);
  z-index: 0;
}

.pilgrimage-poster-inner {
  position: relative;
  z-index: 2;
}

.pilgrimage-poster-header {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(170px, 0.5fr);
  gap: 24px;
  align-items: start;
}

.pilgrimage-title {
  margin: 0;
  color: var(--pilgrimage-accent);
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.pilgrimage-title-line {
  display: block;
}

.pilgrimage-title-nowrap {
  white-space: nowrap;
}

.pilgrimage-slogan {
  margin: clamp(36px, 7vw, 84px) 0 0;
  justify-self: end;
  max-width: 10ch;
  font-size: clamp(1.75rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.pilgrimage-date-bar {
  position: relative;
  margin: 18px 0 0;
  padding: 10px 0 18px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.pilgrimage-date-bar::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(52deg);
  transform-origin: left center;
}

.pilgrimage-date-bar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(65%, 560px);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.pilgrimage-date-bar span {
  white-space: nowrap;
}

.pilgrimage-schedule {
  list-style: none;
  width: min(100%, 570px);
  margin: 28px 0 0 auto;
  padding: 0;
  display: grid;
  gap: 20px;
}

.pilgrimage-stage {
  display: grid;
  gap: 6px;
  text-align: center;
}

.pilgrimage-stage-link {
  display: grid;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 18px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.pilgrimage-stage-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.pilgrimage-stage-link:focus-visible {
  outline: 2px solid rgba(214, 232, 61, 0.9);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.pilgrimage-media-panel {
  padding: 32px;
}

.pilgrimage-media-panel h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.pilgrimage-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #101311;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pilgrimage-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pilgrimage-video-link {
  margin: 16px 0 0;
}

.pilgrimage-video-link a {
  color: var(--moss);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(29, 91, 80, 0.32);
  text-underline-offset: 0.18em;
}

.pilgrimage-media-copy {
  margin: 18px 0 0;
  max-width: 68ch;
  line-height: 1.8;
  color: var(--ink-soft);
}

.pilgrimage-day-toolbar {
  margin-bottom: 16px;
}

.pilgrimage-day-back {
  color: var(--ink);
  background: rgba(255, 252, 245, 0.92);
  border-color: rgba(18, 29, 28, 0.12);
  box-shadow: 0 12px 28px rgba(17, 32, 31, 0.08);
}

.pilgrimage-day-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pilgrimage-day-nav-link,
.pilgrimage-day-nav-spacer {
  min-height: 96px;
  border-radius: 24px;
}

.pilgrimage-day-nav-link {
  display: grid;
  gap: 6px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 245, 0.9);
  box-shadow: 0 18px 38px rgba(17, 32, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pilgrimage-day-nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(17, 32, 31, 0.12);
  border-color: rgba(29, 91, 80, 0.2);
}

.pilgrimage-day-nav-link:focus-visible {
  outline: 2px solid rgba(29, 91, 80, 0.7);
  outline-offset: 3px;
}

.pilgrimage-day-nav-link strong {
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--ink);
}

.pilgrimage-day-nav-link--next {
  justify-items: end;
  text-align: right;
}

.pilgrimage-day-nav-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
}

.pilgrimage-day-nav-spacer {
  display: block;
}

.pilgrimage-photo-grid {
  columns: 3 220px;
  column-gap: 14px;
  margin-top: 22px;
}

.pilgrimage-photo-card {
  margin: 0 0 14px;
  break-inside: avoid;
}

.pilgrimage-photo-card img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(18, 29, 28, 0.12);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pilgrimage-photo-card img:hover,
.pilgrimage-photo-card img:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(18, 29, 28, 0.18);
}

.pilgrimage-photo-card video {
  display: block;
  width: 100%;
  border-radius: 18px;
  background: #101311;
  box-shadow: 0 18px 32px rgba(18, 29, 28, 0.12);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 56px 64px;
  background: rgba(10, 18, 17, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

body.lightbox-is-open {
  overflow: hidden;
}

.photo-lightbox-figure {
  margin: 0;
  max-width: min(100%, 1200px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.photo-lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  background: #101311;
}

.photo-lightbox-caption {
  color: rgba(245, 239, 228, 0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
  max-width: 80ch;
}

.photo-lightbox-caption:empty {
  display: none;
}

.photo-lightbox-counter {
  position: absolute;
  top: 20px;
  left: 24px;
  margin: 0;
  color: rgba(245, 239, 228, 0.72);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.photo-lightbox-counter:empty {
  display: none;
}

.photo-lightbox-close,
.photo-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(245, 239, 228, 0.2);
  border-radius: 999px;
  background: rgba(17, 32, 31, 0.55);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-nav:hover,
.photo-lightbox-close:focus-visible,
.photo-lightbox-nav:focus-visible {
  background: rgba(47, 125, 112, 0.75);
  border-color: rgba(245, 239, 228, 0.55);
  transform: translateY(-1px);
  outline: none;
}

.photo-lightbox-close {
  top: 16px;
  right: 20px;
  font-size: 24px;
}

.photo-lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.photo-lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.photo-lightbox-prev:hover,
.photo-lightbox-next:hover,
.photo-lightbox-prev:focus-visible,
.photo-lightbox-next:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.photo-lightbox-nav[hidden] {
  display: none;
}

@media (max-width: 640px) {
  .photo-lightbox {
    padding: 64px 16px 80px;
  }

  .photo-lightbox-image {
    max-height: calc(100vh - 200px);
  }

  .photo-lightbox-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .photo-lightbox-prev {
    left: 8px;
  }

  .photo-lightbox-next {
    right: 8px;
  }

  .photo-lightbox-counter {
    top: 18px;
    left: 16px;
    font-size: 0.8rem;
  }
}

.pilgrimage-stage-day,
.pilgrimage-stage-route,
.pilgrimage-note,
.pilgrimage-organizer {
  margin: 0;
}

.pilgrimage-stage-day {
  color: var(--pilgrimage-accent);
  font-size: clamp(1.36rem, 2.35vw, 2.18rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.pilgrimage-stage-route {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.22rem, 2.05vw, 1.92rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.pilgrimage-note {
  width: min(100%, 570px);
  margin: 22px 0 0 auto;
  color: var(--pilgrimage-accent);
  font-size: 1.08rem;
  line-height: 1.6;
  text-align: right;
}

.pilgrimage-organizer {
  margin-top: 34px;
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
  line-height: 1.14;
  text-align: center;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.98);
}

[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-title,
[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-slogan,
[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-date-bar,
[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-stage-day,
[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-stage-route,
[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-note,
[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-organizer {
  font-family: var(--pilgrimage-font-ko);
}

[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-title {
  font-size: clamp(2.85rem, 5.1vw, 4.95rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-title-line:nth-child(2) {
  font-size: 0.94em;
}

[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-slogan {
  font-size: clamp(1.5rem, 2.7vw, 2.75rem);
}

[data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-date-bar {
  font-size: clamp(1.7rem, 3.7vw, 2.8rem);
}

[data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-title {
  max-width: 12ch;
  font-size: clamp(2.55rem, 5vw, 4.55rem);
}

[data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-slogan {
  max-width: 11ch;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}

[data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-date-bar {
  font-size: clamp(1.55rem, 2.9vw, 2.5rem);
}

[data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-stage-day {
  font-size: clamp(1.06rem, 1.7vw, 1.42rem);
}

[data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-stage-route {
  font-size: clamp(1rem, 1.55vw, 1.34rem);
  line-height: 1.4;
}

[data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-organizer {
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

@media (max-width: 720px) {
  .about-body {
    padding: 28px;
  }

  .contact-page-card,
  .contact-map-copy {
    padding: 24px;
  }
}

.partners-intro {
  padding: 40px 48px 12px;
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
}

.partners-intro h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 700;
}

.partners-intro .partners-count {
  margin: 0;
  font-size: 1.05rem;
  color: var(--moss);
  font-weight: 600;
}

.partners-list {
  list-style: none;
  margin: 0;
  padding: 12px 48px 48px;
  column-count: 3;
  column-gap: 36px;
}

.partners-list li {
  break-inside: avoid;
  padding: 8px 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  border-bottom: 1px solid rgba(29, 91, 80, 0.08);
}

.partners-list li:last-child {
  border-bottom: 0;
}

@media (max-width: 960px) {
  .partners-list {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .partners-intro {
    padding: 28px 24px 8px;
  }
  .partners-list {
    column-count: 1;
    padding: 8px 24px 28px;
  }
}

.team-block {
  padding: 44px 48px;
}

.team-block + .team-block {
  margin-top: 20px;
}

.team-block-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.team-block-head h2 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--ink);
  font-weight: 700;
}

.team-block-head .team-block-count {
  margin: 0;
  color: var(--moss);
  font-weight: 600;
  font-size: 0.95rem;
}

.team-intro-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
}

.team-intro-body p + p {
  margin-top: 10px;
}

.team-roster {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}

.team-roster li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(29, 91, 80, 0.08);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-roster .team-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

.team-roster .team-role {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.team-leads {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.team-leads li {
  flex: 1 1 160px;
  list-style: none;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(29, 91, 80, 0.08);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.team-committees {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-committee {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(249, 245, 236, 0.6);
  border: 1px solid rgba(29, 91, 80, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-committee--wide {
  grid-column: 1 / -1;
}

.team-committee h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--moss);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.team-committee .team-committee-chair {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.6;
}

.team-committee .team-committee-chair strong {
  font-weight: 700;
  color: var(--ink);
}

.team-committee .team-committee-members {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
}

.team-committee .team-committee-members-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.team-office {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
}

.team-office strong {
  font-weight: 700;
}

@media (max-width: 820px) {
  .team-block {
    padding: 32px 28px;
  }
  .team-roster,
  .team-committees {
    grid-template-columns: 1fr;
  }
  .event-card,
  .article-card {
    grid-template-columns: 1fr;
  }
  .event-detail-layout {
    grid-template-columns: 1fr;
  }
  .event-detail-header,
  .event-detail-info,
  .article-detail-header,
  .article-detail-body {
    padding: 28px 24px;
  }
  .timeline-list {
    padding-left: 20px;
  }
  .timeline-list::before {
    left: 9px;
    transform: none;
  }
  .timeline-list .timeline-year {
    justify-content: flex-start;
    margin: 24px 0 18px -20px;
    padding-left: 20px;
  }
  .timeline-list .timeline-year span {
    font-size: 1.2rem;
    min-width: 72px;
    padding: 8px 16px;
  }
  .timeline-list .timeline-item,
  .timeline-list .timeline-item--right {
    width: auto;
    margin-left: 22px;
    margin-right: 0;
  }
  .timeline-list .timeline-item::before,
  .timeline-list .timeline-item--right::before {
    left: -30px;
    right: auto;
    top: 18px;
    width: 13px;
    height: 13px;
    border-width: 3px;
  }
  .timeline-list .timeline-item--civic::before {
    box-shadow: 0 0 0 3px rgba(29, 91, 80, 0.26);
  }
  .timeline-list .timeline-item--gov::before {
    box-shadow: 0 0 0 3px rgba(139, 67, 49, 0.26);
  }
  .timeline-list .timeline-item::after,
  .timeline-list .timeline-item--right::after {
    left: -22px;
    right: auto;
    top: 24px;
  }
  .timeline-legend {
    padding: 9px 16px;
    gap: 10px 16px;
  }
  .timeline-legend-item {
    font-size: 0.78rem;
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

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

.issues-cta {
  display: flex;
  justify-content: center;
  padding: 4px 0 12px;
}

.library-empty {
  padding: 40px 44px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 232, 0.9)),
    var(--paper);
}

.library-empty .eyebrow {
  margin-bottom: 14px;
}

.library-empty h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.3;
  color: var(--ink);
}

.library-empty p {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--ink-soft);
  line-height: 1.7;
}

.library-empty a {
  color: var(--moss);
  font-weight: 600;
}

@media (max-width: 920px) {
  .library-empty {
    padding: 28px 22px;
  }
}

.issues-cta .button-secondary {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(29, 91, 80, 0.22);
  box-shadow: 0 4px 14px rgba(17, 32, 31, 0.06);
}

.issues-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(29, 91, 80, 0.44);
  box-shadow: 0 8px 22px rgba(17, 32, 31, 0.1);
}

.cover-hero .hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 32, 31, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.cover-hero .button-primary {
  background: rgba(255, 248, 236, 0.96);
  color: var(--ink);
}

.cover-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cover-hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: #fff;
}

.cover-hero-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.88);
}

.cover-hero-caption-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cover-hero-caption-text {
  font-size: 0.98rem;
}

.cover-hero-controls,
.cover-hero-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cover-hero-controls.is-static .cover-hero-arrow,
.cover-hero-controls.is-static .cover-hero-dots {
  opacity: 0.55;
}

.cover-hero-arrow,
.cover-hero-dot {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.cover-hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 1.1rem;
}

.cover-hero-arrow:hover,
.cover-hero-dot:hover {
  transform: translateY(-1px);
}

.cover-hero-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.cover-hero-dot.is-active {
  background: rgba(255, 248, 236, 0.96);
}

.stat-card,
.issue-card,
.archive-card,
.event-card,
.article-card,
.stack-item,
.timeline-item,
.contact-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
}

.stat-card {
  padding: 20px;
  min-height: 120px;
  background: rgba(245, 239, 228, 0.76);
  backdrop-filter: blur(8px);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--ink-soft);
  line-height: 1.5;
}

.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.section-head {
  padding: 10px 4px 0;
}

.section-head h2,
.feature-card h2,
.support-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.feature-card p,
.support-card p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.issue-card,
.archive-card,
.event-card,
.article-card {
  padding: 22px;
}

.issue-card h3,
.archive-card h3,
.event-card h3,
.article-card h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 10px 0 14px;
}

.issue-card p,
.archive-card p,
.event-card p,
.article-card p,
.timeline-item p,
.contact-item p {
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.archive-list {
  display: grid;
  gap: 18px;
}

.event-list {
  display: grid;
  gap: 18px;
}

.archive-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.archive-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17, 32, 31, 0.12);
}

.event-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17, 32, 31, 0.12);
}

.event-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.event-card-poster {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(29, 91, 80, 0.08);
}

.event-card-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 891 / 1260;
  object-fit: cover;
}

.event-card-body {
  min-width: 0;
}

.event-card-facts {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.event-card-facts div {
  display: grid;
  gap: 4px;
}

.event-card-facts dt,
.event-detail-facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.event-card-facts dd,
.event-detail-facts dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17, 32, 31, 0.12);
}

.article-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.article-card--no-thumb {
  grid-template-columns: 1fr;
}

.article-card-thumb {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(29, 91, 80, 0.08);
}

.article-card-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.article-detail-shell {
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.article-detail-header {
  padding: 34px 36px;
}

.article-detail-back {
  margin-bottom: 18px;
}

.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.article-detail-media {
  overflow: hidden;
  padding: 0;
}

.article-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-detail-figure {
  margin: 0;
}

.article-detail-figure img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.article-detail-figure figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.article-detail-subheading {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.55;
  color: var(--moss);
}

.article-detail-summary {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(29, 91, 80, 0.06);
}

.article-detail-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.article-detail-summary p {
  margin: 0;
}

.article-detail-source-link {
  margin-top: 20px;
}

.article-detail-body {
  padding: 30px 36px;
}

.article-detail-body p {
  margin: 0;
  color: var(--ink);
  line-height: 1.82;
}

.article-detail-body p + p {
  margin-top: 16px;
}

.article-detail-body > * + * {
  margin-top: 18px;
}

.article-detail-body .pilgrimage-photo-grid {
  margin-top: 0;
}

.event-detail-shell {
  display: grid;
  gap: 22px;
}

.event-detail-header {
  padding: 34px 36px;
}

.event-detail-back {
  margin-bottom: 18px;
}

.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.event-detail-summary {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(29, 91, 80, 0.06);
}

.event-detail-summary p {
  margin: 0;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.event-detail-poster {
  overflow: hidden;
  padding: 0;
}

.event-detail-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 891 / 1260;
  object-fit: cover;
}

.event-detail-gallery {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid rgba(29, 91, 80, 0.12);
  background: rgba(29, 91, 80, 0.03);
}

.event-detail-gallery[hidden] {
  display: none;
}

.event-detail-gallery-item {
  margin: 0;
  display: grid;
  gap: 8px;
}

.event-detail-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.event-detail-gallery-item figcaption {
  font-size: 0.9rem;
  color: rgba(29, 91, 80, 0.75);
  text-align: center;
}

.event-detail-info {
  padding: 30px 32px;
}

.event-detail-facts {
  display: grid;
  gap: 18px;
  margin: 0;
}

.event-detail-facts div {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(29, 91, 80, 0.12);
}

.event-detail-body {
  margin-top: 28px;
}

.event-detail-body p {
  margin: 0;
  color: var(--ink);
  line-height: 1.82;
}

.event-detail-body a {
  color: var(--moss);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.event-detail-body p + p {
  margin-top: 16px;
}

.issue-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.issue-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17, 32, 31, 0.12);
}

.issue-card-link .issue-card {
  position: relative;
}

.issue-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.issue-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(29, 91, 80, 0.08);
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.issue-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--moss);
  opacity: 0.35;
  transition: opacity 180ms ease;
}

.issue-card-icon svg {
  width: 100%;
  height: 100%;
}

.issue-card-link:hover .issue-card-icon {
  opacity: 0.6;
}

.issue-card-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--moss);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.issue-card-link:hover .issue-card-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.issues-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(320px, 48vh, 480px);
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border-radius: 0;
}

.issues-hero-bg {
  position: absolute;
  inset: 0;
  background: url("/assets/issues-hero.jpg") center / cover no-repeat;
  transform: scale(1.04);
}

.issues-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 32, 31, 0.52);
}

.issues-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.issues-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.issue-hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: clamp(420px, 60vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0;
}

.issue-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: brightness(0.35) saturate(0.8);
}

.issue-hero-bg--gradient {
  transform: none;
  filter: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(120, 158, 219, 0.26), transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(77, 116, 181, 0.22), transparent 24%),
    linear-gradient(140deg, #0d1825 0%, #18304a 42%, #274668 100%);
}

.issue-hero--data .issue-hero-bg {
  transform: none;
  filter: none;
}

.issue-hero-grid,
.issue-hero-bars {
  position: absolute;
  inset: 0;
}

.issue-hero-grid {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
}

.issue-hero-bars {
  inset: auto 32px 34px auto;
  z-index: 1;
  height: 220px;
  display: flex;
  gap: 12px;
  align-items: end;
}

.issue-hero-bar {
  width: clamp(16px, 1.9vw, 24px);
  height: var(--bar-height);
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(184, 194, 213, 0.92));
  box-shadow: 0 18px 36px rgba(9, 18, 29, 0.18);
}

.issue-hero-bar--olive {
  background: linear-gradient(180deg, #d4d99a, #aab55d);
}

.issue-hero-bar--accent {
  background: linear-gradient(180deg, #ffad8d, #f56e54);
}

.issue-hero-icon-scene {
  position: absolute;
  right: clamp(28px, 7vw, 96px);
  bottom: clamp(26px, 6vw, 70px);
  z-index: 1;
  width: min(30vw, 320px);
  aspect-ratio: 1;
}

.issue-hero-icon-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 68%, transparent 70%);
}

.issue-hero-icon-orb--large {
  inset: 8% 8% 8% 8%;
}

.issue-hero-icon-orb--small {
  width: 34%;
  height: 34%;
  right: 2%;
  top: 6%;
}

.issue-hero-icon-orb--accent {
  width: 22%;
  height: 22%;
  left: 6%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 173, 141, 0.24), rgba(255, 173, 141, 0.04) 70%, transparent 72%);
}

.issue-hero-icon-card {
  position: absolute;
  inset: 20%;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(7, 14, 24, 0.22);
  backdrop-filter: blur(8px);
}

.issue-hero-icon {
  width: 54%;
  color: rgba(255, 255, 255, 0.9);
}

.issue-hero-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.issue-hero-split-scene {
  position: absolute;
  right: clamp(28px, 7vw, 96px);
  bottom: clamp(26px, 6vw, 70px);
  z-index: 1;
  width: min(34vw, 360px);
  aspect-ratio: 1;
}

.issue-hero-flight-node {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(7, 14, 24, 0.18);
}

.issue-hero-flight-node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f8fbff;
  box-shadow: 0 0 0 6px rgba(248, 251, 255, 0.08);
}

.issue-hero-flight-path {
  position: absolute;
  top: 18%;
  width: 40%;
  height: 34%;
  border-top: 2px dashed rgba(255, 255, 255, 0.32);
}

.issue-hero-flight-path--left {
  left: 18%;
  border-left: 2px dashed rgba(255, 255, 255, 0.24);
  border-top-left-radius: 140px;
}

.issue-hero-flight-path--right {
  right: 18%;
  border-right: 2px dashed rgba(255, 255, 255, 0.24);
  border-top-right-radius: 140px;
}

.issue-hero-airport-card {
  position: absolute;
  bottom: 14%;
  width: 32%;
  height: 28%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(7, 14, 24, 0.22);
  backdrop-filter: blur(8px);
}

.issue-hero-airport-card--left {
  left: 10%;
}

.issue-hero-airport-card--right {
  right: 10%;
}

.issue-hero-airport-runway {
  position: absolute;
  left: 50%;
  top: 22%;
  width: 8px;
  height: 56%;
  margin-left: -4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(205, 216, 235, 0.88));
}

.issue-hero-airport-runway--cross {
  top: 50%;
  left: 50%;
  width: 46%;
  height: 8px;
  margin-top: -4px;
  margin-left: -23%;
}

.issue-hero-icon-badge {
  position: absolute;
  right: 18%;
  top: 26%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px rgba(7, 14, 24, 0.2);
}

.issue-hero-icon-badge .issue-hero-icon {
  width: 56%;
}

.issue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 32, 31, 0.1) 0%, rgba(17, 32, 31, 0.7) 100%);
}

.issue-hero--data .issue-hero-overlay {
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.16) 0%, rgba(8, 14, 24, 0.86) 100%);
}

.issue-hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  color: #fff;
}

.issue-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  max-width: 18ch;
}

.issue-hero--data .issue-hero-content h1 {
  max-width: 13ch;
}

.issue-hero-summary {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 56ch;
  margin: 0;
}

.issue-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--moss);
  font-weight: 700;
  font-size: 0.92rem;
}

.back-link-light {
  color: rgba(255, 255, 255, 0.78);
}

.back-link:hover {
  text-decoration: underline;
}

.issue-body {
  display: grid;
  gap: 12px;
}

.issue-section {
  padding: 40px 36px;
  border-bottom: 1px solid var(--line);
}

.issue-section:last-child {
  border-bottom: none;
}

.issue-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 32ch;
}

.issue-section-copy {
  display: grid;
  gap: 16px;
}

.issue-section p {
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
  max-width: 72ch;
  font-size: 1.02rem;
}

.issue-section p strong {
  color: var(--ink);
  font-weight: 600;
}

.issue-section--lead {
  padding-top: 48px;
  padding-bottom: 48px;
}

.issue-section--lead h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 24px;
}

.issue-section--lead p {
  font-size: 1.08rem;
  line-height: 1.9;
}

.issue-chart {
  margin-top: 28px;
  padding: 24px 20px 16px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(143, 183, 184, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 241, 248, 0.96));
}

.issue-chart-scroll {
  overflow-x: auto;
  padding-bottom: 6px;
}

.issue-chart-svg {
  display: block;
  max-width: none;
}

.issue-chart-grid-line {
  stroke: rgba(89, 121, 192, 0.18);
  stroke-width: 1;
}

.issue-chart-axis {
  stroke: rgba(55, 73, 115, 0.28);
  stroke-width: 1.4;
}

.issue-chart-axis-label,
.issue-chart-year,
.issue-chart-value {
  font-family: var(--font-body);
}

.issue-chart-axis-label,
.issue-chart-year {
  fill: rgba(55, 73, 115, 0.7);
  font-size: 12px;
}

.issue-chart-value {
  fill: rgba(55, 73, 115, 0.82);
  font-size: 12px;
}

.issue-chart-caption {
  margin: 10px 8px 0;
  color: #6d86c6;
  font-family: var(--font-display);
  font-size: 0.98rem;
  text-align: center;
}

.issue-diagram {
  margin-top: 28px;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #d8daea;
  border: 1px solid rgba(93, 121, 191, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 16px 34px rgba(30, 45, 75, 0.08);
}

.issue-diagram-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.issue-diagram-svg {
  display: block;
  width: 100%;
  min-width: 980px;
  height: auto;
}

.issue-diagram-bg {
  fill: #d8daea;
}

.issue-diagram-title {
  fill: #1e2740;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.issue-diagram-step-text {
  fill: #1e2740;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
}

.issue-diagram-svg--en .issue-diagram-title {
  font-size: 23px;
}

.issue-diagram-svg--en .issue-diagram-step-text {
  font-size: 15px;
}

.issue-airport-site-fill {
  fill: #8a9cc8;
}

.issue-airport-site-stroke {
  fill: none;
  stroke: #ff6647;
  stroke-width: 2.5;
  stroke-linejoin: round;
}

.issue-airport-runway-main,
.issue-airport-runway-secondary,
.issue-airport-runway-extension-outer,
.issue-airport-runway-extension-inner,
.issue-airport-runway-center,
.issue-airport-concourse-bridge,
.issue-airport-taxi-lane {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.issue-airport-runway-main {
  stroke: #c5c4be;
  stroke-width: 30;
}

.issue-airport-runway-secondary {
  stroke: #c4c2ba;
  stroke-width: 27;
}

.issue-airport-runway-extension-outer {
  stroke: #6e82b4;
  stroke-width: 46;
}

.issue-airport-runway-extension-inner {
  stroke: #a7adb9;
  stroke-width: 22;
}

.issue-airport-runway-center {
  stroke: rgba(247, 248, 243, 0.94);
  stroke-width: 4.5;
}

.issue-airport-taxi-lane {
  stroke: #7b91c4;
  stroke-width: 18;
  stroke-linecap: round;
}

.issue-airport-taxi-lane--narrow {
  stroke-width: 12;
}

.issue-airport-apron {
  fill: #a6a7ab;
}

.issue-airport-terminal-expanded {
  fill: #e7e6e1;
}

.issue-airport-concourse {
  fill: rgba(247, 247, 242, 0.95);
}

.issue-airport-concourse-bridge {
  stroke: rgba(247, 247, 242, 0.95);
  stroke-width: 14;
}

.issue-airport-terminal-current {
  fill: none;
  stroke: #7b76a4;
  stroke-width: 3;
  stroke-linejoin: round;
}

.issue-airport-label {
  fill: #1e2d52;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.issue-airport-label--wide {
  font-size: 14px;
}

.issue-diagram-svg--en .issue-airport-label {
  font-size: 13px;
}

.issue-diagram-svg--en .issue-airport-label--wide {
  font-size: 12px;
}

.issue-airport-runway-name {
  fill: rgba(246, 248, 252, 0.96);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.issue-diagram-caption {
  margin: 12px 8px 0;
  color: #3a4a70;
  font-family: var(--font-display);
  font-size: 0.96rem;
  text-align: center;
}

.issue-airport-leader {
  fill: none;
  stroke: #252a36;
  stroke-width: 1.4;
}

.issue-airport-leader-dot {
  fill: #252a36;
}

.issue-airport-legend-box {
  fill: none;
  stroke: #ff6647;
  stroke-width: 2;
}

.issue-airport-legend {
  fill: #333945;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
}

.issue-table-wrap {
  margin-top: 28px;
}

.issue-table-caption {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--moss);
  margin: 0 0 10px;
}

.issue-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.5;
}

.issue-table th,
.issue-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.issue-table thead th {
  background: rgba(29, 91, 80, 0.07);
  color: var(--moss);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.issue-table tbody tr:last-child td {
  border-bottom: none;
}

.issue-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.issue-table tbody tr:hover {
  background: rgba(29, 91, 80, 0.03);
}

.issue-table-wrap--forecast {
  margin-top: 32px;
}

.issue-table--forecast {
  border-top: 4px solid #5d79bf;
}

.issue-table--forecast th,
.issue-table--forecast td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(93, 121, 191, 0.26);
  font-size: 1rem;
}

.issue-table--forecast thead th {
  background: transparent;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  letter-spacing: 0;
  text-transform: none;
}

.issue-table--forecast thead th:last-child,
.issue-table--forecast tbody td:last-child {
  color: #5878c0;
  font-weight: 700;
}

.issue-table--forecast tbody td:first-child {
  font-weight: 500;
}

.issue-table--forecast tbody tr:hover {
  background: rgba(93, 121, 191, 0.04);
}

.issue-table-wrap--forecast .issue-table-caption {
  margin-top: 18px;
  color: #7a91c9;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.issue-figure {
  padding: 0;
  overflow: hidden;
}

.issue-figure img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.issue-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.issue-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.issue-nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(17, 32, 31, 0.1);
}

.issue-nav-next {
  text-align: right;
}

.issue-nav-label {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.issue-nav-title {
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
}

.tag-row,
.meta-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 91, 80, 0.08);
  color: var(--moss);
  font-size: 0.84rem;
  font-weight: 600;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.section-minihead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-minihead h2,
.section-minihead h3 {
  margin: 0;
  font-size: 1.6rem;
}

.section-minihead a {
  color: var(--moss);
  font-weight: 700;
}

.stack-list,
.timeline-list,
.timeline-preview,
.contact-list {
  display: grid;
  gap: 14px;
}

.stack-item,
.timeline-item,
.contact-item {
  padding: 18px;
}

.stack-item strong,
.timeline-item strong,
.contact-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.stack-item span,
.timeline-item time,
.contact-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.stack-item-thumb {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(29, 91, 80, 0.08);
}

.stack-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stack-item-body {
  flex: 1 1 auto;
  min-width: 0;
}

.stack-item-body strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stack-item-link {
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.stack-item-link:hover,
.stack-item-link:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(29, 91, 80, 0.3);
  transform: translateY(-1px);
}

.stack-item-link:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .stack-item-thumb {
    width: 68px;
    height: 68px;
    border-radius: 12px;
  }
}

.support-card .contact-list {
  margin-top: 24px;
  gap: 12px;
}

.support-card .contact-item {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(29, 91, 80, 0.14);
}

.support-card .contact-item strong {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--moss);
}

.support-card .contact-item span {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}


.quote-band {
  background:
    linear-gradient(135deg, rgba(17, 32, 31, 0.96), rgba(29, 91, 80, 0.92)),
    var(--ink);
  color: #fff;
  padding: 42px 32px;
}

.quote-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.quote-band blockquote {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.bank-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 67, 49, 0.1), rgba(211, 158, 85, 0.16));
  border: 1px solid rgba(139, 67, 49, 0.12);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 600;
}

.archive-toolbar {
  padding: 20px;
}

.timeline-preview,
.timeline-list {
  position: relative;
}

.home-timeline-panel {
  padding: 36px 40px 28px;
}

.home-timeline-panel .timeline-preview {
  margin: 4px 0 0;
}

.home-timeline-panel .timeline-preview .timeline-item {
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(29, 91, 80, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 232, 0.92)),
    var(--paper);
  box-shadow: 0 10px 24px rgba(17, 32, 31, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-timeline-panel .timeline-preview .timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(17, 32, 31, 0.1);
  border-color: rgba(29, 91, 80, 0.24);
}

.home-timeline-panel .timeline-preview .timeline-item time {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--moss);
  background: rgba(29, 91, 80, 0.08);
  border-radius: 999px;
}

.home-timeline-panel .timeline-preview .timeline-item strong {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 600;
}

.home-timeline-panel .timeline-link {
  justify-content: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(29, 91, 80, 0.12);
}

.home-timeline-panel .timeline-link .button-secondary {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(29, 91, 80, 0.22);
  box-shadow: 0 4px 14px rgba(17, 32, 31, 0.06);
}

.home-timeline-panel .timeline-link .button-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(29, 91, 80, 0.44);
  box-shadow: 0 8px 22px rgba(17, 32, 31, 0.1);
}

.timeline-preview {
  padding-left: 18px;
}

.timeline-preview::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--moss), rgba(143, 183, 184, 0.16));
}

.timeline-preview .timeline-item {
  position: relative;
  margin-left: 18px;
}

.timeline-preview .timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 5px rgba(211, 158, 85, 0.16);
}

.timeline-list {
  position: relative;
  display: block;
  gap: 0;
  padding: 24px 0 16px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(29, 91, 80, 0.22), rgba(29, 91, 80, 0.5) 18%, rgba(29, 91, 80, 0.5) 82%, rgba(29, 91, 80, 0.16));
  border-radius: 2px;
}

.timeline-list .timeline-year {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 26px;
  z-index: 2;
  pointer-events: none;
}

.timeline-list .timeline-year:first-child {
  margin-top: 0;
}

.timeline-list .timeline-year span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--moss), rgba(17, 32, 31, 0.92));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(29, 91, 80, 0.22);
  border: 3px solid rgba(248, 243, 232, 0.98);
}

.timeline-list .timeline-item {
  position: relative;
  width: calc(50% - 40px);
  margin: 0 0 18px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(29, 91, 80, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 232, 0.96)),
    var(--paper);
  box-shadow: 0 14px 30px rgba(17, 32, 31, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline-list .timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(17, 32, 31, 0.12);
  border-color: rgba(29, 91, 80, 0.28);
}

.timeline-list .timeline-item::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -40px;
  width: 14px;
  height: 2px;
  background: rgba(29, 91, 80, 0.32);
}

.timeline-list .timeline-item::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -47px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--sand);
  border: 3px solid rgba(248, 243, 232, 0.98);
  box-shadow: 0 0 0 3px rgba(29, 91, 80, 0.28);
  z-index: 1;
}

.timeline-list .timeline-item--right {
  margin-left: auto;
}

.timeline-list .timeline-item--right::before {
  right: auto;
  left: -47px;
}

.timeline-list .timeline-item--right::after {
  right: auto;
  left: -40px;
}

.timeline-list .timeline-item time {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--moss);
  background: rgba(29, 91, 80, 0.08);
  border-radius: 999px;
}

.timeline-list .timeline-item strong {
  display: block;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
}

.timeline-list .timeline-item p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.timeline-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 0 auto 30px;
  padding: 10px 22px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(29, 91, 80, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 32, 31, 0.06);
}

.timeline-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.timeline-legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 3px rgba(29, 91, 80, 0.22);
}

.timeline-legend-item--civic .timeline-legend-dot {
  background: var(--moss);
  box-shadow: 0 0 0 3px rgba(29, 91, 80, 0.22);
}

.timeline-legend-item--gov .timeline-legend-dot {
  background: var(--lava);
  box-shadow: 0 0 0 3px rgba(139, 67, 49, 0.24);
}

.timeline-list .timeline-item--civic {
  border-color: rgba(29, 91, 80, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 242, 239, 0.95)),
    var(--paper);
}

.timeline-list .timeline-item--civic:hover {
  border-color: rgba(29, 91, 80, 0.36);
  box-shadow: 0 20px 44px rgba(17, 60, 54, 0.12);
}

.timeline-list .timeline-item--civic::before {
  background: var(--moss);
  box-shadow: 0 0 0 3px rgba(29, 91, 80, 0.3);
}

.timeline-list .timeline-item--civic::after {
  background: rgba(29, 91, 80, 0.4);
}

.timeline-list .timeline-item--civic time {
  color: var(--moss);
  background: rgba(29, 91, 80, 0.1);
}

.timeline-list .timeline-item--gov {
  border-color: rgba(139, 67, 49, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 235, 224, 0.95)),
    var(--paper);
}

.timeline-list .timeline-item--gov:hover {
  border-color: rgba(139, 67, 49, 0.44);
  box-shadow: 0 20px 44px rgba(92, 38, 22, 0.14);
}

.timeline-list .timeline-item--gov::before {
  background: var(--lava);
  box-shadow: 0 0 0 3px rgba(139, 67, 49, 0.3);
}

.timeline-list .timeline-item--gov::after {
  background: rgba(139, 67, 49, 0.42);
}

.timeline-list .timeline-item--gov time {
  color: var(--lava);
  background: rgba(139, 67, 49, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cover-pan {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.09);
  }
}

.candidates-tabs-panel {
  padding-block: 28px;
}

.candidates-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.candidates-tab {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(17, 32, 31, 0.55);
  padding: 12px 18px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.candidates-tab:hover {
  color: var(--moss);
}

.candidates-tab.is-active {
  color: var(--moss);
  border-bottom-color: var(--moss);
}

.candidates-tab:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 4px;
  border-radius: 4px;
}

.candidates-poster {
  margin: 0;
}

.candidates-poster[hidden] {
  display: none;
}

.candidates-poster > img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(17, 32, 31, 0.12);
}

.candidates-poster-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.candidates-poster-item {
  margin: 0;
}

.candidates-poster-item figcaption {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--moss);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.candidates-poster-item img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(17, 32, 31, 0.12);
}

@media (max-width: 920px) {
  .two-up,
  .grid-2,
  .grid-3,
  .contact-page-grid,
  .contact-map-layout,
  .support-grid,
  .issue-nav {
    grid-template-columns: 1fr;
  }

  .home-timeline-panel {
    padding: 26px 22px 20px;
  }

  .home-timeline-panel .timeline-preview .timeline-item {
    padding: 16px 18px;
  }

  .contact-page-links {
    grid-template-columns: 1fr;
  }

  .cover-hero-content h1,
  .page-hero h1,
  .issue-hero-content h1 {
    max-width: none;
  }

  .topbar {
    border-radius: 30px;
    padding: 18px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .pilgrimage-poster-header {
    grid-template-columns: 1fr;
  }

  .pilgrimage-slogan {
    justify-self: start;
    margin-top: 0;
    max-width: none;
    text-align: left;
  }

  .pilgrimage-date-bar::after {
    width: min(100%, 620px);
  }

  .pilgrimage-schedule,
  .pilgrimage-note {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 12px;
  }

  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .topbar-actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

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

  .cover-hero,
  .page-hero,
  .feature-card,
  .list-panel,
  .support-card,
  .quote-band {
    padding: 24px;
  }

  .issue-section {
    padding: 28px 20px;
  }

  .issue-table {
    font-size: 0.82rem;
  }

  .issue-table th,
  .issue-table td {
    padding: 8px 10px;
  }

  .issue-hero-bars {
    inset: auto 18px 22px auto;
    height: 158px;
    gap: 8px;
  }

  .issue-hero-icon-scene {
    right: 18px;
    bottom: 24px;
    width: min(38vw, 220px);
  }

  .issue-hero-split-scene {
    right: 18px;
    bottom: 24px;
    width: min(42vw, 240px);
  }

  .issue-hero-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .issue-chart {
    padding: 20px 14px 12px;
  }

  .issue-diagram {
    border-radius: 24px;
  }

  .issue-diagram-svg {
    min-width: 920px;
  }

  .issue-chart-value {
    display: none;
  }

  .issue-chart-caption {
    font-size: 0.88rem;
  }

  .issue-table--forecast th,
  .issue-table--forecast td {
    padding: 14px 12px;
  }

  .issue-hero-content {
    padding: 32px 0;
  }

  .cover-hero {
    padding: 0;
    min-height: 620px;
  }

  .cover-hero-inner {
    width: min(100% - 20px, 1160px);
    padding: 28px 0 24px;
  }

  .cover-hero-content {
    padding: 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .timeline-link {
    flex-direction: column;
  }

  .pilgrimage-poster {
    padding: 24px 20px 28px;
    border-radius: 28px;
    background-position: 56% 44%;
  }

  .pilgrimage-title {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  [data-page="walking-pilgrimage"][data-locale="ko"] .pilgrimage-title {
    font-size: clamp(2.4rem, 10vw, 3.65rem);
  }

  .pilgrimage-slogan {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .pilgrimage-date-bar {
    font-size: clamp(1.28rem, 6.2vw, 2rem);
    padding-bottom: 16px;
  }

  .pilgrimage-date-bar span {
    display: block;
    margin-top: 6px;
  }

  .pilgrimage-stage {
    text-align: left;
  }

  .pilgrimage-stage-day {
    font-size: 1.16rem;
  }

  .pilgrimage-stage-route {
    font-size: 1.06rem;
    line-height: 1.5;
  }

  .pilgrimage-note {
    text-align: left;
    font-size: 0.98rem;
  }

  .pilgrimage-organizer {
    font-size: 1.34rem;
  }

  .pilgrimage-day-nav {
    grid-template-columns: 1fr;
  }

  .pilgrimage-day-nav-spacer {
    display: none;
  }

  .pilgrimage-day-nav-link--next {
    justify-items: start;
    text-align: left;
  }

  [data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-title {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 3.3rem);
  }

  [data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-stage-day {
    font-size: 1rem;
  }

  [data-page="walking-pilgrimage"][data-locale="en"] .pilgrimage-stage-route {
    font-size: 0.96rem;
  }
}

@media (max-width: 820px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 28px;
  }

  .topbar-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
    order: 1;
  }

  .topbar-actions .locale-toggle {
    order: 2;
    margin-left: auto;
  }

  .topbar-actions .nav {
    order: 3;
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 6px 0 4px;
  }

  .topbar-actions.is-nav-open .nav {
    display: flex;
  }

  .nav a,
  .nav-dropdown-trigger {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
    position: relative;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    padding: 6px;
    opacity: 1;
    display: none;
    visibility: visible;
    box-shadow: none;
    background: rgba(47, 125, 112, 0.08);
  }

  .nav-dropdown.is-open > .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown.is-open .nav-dropdown-trigger::after {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu a {
    white-space: normal;
  }
}

/* ---------- Video library ---------- */

.page-hero-sub {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.page-hero-sub a {
  color: var(--moss);
  font-weight: 600;
}

.page-hero-sub a:hover {
  text-decoration: underline;
}

.video-grid-panel {
  padding: 30px 30px 34px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px 24px;
}

.video-grid-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 30px;
  text-align: center;
  color: var(--ink-soft);
}

.video-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease;
}

.video-card-link:hover {
  transform: translateY(-3px);
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-card-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0a0f0e;
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 24px rgba(17, 32, 31, 0.14);
  transition: box-shadow 180ms ease;
}

.video-card-link:hover .video-card-thumb {
  box-shadow: 0 16px 34px rgba(17, 32, 31, 0.22);
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease, opacity 200ms ease;
}

.video-card-link:hover .video-card-thumb img {
  transform: scale(1.04);
  opacity: 0.92;
}

.video-card-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(10, 15, 14, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--moss);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(17, 32, 31, 0.3);
}

.video-card-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.video-card-link:hover .video-card-play,
.video-card-link:focus-visible .video-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 2px;
}

.video-card-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.video-card-author {
  font-weight: 600;
  color: var(--moss);
}

.video-card-author + .video-card-date::before {
  content: "·";
  margin-right: 8px;
  color: var(--ink-soft);
  opacity: 0.6;
}

.video-card-date {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ---------- Video detail (player) page ---------- */

.video-detail-shell {
  display: grid;
  gap: 22px;
}

.video-detail-header {
  padding: 34px 36px;
}

.video-detail-back {
  margin-bottom: 18px;
}

.video-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.video-detail-header h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.3;
  color: var(--ink);
}

.video-detail-player {
  padding: 18px;
  background: #0a0f0e;
}

.video-player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

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

.video-detail-credit {
  margin: 16px 4px 0;
  color: rgba(245, 239, 228, 0.78);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.video-detail-credit a {
  color: var(--sand);
  font-weight: 600;
}

.video-detail-credit a:hover {
  text-decoration: underline;
}

.video-detail-body {
  padding: 30px 36px;
  color: var(--ink);
  line-height: 1.75;
  font-size: 0.98rem;
}

.video-detail-body p {
  margin: 0 0 14px;
}

.video-detail-body p:last-child {
  margin-bottom: 0;
}

.video-detail-body a {
  color: var(--moss);
  font-weight: 600;
}

@media (max-width: 920px) {
  .video-grid-panel {
    padding: 22px 18px 26px;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px 16px;
  }

  .video-detail-header {
    padding: 26px 22px;
  }

  .video-detail-player {
    padding: 12px;
  }

  .video-detail-body {
    padding: 24px 22px;
  }
}

@media (max-width: 560px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .video-card-play {
    width: 46px;
    height: 46px;
  }

  .video-card-play svg {
    width: 22px;
    height: 22px;
  }
}
