/* KCAMD v2 — dark navy + teal editorial theme
   Inspired by Korean cultural arts associations: deep midnight backgrounds,
   teal accents, gold trim, photo-led editorial layouts */

:root {
  /* Brand */
  --bg:        oklch(0.16 0.04 250);   /* deep midnight navy */
  --bg-2:      oklch(0.21 0.05 250);   /* card / surface raised */
  --bg-3:      oklch(0.26 0.05 250);   /* hover */
  --ink:       oklch(0.98 0.01 250);
  --ink-2:     oklch(0.86 0.015 250);
  --ink-3:     oklch(0.62 0.02 250);
  --line:      oklch(0.32 0.04 250);
  --line-2:    oklch(0.42 0.04 250);

  --paper:     oklch(0.99 0.005 80);   /* white card */
  --paper-2:   oklch(0.96 0.008 80);
  --paper-3:   oklch(0.92 0.01 80);
  --paper-ink: oklch(0.18 0.02 250);   /* text on paper */
  --paper-line: oklch(0.88 0.01 80);

  --teal:        oklch(0.62 0.10 200);
  --teal-bright: oklch(0.72 0.12 200);
  --teal-deep:   oklch(0.48 0.10 200);
  --gold:        oklch(0.78 0.13 80);
  --gold-deep:   oklch(0.65 0.12 75);
  --korean-red:  oklch(0.60 0.18 25);

  --serif-en: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --serif-kr: "Noto Serif KR", "Nanum Myeongjo", serif;
  --sans-kr: "Noto Sans KR", "Pretendard", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--sans-kr); -webkit-font-smoothing: antialiased; }
body { min-height: 100vh; }
button { font: inherit; color: inherit; cursor: default; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ───────────────────────────────────────── */
.app { display: flex; flex-direction: column; min-height: 100vh; }
.main { flex: 1; }

/* ── Top nav (sticky) ───────────────────────────────────────── */
.topnav {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.13 0.04 250 / 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid oklch(0.25 0.04 250);
}
.tn-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  gap: 24px;
}
.tn-brand { display: flex; align-items: center; }
.tn-logo {
  height: 40px; width: auto; display: block;
  background: oklch(0.96 0.005 80 / 0.92);
  padding: 4px 10px;
  border-radius: 4px;
}
.tn-brand-mark {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 50%; border: 1.5px solid var(--gold);
  background: oklch(0.16 0.04 250);
  display: grid; place-items: center;
  position: relative;
}
.tn-brand-text { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.tn-brand-en { font-family: var(--serif-en); font-size: 11px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.tn-brand-kr { font-family: var(--serif-kr); font-size: 16px; font-weight: 500; letter-spacing: 0.02em; color: var(--ink); }

.tn-links { display: flex; align-items: center; gap: 4px; }
.tn-link {
  position: relative;
  padding: 12px 16px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  font-family: var(--sans-kr);
  display: inline-flex; align-items: center; gap: 6px;
}
.tn-link:hover { color: var(--teal-bright); }
.tn-link.active { color: var(--teal-bright); }
.tn-link.active::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 2px; background: var(--teal); border-radius: 2px;
}
.tn-link .caret { font-size: 9px; opacity: 0.6; }
.tn-item { position: relative; }
.tn-dropdown {
  position: absolute; top: calc(100% - 4px); left: 0;
  min-width: 200px;
  background: oklch(0.13 0.04 250);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 0;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
  z-index: 60;
}
.tn-dd-item {
  padding: 11px 22px;
  font-size: 13.5px;
  color: var(--ink-2);
  font-family: var(--sans-kr);
  border-left: 3px solid transparent;
}
.tn-dd-item:hover { background: var(--bg-2); color: var(--teal-bright); border-left-color: var(--teal); }
.tn-dd-item.on { background: var(--teal); color: var(--ink); border-left-color: var(--gold); font-weight: 500; }

/* Press list */
.press-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 200ms, transform 200ms;
}
.press-card:hover { border-color: var(--teal); transform: translateX(4px); }
.press-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 8px; }
.press-source { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--gold-deep); border-radius: 999px; }
.press-dt { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
.press-ttl { font-family: var(--serif-kr); font-size: 17px; color: var(--ink); line-height: 1.5; }
.press-cta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--teal-bright); white-space: nowrap; }

/* Event calendar list */
.event-list { display: flex; flex-direction: column; gap: 14px; }
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  padding: 22px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: center;
}
.event-date { text-align: center; padding-right: 24px; border-right: 1px solid var(--line); }
.event-day { font-family: var(--serif-en); font-size: 48px; font-weight: 500; color: var(--teal-bright); line-height: 1; }
.event-mo { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-3); margin-top: 6px; }
.event-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 10px; border: 1px solid currentColor; border-radius: 2px;
  margin-bottom: 8px;
}
.event-ttl { font-family: var(--serif-kr); font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.event-meta { display: flex; gap: 22px; font-family: var(--sans-kr); font-size: 12.5px; color: var(--ink-3); }
.event-meta span { display: inline-flex; gap: 6px; align-items: center; }

/* Apply form */
.apply-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.apply-side {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.apply-side-head {
  padding: 16px 22px;
  background: var(--teal);
  color: var(--ink);
  font-family: var(--serif-kr); font-weight: 500; font-size: 14px;
  letter-spacing: 0.02em;
}
.apply-side-item {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  display: flex; flex-direction: column; gap: 4px;
}
.apply-side-item:last-child { border-bottom: 0; }
.apply-side-item.on { background: oklch(0.24 0.05 250); border-left-color: var(--teal); }
.apply-side-kr { font-family: var(--serif-kr); font-size: 15px; color: var(--ink); font-weight: 500; }
.apply-side-en { font-family: var(--serif-en); font-style: italic; font-size: 12px; color: var(--teal-bright); }
.apply-side-desc { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; line-height: 1.55; }
.apply-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
}
.apply-form-head { display: flex; justify-content: space-between; align-items: end; padding-bottom: 18px; border-bottom: 1px solid var(--teal); margin-bottom: 24px; }
.apply-form-head h3 { font-family: var(--serif-kr); font-size: 22px; font-weight: 500; margin: 0; color: var(--ink); }
.apply-form-head span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--ink-3); }
.apply-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.apply-field { display: flex; flex-direction: column; gap: 6px; }
.apply-field.full { grid-column: 1 / -1; }
.apply-field span { font-family: var(--sans-kr); font-size: 12px; color: var(--ink-2); letter-spacing: 0.02em; }
.apply-field input, .apply-field textarea {
  background: oklch(0.13 0.04 250);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font: 13.5px/1.5 var(--sans-kr);
  padding: 11px 14px;
  outline: none;
  transition: border-color 160ms;
}
.apply-field input:focus, .apply-field textarea:focus { border-color: var(--teal); }
.apply-field textarea { resize: vertical; min-height: 110px; }
.apply-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }

.tn-right { display: flex; align-items: center; gap: 14px; }
.lang {
  display: inline-flex; gap: 2px; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-3);
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px;
}
.lang .on { color: var(--teal-bright); font-weight: 600; }
.tn-burger {
  width: 36px; height: 36px;
  display: none; place-items: center;
  color: var(--ink-2);
}

/* ── Section banner (subpage hero) ───────────────────────────────────────── */
.banner {
  position: relative;
  min-height: 320px;
  display: flex; align-items: end;
  padding: 72px 32px 56px;
  background:
    linear-gradient(180deg, oklch(0.16 0.04 250 / 0.5), oklch(0.14 0.04 250 / 0.85)),
    radial-gradient(800px 500px at 70% 30%, oklch(0.32 0.06 25 / 0.45), transparent 60%),
    radial-gradient(700px 500px at 30% 80%, oklch(0.28 0.06 250 / 0.6), transparent 60%),
    var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.banner::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    oklch(0.24 0.04 250) 0 8px,
    oklch(0.22 0.04 250) 8px 16px);
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}
.banner-inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; width: 100%; }
.banner-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--teal-bright); text-transform: uppercase; margin-bottom: 14px; }
.banner-title-kr { font-family: var(--serif-kr); font-size: 56px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; color: var(--ink); }
.banner-sub { margin-top: 14px; font-family: var(--serif-kr); font-size: 16px; color: var(--ink-2); max-width: 680px; line-height: 1.7; word-break: keep-all; }
.banner-mark {
  position: absolute; right: -40px; bottom: -60px;
  width: 360px; height: 360px;
  background:
    radial-gradient(circle at 35% 35%, oklch(0.55 0.12 60 / 0.6), transparent 60%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
.banner-photo {
  position: absolute; right: 8%; top: 18%; bottom: 0;
  width: 280px;
  background-image: url('assets/hero-c.jpg');
  background-size: cover; background-position: center;
  border: 1px solid var(--line-2);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.banner-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0.16 0.04 250 / 0.6) 100%);
}

/* ── Section primitives ───────────────────────────────────────── */
.section { max-width: 1320px; margin: 0 auto; padding: 88px 32px; }
.section.bone { background: var(--paper); color: var(--paper-ink); max-width: 100%; padding-left: 0; padding-right: 0; }
.section.bone .section-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section.tight { padding: 56px 32px; }

.sect-title {
  text-align: center;
  margin: 0 auto 56px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.sect-title h2 {
  font-family: var(--serif-kr);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.sect-title .en {
  font-family: var(--serif-en);
  font-size: 16px;
  font-style: italic;
  color: var(--teal-bright);
  display: inline-flex; align-items: center; gap: 12px;
}
.sect-title .en::before, .sect-title .en::after {
  content: ''; width: 60px; height: 1px; background: var(--line-2); display: inline-block;
}
.section.bone .sect-title h2 { color: var(--paper-ink); }
.section.bone .sect-title .en { color: var(--teal-deep); }
.section.bone .sect-title .en::before, .section.bone .sect-title .en::after { background: var(--paper-line); }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--sans-kr);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.btn-teal { background: var(--teal); color: var(--ink); }
.btn-teal:hover { background: var(--teal-bright); }
.btn-outline { border-color: var(--teal); color: var(--teal-bright); }
.btn-outline:hover { background: var(--teal); color: var(--ink); }
.btn-ghost { color: var(--ink); border-color: oklch(0.5 0.04 250); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-bright); }
.btn-paper { background: var(--paper-ink); color: var(--paper); }
.btn-paper:hover { background: var(--teal-deep); }

/* ── Hero (Home) — full-bleed photo ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  padding: 80px 32px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 700px at 70% 50%, oklch(0.35 0.12 220 / 0.55), transparent 65%),
    radial-gradient(900px 700px at 30% 30%, oklch(0.28 0.06 250 / 0.7), transparent 60%),
    repeating-linear-gradient(45deg, oklch(0.18 0.04 250) 0 10px, oklch(0.16 0.04 250) 10px 20px);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, oklch(0.16 0.04 250 / 0.6) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; width: 100%; }
.hero-l { max-width: 640px; }
.hero-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.hero-title-kr {
  font-family: var(--serif-kr);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-title-kr em { color: var(--teal-bright); font-style: normal; }
.hero-title-en {
  margin-top: 18px;
  font-family: var(--serif-en);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-2);
  font-weight: 400;
}
.hero-lead {
  margin-top: 22px;
  font-family: var(--serif-kr);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-cta { margin-top: 32px; display: flex; gap: 12px; }

/* Hero floating dancer */
.hero-photo {
  position: absolute;
  right: 6%; top: 50%; transform: translateY(-50%);
  width: min(760px, 46vw); aspect-ratio: 3/2;
  background-image: url('assets/hero-a.jpg');
  background-size: cover; background-position: center;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0.16 0.04 250 / 0.5) 100%);
  border-radius: 4px;
}
.hero-photo .lbl, .gal-thumb .lbl, .overlap-row .photo .lbl,
.pres-photo .lbl, .map-frame > span:not(.map-pin), .leader-photo > span { display: none !important; }

/* ── Asymmetric overlap card (About teaser on home) ───────────────────────────────────────── */
.overlap-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: -40px;
  align-items: center;
  position: relative;
  margin: 0 auto;
}
.overlap-row .photo {
  aspect-ratio: 4/5;
  background-image: url('assets/fan.jpg');
  background-size: cover; background-position: center;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
}
.overlap-row .photo .lbl { position: absolute; left: 14px; bottom: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ink-3); text-transform: uppercase; }
.overlap-row .card-white {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 44px 40px;
  border-radius: 4px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5);
  margin-left: -60px;
  position: relative; z-index: 2;
}
.overlap-row .card-white h3 {
  font-family: var(--serif-kr); font-size: 28px; font-weight: 500;
  margin: 0 0 6px;
}
.overlap-row .card-white .en {
  font-family: var(--serif-en); font-size: 14px; font-style: italic; color: var(--teal-deep);
}
.overlap-row .card-white p {
  font-family: var(--serif-kr); font-size: 14.5px; line-height: 1.85;
  color: oklch(0.32 0.02 250); margin: 22px 0;
}

/* Notice list (소식) */
.notice-list { display: flex; flex-direction: column; }
.notice-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
  font-family: var(--serif-kr);
  align-items: center;
}
.notice-row .num { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; }
.notice-row .ttl { color: var(--ink); }
.notice-row .dt { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }

/* ── Programs (4 columns w/ icons) ───────────────────────────────────────── */
.prog-row-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.prog-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
  transition: border-color 200ms, transform 200ms;
}
.prog-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.prog-card .ico {
  width: 56px; height: 56px;
  border: 1.5px solid var(--teal); border-radius: 50%;
  display: grid; place-items: center;
  color: var(--teal-bright);
}
.prog-card h4 { font-family: var(--serif-kr); font-size: 17px; font-weight: 500; margin: 0; color: var(--ink); }
.prog-card .en { font-family: var(--serif-en); font-size: 12px; color: var(--ink-3); font-style: italic; }
.prog-card p { font-size: 12.5px; line-height: 1.65; color: var(--ink-3); margin: 0; }

/* ── Photo gallery grid ───────────────────────────────────────── */
.gal-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.gal-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.gal-thumb {
  aspect-ratio: 4/3;
  background-color: oklch(0.24 0.05 250);
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex; align-items: end;
  padding: 14px;
}
.gal-card:nth-child(1) .gal-thumb { background-image: url('assets/hero-a.jpg'); }
.gal-card:nth-child(2) .gal-thumb { background-image: url('assets/hero-b.jpg'); }
.gal-card:nth-child(3) .gal-thumb { background-image: url('assets/hero-c.jpg'); }
.gal-card:nth-child(4) .gal-thumb { background-image: url('assets/steps.jpg'); }
.gal-card:nth-child(5) .gal-thumb { background-image: url('assets/dsc1.jpg'); }
.gal-card:nth-child(6) .gal-thumb { background-image: url('assets/dsc2.jpg'); }
.gal-card:nth-child(7) .gal-thumb { background-image: url('assets/fest.jpg'); }
.gal-card:nth-child(8) .gal-thumb { background-image: url('assets/fan.jpg'); }
.gal-card:nth-child(9) .gal-thumb { background-image: url('assets/hero-0.jpg'); }
.gal-thumb .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: oklch(0.16 0.04 250 / 0.7);
  border: 1px solid var(--teal);
  display: grid; place-items: center;
  color: var(--teal-bright);
}
.gal-thumb .lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; }
.gal-card .meta { padding: 14px 18px; }
.gal-card .ttl { font-family: var(--serif-kr); font-size: 14px; color: var(--ink); }
.gal-card .dt { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.04em; }

/* ── Tab bar (sub nav) ───────────────────────────────────────── */
.tabbar {
  display: grid;
  grid-template-columns: repeat(var(--tabs, 4), 1fr);
  background: var(--bg-2);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.tab {
  padding: 16px 18px;
  text-align: center;
  font-size: 14px;
  font-family: var(--sans-kr);
  color: var(--ink-2);
  border-right: 1px solid var(--line);
}
.tab:last-child { border-right: 0; }
.tab.on { background: var(--teal); color: var(--ink); font-weight: 500; }
.tab:hover:not(.on) { background: var(--bg-3); color: var(--ink); }

/* ── White-card content (협회소개 sections) ───────────────────────────────────────── */
.card-white-block {
  background: var(--paper); color: var(--paper-ink);
  padding: 80px 32px;
}
.card-white-inner { max-width: 1080px; margin: 0 auto; }

/* President message layout */
.pres-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.pres-photo {
  aspect-ratio: 3/4;
  background-image: url('assets/dsc2.jpg');
  background-size: cover; background-position: center;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.25);
}
.pres-photo .lbl { position: absolute; left: 14px; bottom: 14px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; color: oklch(0.45 0.02 250); text-transform: uppercase; }
.pres-text h3 {
  font-family: var(--serif-kr); font-size: 26px; font-weight: 500;
  line-height: 1.45; color: var(--paper-ink); margin: 0 0 24px;
}
.pres-text p { font-family: var(--serif-kr); font-size: 14.5px; line-height: 1.95; color: oklch(0.32 0.02 250); margin: 0 0 14px; }
.pres-text .sig { margin-top: 22px; font-family: var(--serif-kr); font-size: 14px; color: var(--paper-ink); }
.pres-text .sig b { font-weight: 500; }

/* History timeline (decade) */
.tl-decade { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--paper-line); align-items: start; }
.tl-decade .yr { font-family: var(--serif-en); font-size: 32px; font-weight: 500; letter-spacing: -0.01em; color: var(--paper-ink); }
.tl-decade ul { margin: 6px 0 0; padding: 0 0 0 18px; list-style: disc; color: oklch(0.32 0.02 250); font-family: var(--serif-kr); font-size: 14px; line-height: 1.95; }
.tl-decade li { padding: 2px 0; }

/* Org chart */
.org-chart {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.org-top { margin-bottom: 28px; }
.org-pill {
  padding: 10px 28px;
  background: var(--teal); color: var(--ink);
  border-radius: 999px;
  font-family: var(--sans-kr); font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  word-break: keep-all; line-height: 1.4; text-align: center;
}
.org-pill.alt { background: oklch(0.32 0.10 250); color: var(--ink); }
.org-pill.dim { background: oklch(0.92 0.01 250); color: var(--paper-ink); }
.org-row { display: flex; gap: 32px; align-items: center; position: relative; }
.org-row::before {
  content: ''; position: absolute; left: 50%; top: -18px; width: 1px; height: 18px; background: var(--paper-line);
}
.org-pair { display: flex; align-items: center; justify-content: center; gap: 0; position: relative; }
.org-pair::after { content: ''; position: absolute; left: 50%; top: 50%; bottom: 0; width: 1px; background: var(--paper-line); }
.org-pair > .org-pill { flex: 1 1 0; max-width: 260px; justify-content: center; text-align: center; }
.org-hconn { width: 48px; height: 1px; background: var(--paper-line); flex: 0 0 48px; }
.org-vline { width: 1px; height: 26px; background: var(--paper-line); display: block; }
.org-trunk-aside { position: relative; width: 100%; height: 84px; display: flex; justify-content: center; }
.org-trunk-aside::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--paper-line); }
.org-aside-right { position: absolute; left: 50%; top: 50%; transform: translateY(-50%); display: flex; align-items: center; }
.org-aside-hconn { width: 56px; height: 1px; background: var(--paper-line); flex: 0 0 56px; }
.org-branch { position: relative; display: flex; justify-content: center; align-items: flex-start; width: 100%; }
.org-branch::before {
  content: ''; position: absolute; top: 0; left: 12.5%; right: 12.5%; height: 1px; background: var(--paper-line);
}
.org-branch-item { flex: 1; max-width: 250px; display: flex; flex-direction: column; align-items: center; gap: 0; padding: 0 10px; }
.org-vline-sm { height: 26px; }

/* Notices table */
.tbl {
  width: 100%; border-collapse: collapse;
  font-family: var(--sans-kr); font-size: 13.5px;
}
.tbl thead th {
  text-align: left;
  padding: 14px 16px;
  background: var(--bg-2);
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; font-weight: 500;
}
.tbl tbody td { padding: 16px; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.tbl tbody tr:hover { background: var(--bg-2); }
.tbl .col-num { width: 60px; color: var(--ink-3); font-family: var(--mono); font-size: 12px; text-align: center; }
.tbl .col-ttl { color: var(--ink); }
.tbl .col-author { width: 120px; color: var(--ink-3); }
.tbl .col-dt { width: 110px; color: var(--ink-3); font-family: var(--mono); font-size: 11.5px; }
.tbl .col-views { width: 60px; color: var(--ink-3); text-align: center; font-family: var(--mono); font-size: 11.5px; }

/* Pagination */
.pager { display: flex; gap: 4px; justify-content: center; margin-top: 32px; }
.pager a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-2); border-radius: 4px;
}
.pager a.on { background: var(--teal); color: var(--ink); border-color: var(--teal); }
.pager a.disabled { opacity: 0.35; pointer-events: none; }

/* Reusable pagination bar */
.pagi { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.pagi-info { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-3); order: 1; }
.pagi-pages { display: flex; gap: 4px; order: 2; flex: 1; justify-content: center; }
.pagi-size { display: flex; align-items: center; gap: 8px; order: 3; }
.pagi-size span { font-family: var(--sans-kr); font-size: 12px; color: var(--ink-3); }
.pagi-btn {
  min-width: 32px; height: 32px; padding: 0 9px;
  display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--bg-2); color: var(--ink-2);
  border-radius: 4px; font-size: 13px; font-family: var(--mono); transition: all 130ms;
}
.pagi-btn:hover:not(:disabled) { border-color: var(--teal); color: var(--teal-bright); }
.pagi-btn.on { background: var(--teal); color: var(--ink); border-color: var(--teal); }
.pagi-btn:disabled { opacity: 0.35; cursor: default; }
.pagi-gap { padding: 0 4px; color: var(--ink-3); align-self: center; }
.pagi-size select {
  padding: 7px 30px 7px 12px; font-family: var(--sans-kr); font-size: 13px;
  border: 1px solid var(--line); background: var(--bg-2); color: var(--ink); border-radius: 6px; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%237aa' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 11px center;
}
.pagi-size select:focus { outline: none; border-color: var(--teal); }
/* paper variant (light card backgrounds) */
.pagi.paper .pagi-info, .pagi.paper .pagi-size span { color: oklch(0.45 0.02 250); }
.pagi.paper .pagi-btn { background: #fff; border-color: var(--paper-line, #d8d4cc); color: oklch(0.32 0.02 250); }
.pagi.paper .pagi-btn:hover:not(:disabled) { border-color: var(--teal-deep); color: var(--teal-deep); }
.pagi.paper .pagi-btn.on { background: var(--teal-deep, #2d6a6a); color: #fff; border-color: var(--teal-deep, #2d6a6a); }
.pagi.paper .pagi-size select { background-color: #fff; border-color: var(--paper-line, #d8d4cc); color: oklch(0.32 0.02 250); }
@media (max-width: 560px) {
  .pagi-pages { order: 3; flex-basis: 100%; }
  .pagi-size { order: 2; }
}

/* Map block */
.map-block {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--paper);
  color: var(--paper-ink);
  padding: 56px 32px;
}
.map-block .info {
  display: flex; gap: 28px; flex-wrap: wrap;
  align-items: center; margin-bottom: 22px;
  font-family: var(--sans-kr); font-size: 14px; color: var(--paper-ink);
}
.map-block .info b { color: var(--teal-deep); font-weight: 600; }
.map-frame {
  aspect-ratio: 16/7;
  background:
    repeating-linear-gradient(45deg, oklch(0.92 0.01 80) 0 8px, oklch(0.96 0.008 80) 8px 16px);
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  position: relative;
}
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  width: 22px; height: 22px; border-radius: 50% 50% 50% 0;
  background: var(--korean-red); transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 4px 12px oklch(0.4 0.18 25 / 0.4);
}
.map-pin::after {
  content: ''; position: absolute; inset: 6px; border-radius: 50%; background: var(--paper);
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: oklch(0.10 0.04 250);
  border-top: 1px solid var(--line);
  padding: 48px 32px 0;
}
.footer-inner-2 {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 56px;
  padding-bottom: 36px;
}
.f-logo { height: 50px; width: auto; background: oklch(0.96 0.005 80 / 0.92); padding: 5px 12px; border-radius: 4px; cursor: pointer; }
.f-contacts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px;
}
.f-contact {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.f-role {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--teal-bright); text-transform: uppercase; margin-bottom: 8px;
}
.f-name { font-family: var(--serif-kr); font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.f-line { font-size: 12px; color: var(--ink-2); line-height: 1.7; word-break: break-all; }
.f-line a { color: inherit; transition: color 150ms; }
.f-line a:hover { color: var(--teal-bright); text-decoration: underline; }
.f-line .f-k { font-family: var(--mono); font-size: 9.5px; color: var(--gold); margin-right: 6px; letter-spacing: 0.06em; }
.footer-base {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  text-align: center;
}
.f-copy { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-3); }

/* ── Logo SVG ───────────────────────────────────────── */
.brand-svg {
  width: 100%; height: 100%;
}

/* News + photo split */
.split-row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}

/* Card-white teaser */
.bone .lead {
  font-family: var(--serif-kr); font-size: 16px; line-height: 1.85; color: oklch(0.32 0.02 250);
  max-width: 720px; margin: 0 auto 32px; text-align: center;
}

/* Stats strip dark */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .n { font-family: var(--serif-en); font-size: 56px; font-weight: 500; color: var(--ink); line-height: 1; }
.stat-cell .n em { color: var(--teal-bright); font-style: normal; }
.stat-cell .lbl-kr { font-family: var(--serif-kr); font-size: 14px; color: var(--ink-2); }
.stat-cell .lbl-en { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; }

/* Performance history list (decade-grouped) */
.perf-decade {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.perf-decade .dec { font-family: var(--serif-en); font-size: 32px; color: var(--ink); }
.perf-decade ul { margin: 0; padding: 0 0 0 18px; list-style: disc; color: var(--ink-2); font-family: var(--sans-kr); font-size: 13.5px; line-height: 1.95; }
.perf-decade li { padding: 2px 0; }
.perf-decade li b { color: var(--ink); font-weight: 500; }
.perf-decade li a { color: var(--teal-bright); }

/* Branch teal tabs */
.branch-tabs { display: flex; gap: 4px; overflow-x: auto; }
.branch-tab {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg-2);
  font-size: 13px; font-family: var(--sans-kr);
  color: var(--ink-2);
  border-bottom: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.branch-tab.on { background: var(--teal); color: var(--ink); }

/* Headshot + bullets (branch leader / president card) */
.leader-grid {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--paper-line);
  align-items: start;
}
.leader-photo {
  aspect-ratio: 3/4;
  background-image: url('assets/steps.jpg');
  background-size: cover; background-position: center;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
}
.leader-text h4 { font-family: var(--serif-kr); font-size: 20px; font-weight: 500; margin: 0 0 14px; color: var(--paper-ink); }
.leader-text ul { margin: 0; padding: 0 0 0 18px; font-family: var(--serif-kr); font-size: 14px; line-height: 1.85; color: oklch(0.32 0.02 250); }

.tk-row { display: flex; gap: 12px; flex-wrap: wrap; }
.tk { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 11.5px; color: var(--ink-2); font-family: var(--sans-kr); }

/* ════════════════════════════════════════════════════════════
   ADMIN CONSOLE
   ════════════════════════════════════════════════════════════ */
.btn-line { font-family: var(--sans-kr); }
.btn.sm { padding: 6px 14px; font-size: 12px; }
.adm-del { color: oklch(0.68 0.16 25) !important; border-color: oklch(0.45 0.12 25) !important; }
.adm-del:hover { background: oklch(0.30 0.10 25) !important; color: var(--ink) !important; }

/* login */
.adm-login { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px; }
.adm-login-card { width: 380px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 40px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.7); }
.adm-login-card h2 { font-family: var(--serif-kr); font-size: 26px; font-weight: 600; margin: 0; color: var(--ink); }
.adm-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; color: var(--teal-bright); text-transform: uppercase; }

/* shell layout */
.adm { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; background: oklch(0.13 0.04 250); }
.adm-side {
  position: sticky; top: 0; align-self: start; height: 100vh;
  background: oklch(0.115 0.04 250); border-right: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 22px 16px;
}
.adm-brand { display: flex; align-items: center; gap: 12px; padding: 4px 8px 22px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.adm-brand-logo { height: 38px; width: auto; background: oklch(0.96 0.005 80 / 0.92); padding: 4px 9px; border-radius: 5px; }
.adm-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.adm-brand-text b { font-family: var(--serif-en); letter-spacing: 0.14em; font-size: 15px; color: var(--ink); }
.adm-brand-text span { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; }

.adm-nav { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.adm-navitem {
  display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 10px;
  padding: 11px 12px; border-radius: 8px; text-align: left; color: var(--ink-2);
  border: 1px solid transparent; transition: background 140ms, color 140ms;
}
.adm-navitem:hover { background: var(--bg-2); color: var(--ink); }
.adm-navitem.on { background: var(--teal); color: oklch(0.13 0.04 250); border-color: var(--teal-bright); }
.adm-navitem.on .adm-nav-en { color: oklch(0.20 0.04 250); }
.adm-nav-ico { display: grid; place-items: center; }
.adm-nav-kr { font-family: var(--sans-kr); font-size: 14px; font-weight: 500; }
.adm-nav-en { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; color: var(--ink-3); text-transform: uppercase; }

.adm-side-foot { display: flex; flex-direction: column; gap: 6px; padding-top: 16px; border-top: 1px solid var(--line); }
.adm-side-btn { text-align: left; padding: 9px 12px; border-radius: 8px; font-size: 12.5px; color: var(--ink-3); }
.adm-side-btn:hover { background: var(--bg-2); color: var(--teal-bright); }

/* main */
.adm-main { min-width: 0; }
.adm-body { max-width: 980px; margin: 0 auto; padding: 36px 40px 80px; }
.adm-stack { display: flex; flex-direction: column; gap: 18px; }

.adm-sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 4px; }
.adm-sechead h2 { font-family: var(--serif-kr); font-size: 25px; font-weight: 600; margin: 0; color: var(--ink); }
.adm-sechead p { margin: 6px 0 0; font-size: 13px; color: var(--ink-3); line-height: 1.6; max-width: 620px; }

/* cards */
.adm-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 20px; }
.adm-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.adm-card-title { font-family: var(--serif-kr); font-size: 16px; font-weight: 600; color: var(--ink); }
.adm-sub { font-size: 11.5px; color: var(--ink-3); margin-top: 3px; }
.adm-subcard { background: oklch(0.16 0.04 250); border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.adm-note { font-size: 11.5px; color: var(--ink-3); line-height: 1.7; margin: 2px 4px; }
.adm-link { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--teal-bright); }
.adm-link:hover { text-decoration: underline; }
.adm-hint { font-size: 11.5px; color: var(--ink-3); margin-top: 10px; line-height: 1.6; }

/* fields */
.adm-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.adm-field > span { font-size: 11px; color: var(--ink-3); letter-spacing: 0.02em; }
.adm-input {
  width: 100%; padding: 10px 12px; background: oklch(0.12 0.04 250);
  border: 1px solid var(--line); border-radius: 6px; color: var(--ink);
  font: 13px/1.5 var(--sans-kr); outline: none; transition: border-color 140ms;
}
.adm-input:focus { border-color: var(--teal); }
.adm-area { resize: vertical; min-height: 64px; }
.adm-input.mono, .adm-area.mono { font-family: var(--mono); font-size: 12px; }
select.adm-input { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%237aa' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px; }

.adm-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.adm-row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.adm-row4 { display: grid; grid-template-columns: 70px 70px 80px 1fr; gap: 12px; }

/* toggle */
.adm-toggle { width: 40px; height: 23px; border-radius: 999px; background: oklch(0.30 0.03 250); position: relative; transition: background 160ms; flex: 0 0 auto; }
.adm-toggle.on { background: var(--teal); }
.adm-toggle .knob { position: absolute; top: 2px; left: 2px; width: 19px; height: 19px; border-radius: 50%; background: #fff; transition: transform 160ms; }
.adm-toggle.on .knob { transform: translateX(17px); }

/* dashboard */
.adm-hello { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: linear-gradient(120deg, var(--bg-2), oklch(0.20 0.05 220)); border: 1px solid var(--line); border-radius: 12px; padding: 26px 28px; }
.adm-hello h2 { font-family: var(--serif-kr); font-size: 26px; font-weight: 600; margin: 8px 0 0; color: var(--ink); }
.adm-hello p { margin: 8px 0 0; font-size: 13px; color: var(--ink-2); }
.adm-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.adm-stat { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 18px 16px; text-align: left; transition: border-color 140ms, transform 140ms; }
.adm-stat:hover { border-color: var(--teal); transform: translateY(-2px); }
.adm-stat-n { font-family: var(--serif-en); font-size: 34px; font-weight: 600; color: var(--teal-bright); line-height: 1; }
.adm-stat-l { font-size: 12px; color: var(--ink-2); margin-top: 6px; }
.adm-2col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; align-items: start; }

.adm-feed { display: flex; flex-direction: column; }
.adm-feed-item { display: grid; grid-template-columns: 14px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.adm-feed-item:last-child { border-bottom: 0; }
.adm-feed-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); margin-top: 1px; }
.adm-feed-dot.press { background: var(--gold); } .adm-feed-dot.event { background: oklch(0.6 0.16 25); }
.adm-feed-dot.gallery { background: oklch(0.6 0.14 280); } .adm-feed-dot.page { background: var(--teal-bright); }
.adm-feed-dot.header, .adm-feed-dot.footer, .adm-feed-dot.setting { background: oklch(0.6 0.1 160); }
.adm-feed-text { font-size: 13px; color: var(--ink); }
.adm-feed-time { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); margin-top: 2px; }
.adm-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--line); border-radius: 4px; padding: 3px 7px; }
.adm-mini { display: flex; flex-direction: column; gap: 12px; }
.adm-mini-row { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; }
.adm-mini-date { text-align: center; background: oklch(0.16 0.04 250); border: 1px solid var(--line); border-radius: 6px; padding: 6px 0; }
.adm-mini-date b { display: block; font-family: var(--serif-en); font-size: 20px; color: var(--teal-bright); line-height: 1; }
.adm-mini-date span { font-family: var(--mono); font-size: 9px; color: var(--ink-3); }
.adm-mini-ttl { font-size: 13px; color: var(--ink); line-height: 1.4; }
.adm-mini-ttl em { display: block; font-style: normal; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.adm-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.adm-quick .btn { justify-content: center; }
.adm-empty { padding: 24px; text-align: center; color: var(--ink-3); font-size: 13px; }
.adm-empty.big { padding: 60px; border: 1px dashed var(--line); border-radius: 10px; }

/* header/menu manager */
.adm-menurow { display: grid; grid-template-columns: 44px 1fr 110px; gap: 16px; align-items: start; }
.adm-ord { display: flex; flex-direction: column; align-items: center; gap: 4px; padding-top: 18px; }
.adm-ordbtn { width: 26px; height: 22px; border: 1px solid var(--line); border-radius: 5px; color: var(--ink-3); font-size: 9px; }
.adm-ordbtn:hover:not(:disabled) { border-color: var(--teal); color: var(--teal-bright); }
.adm-ordbtn:disabled { opacity: 0.3; }
.adm-ordn { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.adm-menubody { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.adm-menuside { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; padding-top: 6px; }
.adm-vis { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-3); }

/* gallery */
.adm-drop { border: 1.5px dashed var(--line-2); border-radius: 12px; padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-3); cursor: pointer; transition: border-color 140ms, background 140ms; }
.adm-drop:hover, .adm-drop.over { border-color: var(--teal); background: oklch(0.18 0.04 220 / 0.4); color: var(--teal-bright); }
.adm-drop-t { font-size: 14px; color: var(--ink); }
.adm-drop-t b { color: var(--teal-bright); }
.adm-drop-s { font-size: 11.5px; }
.adm-gallhead { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }
.adm-thumb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.adm-thumb { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.adm-thumb-img { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; background-color: oklch(0.2 0.04 250); }
.adm-thumb-del { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; background: oklch(0.12 0.04 250 / 0.8); color: #fff; font-size: 12px; display: grid; place-items: center; }
.adm-thumb-del:hover { background: oklch(0.5 0.18 25); }
.adm-thumb-cap, .adm-thumb-date { width: 100%; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--ink); padding: 9px 12px; font: 13px var(--sans-kr); outline: none; }
.adm-thumb-date { font-family: var(--mono); font-size: 11px; color: var(--ink-3); padding-top: 0; padding-bottom: 11px; }

/* pages */
.adm-page-head, .adm-page-row { display: grid; grid-template-columns: 1.6fr 1.4fr 80px 150px; gap: 14px; align-items: center; padding: 14px 20px; }
.adm-page-head { background: oklch(0.16 0.04 250); font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--line); }
.adm-page-row { border-bottom: 1px solid var(--line); }
.adm-page-row:last-child { border-bottom: 0; }
.adm-page-row:hover { background: oklch(0.18 0.04 250); }
.adm-page-ttl { display: flex; align-items: center; gap: 10px; font-family: var(--serif-kr); font-size: 15px; color: var(--ink); }
.adm-page-ttl svg { color: var(--teal-bright); flex: 0 0 auto; }
.adm-page-slug { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.adm-badge { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 999px; }
.adm-badge.pub { background: oklch(0.30 0.08 160); color: oklch(0.85 0.12 160); }
.adm-badge.draft { background: oklch(0.30 0.06 80); color: oklch(0.85 0.12 80); }
.adm-badge.hid { background: oklch(0.28 0.02 250); color: var(--ink-3); }
.adm-page-act { display: flex; gap: 8px; justify-content: flex-end; }

/* editor */
.adm-editor { padding: 0; overflow: hidden; }
.adm-modes { display: flex; gap: 0; border-bottom: 1px solid var(--line); background: oklch(0.16 0.04 250); }
.adm-mode { padding: 14px 20px; font-size: 13px; color: var(--ink-3); border-bottom: 2px solid transparent; }
.adm-mode:hover { color: var(--ink); }
.adm-mode.on { color: var(--teal-bright); border-bottom-color: var(--teal); background: var(--bg-2); font-weight: 500; }
.adm-editor > div > .adm-toolbar, .adm-editor .adm-live, .adm-editor textarea, .adm-editor .adm-hint, .adm-editor .adm-preview-label { margin: 0; }
.adm-editor > div { padding: 18px 20px 20px; }
.adm-toolbar { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.adm-tool { padding: 7px 12px; border: 1px solid var(--line); border-radius: 6px; font-size: 12px; color: var(--ink-2); background: oklch(0.16 0.04 250); }
.adm-tool:hover { border-color: var(--teal); color: var(--teal-bright); }
.adm-tool.sq { width: 34px; padding: 7px 0; text-align: center; font-weight: 600; }
.adm-live {
  background: var(--paper); color: var(--paper-ink); border-radius: 8px; padding: 24px 28px;
  min-height: 220px; outline: none; font-family: var(--serif-kr); font-size: 15px; line-height: 1.8;
  border: 1px solid var(--paper-line);
}
.adm-live.preview { margin-top: 8px; }
.adm-live:focus { box-shadow: 0 0 0 2px var(--teal); }
.adm-live h2 { font-family: var(--serif-kr); font-size: 24px; font-weight: 600; margin: 0 0 12px; color: var(--paper-ink); }
.adm-live h3 { font-family: var(--serif-kr); font-size: 18px; font-weight: 600; margin: 18px 0 8px; color: var(--teal-deep); }
.adm-live p { margin: 0 0 12px; }
.adm-live ul, .adm-live ol { margin: 0 0 12px; padding-left: 22px; }
.adm-live a { color: var(--teal-deep); text-decoration: underline; }
.adm-preview-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-top: 14px; }

.adm-logo-row { display: flex; align-items: center; gap: 20px; }
.adm-logo-prev { width: 140px; height: 70px; display: grid; place-items: center; background: oklch(0.96 0.005 80 / 0.95); border-radius: 8px; overflow: hidden; }
.adm-logo-prev img { max-height: 56px; max-width: 120px; width: auto; }
.adm-logo-prev span { font-family: var(--mono); font-size: 10px; color: oklch(0.4 0.02 250); letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .adm { grid-template-columns: 1fr; }
  .adm-side { position: static; height: auto; flex-direction: row; flex-wrap: wrap; }
  .adm-nav { flex-direction: row; flex-wrap: wrap; }
  .adm-navitem { grid-template-columns: auto auto; }
  .adm-nav-en { display: none; }
  .adm-2col { grid-template-columns: 1fr; }
  .adm-stats { grid-template-columns: repeat(2, 1fr); }
  .adm-menurow { grid-template-columns: 1fr; }
}

/* ── gallery categories ── */
/* public gallery filter tabs */
.gal-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: -28px auto 30px; }
.gal-fbtn {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--bg-2); color: var(--ink-2); font: 500 13px var(--sans-kr); letter-spacing: 0.01em;
  transition: border-color 140ms, color 140ms, background 140ms;
}
.gal-fbtn:hover { border-color: var(--teal); color: var(--teal-bright); }
.gal-fbtn.on { background: var(--teal); border-color: var(--teal); color: oklch(0.13 0.04 250); }
.gal-fbtn span { font-family: var(--mono); font-size: 11px; opacity: 0.7; }
.gal-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2; white-space: nowrap;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: oklch(0.13 0.04 250 / 0.78); color: var(--gold); border: 1px solid var(--gold-deep);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* admin category chips */
.adm-cat-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.adm-cat-chip { display: inline-flex; align-items: center; gap: 4px; background: oklch(0.16 0.04 250); border: 1px solid var(--line); border-radius: 999px; padding: 4px 6px 4px 12px; }
.adm-cat-chip input { background: transparent; border: 0; outline: none; color: var(--ink); font: 13px var(--sans-kr); width: 92px; }
.adm-cat-chip input:focus { color: var(--teal-bright); }
.adm-cat-chip button { width: 22px; height: 22px; border-radius: 50%; color: var(--ink-3); font-size: 11px; }
.adm-cat-chip button:hover { background: oklch(0.5 0.18 25); color: #fff; }
.adm-cat-add { display: flex; gap: 8px; }
.adm-cat-add .adm-input { max-width: 240px; }

.adm-drop-cat { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.adm-drop-cat span { font-size: 11.5px; color: var(--ink-3); }
.adm-drop-cat .adm-input { width: auto; min-width: 130px; padding: 7px 30px 7px 12px; cursor: pointer; }

.adm-gallbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.adm-gall-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.adm-fchip { padding: 6px 13px; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-2); color: var(--ink-3); font: 12px var(--sans-kr); }
.adm-fchip:hover { border-color: var(--teal); color: var(--teal-bright); }
.adm-fchip.on { background: var(--teal); border-color: var(--teal); color: oklch(0.13 0.04 250); font-weight: 500; }

.adm-thumb-cat { position: absolute; top: 8px; left: 8px; white-space: nowrap; font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; padding: 3px 8px; border-radius: 999px; background: oklch(0.12 0.04 250 / 0.82); color: var(--gold); }
.adm-thumb-sel { width: 100%; border: 0; border-top: 1px solid var(--line); background: oklch(0.16 0.04 250); color: var(--ink-2); padding: 8px 12px; font: 12px var(--sans-kr); outline: none; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%237aa' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; }

/* ── home hero slider / video ── */
.hero-media { overflow: hidden; }
.hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; transition: opacity 1s ease; z-index: 0; }
.hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.98 0 0 / 0.35); border: 1px solid oklch(0.98 0 0 / 0.6); cursor: pointer; transition: background 160ms; }
.hero-dot.on { background: var(--gold); border-color: var(--gold); }

/* ── admin: hero media + section editor + per-section images ── */
.adm-radio { display: flex; gap: 6px; background: oklch(0.16 0.04 250); padding: 4px; border-radius: 8px; border: 1px solid var(--line); }
.adm-radio button { flex: 1; padding: 9px 10px; border-radius: 6px; font-size: 12.5px; color: var(--ink-3); }
.adm-radio button.on { background: var(--teal); color: oklch(0.13 0.04 250); font-weight: 500; }
.adm-mediabar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.adm-slide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; margin-top: 14px; }
.adm-slide { position: relative; aspect-ratio: 16/10; border-radius: 8px; background-size: cover; background-position: center; border: 1px solid var(--line); background-color: oklch(0.2 0.04 250); }
.adm-slide button { position: absolute; top: 6px; right: 6px; width: 24px; height: 24px; border-radius: 50%; background: oklch(0.12 0.04 250 / 0.85); color: #fff; font-size: 11px; }
.adm-slide button:hover { background: oklch(0.5 0.18 25); }
.adm-slide .ord { position: absolute; left: 6px; bottom: 6px; display: flex; gap: 4px; }
.adm-slide .ord button { position: static; width: 22px; height: 22px; font-size: 9px; background: oklch(0.12 0.04 250 / 0.85); }
.adm-video-prev { margin-top: 12px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); max-width: 360px; background: #000; }
.adm-video-prev video { width: 100%; display: block; }

.adm-section { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.adm-section-bar { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 16px; background: oklch(0.16 0.04 250); border-bottom: 1px solid var(--line); }
.adm-section-bar .adm-sord { display: flex; gap: 4px; }
.adm-section-bar .adm-sord button { width: 26px; height: 24px; border: 1px solid var(--line); border-radius: 5px; color: var(--ink-3); font-size: 9px; }
.adm-section-bar .adm-sord button:hover:not(:disabled) { border-color: var(--teal); color: var(--teal-bright); }
.adm-section-bar .adm-sord button:disabled { opacity: 0.3; }
.adm-section-title { background: transparent; border: 0; border-bottom: 1px solid transparent; color: var(--ink); font: 600 15px var(--serif-kr); outline: none; padding: 4px 2px; }
.adm-section-title:focus { border-bottom-color: var(--teal); }
.adm-section-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.adm-sec-tools { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.adm-imgrow { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.adm-img { position: relative; width: 96px; height: 72px; border-radius: 6px; background-size: cover; background-position: center; border: 1px solid var(--line); background-color: oklch(0.2 0.04 250); }
.adm-img button { position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; border-radius: 50%; background: oklch(0.12 0.04 250 / 0.85); color: #fff; font-size: 10px; }
.adm-img button:hover { background: oklch(0.5 0.18 25); }
.adm-addimg { width: 96px; height: 72px; border: 1.5px dashed var(--line-2); border-radius: 6px; display: grid; place-items: center; color: var(--ink-3); font-size: 22px; }
.adm-addimg:hover { border-color: var(--teal); color: var(--teal-bright); }
.adm-addsec { border: 1.5px dashed var(--line-2); border-radius: 10px; padding: 16px; color: var(--ink-3); font-size: 14px; }
.adm-addsec:hover { border-color: var(--teal); color: var(--teal-bright); }
.adm-htmltoggle { font-family: var(--mono); font-size: 11px; color: var(--ink-3); border: 1px solid var(--line); border-radius: 6px; padding: 6px 10px; }
.adm-htmltoggle.on { color: var(--teal-bright); border-color: var(--teal); }

/* ── perf history admin table ── */
.adm-perfbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.adm-perf-head, .adm-perf-row { display: grid; grid-template-columns: 70px 80px 1fr 200px 150px; gap: 12px; align-items: center; padding: 12px 18px; }
.adm-perf-head { background: oklch(0.16 0.04 250); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--line); }
.adm-perf-row { border-bottom: 1px solid var(--line); }
.adm-perf-row:hover { background: oklch(0.18 0.04 250); }
.adm-perf-row.open { background: oklch(0.18 0.05 220); }
.adm-perf-y { font-family: var(--serif-en); font-size: 16px; color: var(--teal-bright); }
.adm-perf-d { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.adm-perf-t { font-size: 13.5px; color: var(--ink); line-height: 1.4; }
.adm-perf-t em { display: block; font-style: normal; font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.adm-perf-l { font-size: 12px; color: var(--ink-2); }
.adm-perf-act { display: flex; gap: 6px; justify-content: flex-end; }
.adm-perf-edit { padding: 16px 18px 20px; background: oklch(0.15 0.04 250); border-bottom: 1px solid var(--line); }
.adm-pager { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* ── news detail modal ── */
.news-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; background: oklch(0.08 0.03 250 / 0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: nm-fade 160ms ease; }
@keyframes nm-fade { from { opacity: 0; } to { opacity: 1; } }
.news-modal-card { position: relative; width: 100%; max-width: 640px; max-height: 86vh; overflow-y: auto; background: var(--paper); color: var(--paper-ink); border-radius: 8px; padding: 40px 40px 36px; box-shadow: 0 50px 110px -30px rgba(0,0,0,0.7); animation: nm-rise 200ms cubic-bezier(.2,.7,.3,1); }
@keyframes nm-rise { from { transform: translateY(18px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.news-modal-x { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; background: oklch(0.92 0.01 80); color: var(--paper-ink); font-size: 15px; display: grid; place-items: center; transition: background 140ms; }
.news-modal-x:hover { background: var(--teal); color: #fff; }
.news-modal-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-modal-meta .press-source { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--teal-deep); background: oklch(0.92 0.02 200); padding: 4px 10px; border-radius: 999px; }
.news-modal-meta .press-dt { font-family: var(--mono); font-size: 12px; color: oklch(0.5 0.02 250); }
.news-modal-ttl { font-family: var(--serif-kr); font-size: 26px; font-weight: 600; line-height: 1.4; margin: 0 0 18px; color: var(--paper-ink); text-wrap: pretty; }
.news-modal-body { font-family: var(--serif-kr); font-size: 15.5px; line-height: 1.9; color: oklch(0.32 0.02 250); }
.news-modal-body p { margin: 0 0 14px; }
.news-modal-body p:last-child { margin-bottom: 0; }
.news-modal-eventdate { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.news-modal-eventdate .nme-day { font-family: var(--serif-en); font-size: 40px; font-weight: 600; color: var(--teal-deep); line-height: 1; }
.news-modal-eventdate .nme-mo { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: oklch(0.5 0.02 250); }
.news-modal-info { display: flex; flex-wrap: wrap; gap: 10px 28px; padding: 14px 0 18px; margin-bottom: 18px; border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.news-modal-info > div { font-family: var(--sans-kr); font-size: 14px; color: var(--paper-ink); }
.news-modal-info span { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.55 0.02 250); margin-right: 8px; }
@media (max-width: 540px) { .news-modal-card { padding: 32px 22px 28px; } .news-modal-ttl { font-size: 22px; } }

@media (max-width: 760px) {
  .adm-perf-head { display: none; }
  .adm-perf-row { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .adm-perf-y { grid-row: 1; }
  .adm-perf-d { grid-row: 1; grid-column: 1; margin-left: 44px; }
  .adm-perf-t { grid-column: 1 / -1; grid-row: 2; }
  .adm-perf-l { grid-column: 1 / -1; grid-row: 3; }
  .adm-perf-act { grid-column: 2; grid-row: 1; }
}

/* public: per-page uploaded photos */
.page-photos { padding-top: 8px; padding-bottom: 8px; }
.page-photos-group { max-width: 1080px; margin: 0 auto 30px; }
.page-photos-h { font-family: var(--serif-kr); font-size: 19px; font-weight: 600; color: var(--ink); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.card-white-block .page-photos-h, .map-block .page-photos-h { color: var(--paper-ink); border-color: var(--paper-line); }
.page-photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.page-photo { aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: 4px; border: 1px solid var(--line); background-color: var(--bg-2); }

/* ════════════════════════ RESPONSIVE ════════════════════════ */
/* mobile nav menu */
.tn-mobile { display: flex; flex-direction: column; background: var(--bg-2); border-top: 1px solid var(--line); padding: 6px 20px 18px; }
.tn-m-link { padding: 14px 4px; font-family: var(--serif-kr); font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--line); }
.tn-m-link.on { color: var(--teal-bright); }
.tn-m-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; }

@media (max-width: 1080px) {
  .overlap-row { grid-template-columns: 1fr; gap: 0; }
  .overlap-row .card-white { margin-left: 0; margin-top: -36px; }
  .split-row { grid-template-columns: 1fr; gap: 36px; }
  .pres-grid { grid-template-columns: 1fr; gap: 28px; }
  .pres-photo { max-width: 380px; }
  .apply-grid { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; gap: 20px; }
  .perf-decade { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner-2 { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .tn-links { display: none; }
  .tn-burger { display: grid; }
  .tn-inner { padding: 12px 20px; }
  .section { padding: 56px 20px; }
  .section.tight { padding: 40px 20px; }
  .section.bone .section-inner { padding: 0 20px; }
  .card-white-block { padding: 56px 20px; }
  .hero { padding: 60px 20px; min-height: 460px; }
  .hero-title-kr { font-size: 46px; }
  .banner { padding-left: 20px; padding-right: 20px; min-height: 240px; }
  .banner-title-kr { font-size: 40px; }
  .tl-decade { grid-template-columns: 1fr; gap: 6px; }
  .event-row { grid-template-columns: 1fr; gap: 10px; }
  .press-card { grid-template-columns: 1fr; gap: 14px; }
  .f-contacts { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .hero-title-kr { font-size: 38px; }
  .banner-title-kr { font-size: 32px; }
  .f-contacts { grid-template-columns: 1fr; }
  .tabbar { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .section { padding: 44px 16px; }
  .card-white-block { padding: 44px 16px; }
}
