/* ============================================================
   (사)국제다문화미래전략진흥원 — Editorial Trust 디자인 시스템
   로고 5색(빨강·노랑·파랑·초록·검정) + 아이보리 베이스
   Serif 헤드라인(Noto Serif KR) + Sans 본문(Noto Sans KR)
   ============================================================ */

/* ── 디자인 토큰 ─────────────────────────────────────── */
:root {
  --ink: #1A1813;
  --ink-soft: #2E2A22;
  --base: #F5F1EA;
  --paper: #FBF8F2;
  --line: #D8CFBE;
  --line-soft: #E7DFCC;
  --text: #1A1813;
  --muted: #6E6553;

  --red:    #D81E2C;
  --yellow: #F4C518;
  --blue:   #1E88D6;
  --green:  #3FA535;
  --black:  #1F1A14;

  --max: 1440px;
  --gutter: 80px;
  --gutter-tablet: 40px;
  --gutter-mobile: 20px;
  --header-h: 89px;

  --serif: 'Noto Serif KR', Georgia, serif;
  --sans:  'Noto Sans KR', 'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'Inter', 'SF Mono', monospace;

  /* ── 레거시 변수 별칭 (구 인라인 스타일 호환) ── */
  --primary: var(--red);
  --primary-light: #F6EBDF;
  --white: var(--paper);
  --font-serif: var(--serif);
  --font-sans: var(--sans);
  --gray-50: var(--paper);
  --gray-100: var(--line-soft);
  --gray-200: var(--line);
  --gray-300: var(--line);
  --gray-400: var(--muted);
  --gray-500: var(--muted);
  --gray-600: var(--muted);
  --gray-700: var(--text);
  --gray-800: var(--ink);
  --gray-900: var(--ink);
  --c-red: var(--red);
  --c-blue: var(--blue);
  --c-amber: var(--yellow);
  --c-green: var(--green);
  --c-dark: var(--black);
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --dur: .12s;
}

/* ── 리셋 ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--base);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font: inherit; color: inherit; }
table { border-collapse: collapse; }

/* ── 레이아웃 프리미티브 ─────────────────────────────── */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}
.serif { font-family: var(--serif); }
.mono  { font-family: var(--mono); }
.hr-strong { border: 0; border-top: 1px solid var(--ink); margin: 0; }
.hr-soft   { border: 0; border-top: 1px solid var(--line); margin: 0; }
.text-center { text-align: center; }
.text-primary { color: var(--red); }
.mt-8 { margin-top: 8px; }  .mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; } .mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ── 플레이스홀더 사진 블록 ─────────────────────────── */
.ph {
  position: relative;
  background: #C6BFAE;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,.045) 0 1px, transparent 1px 14px);
  display: flex;
  align-items: flex-end;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(0,0,0,.18);
  pointer-events: none;
}
.ph .ph-label {
  position: relative;
  margin: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  background: rgba(255,255,255,.6);
  padding: 4px 8px;
}
.ph.dark { background: #2E2A22; }
.ph.dark::before { border-color: rgba(255,255,255,.18); }
.ph.dark .ph-label { background: rgba(0,0,0,.4); color: rgba(255,255,255,.75); }

/* ════════════════════════════════════════════════════
   상단바 + 헤더
   ════════════════════════════════════════════════════ */
.topbar { height: 4px; background: var(--red); }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand__logo { width: 48px; height: 48px; flex-shrink: 0; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-top: 4px;
  font-weight: 600;
}

/* 내비게이션 */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__item { position: relative; }
.nav__link {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  padding: 10px 14px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .12s;
}
.nav__item:hover > .nav__link,
.nav__item:focus-within > .nav__link { color: var(--red); }
.nav__item.is-active > .nav__link {
  color: var(--red);
  border-bottom-color: var(--red);
}
/* 드롭다운 패널 */
.nav__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 190px;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .14s, transform .14s;
  z-index: 60;
}
.nav__item:hover > .nav__panel,
.nav__item:focus-within > .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__panel a {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  padding: 9px 12px;
  white-space: nowrap;
}
.nav__panel a:hover { background: var(--base); color: var(--red); }

.nav__sep { width: 1px; height: 20px; background: var(--line); margin: 0 8px; }

.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 10px;
  white-space: nowrap;
  transition: color .12s;
}
.header-link:hover { color: var(--red); }
.btn--donate {
  background: var(--ink);
  color: var(--base);
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background .12s;
}
.btn--donate:hover { background: var(--red); color: var(--base); }

/* 햄버거 */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* 모바일 드로어 */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--base);
  z-index: 100;
  padding: 84px 24px 40px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer__group { border-bottom: 1px solid rgba(245,241,234,0.15); }
.mobile-drawer__group > a,
.mobile-drawer__head {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  padding: 16px 0;
  color: var(--base);
}
.mobile-drawer__sub { padding: 0 0 14px 14px; }
.mobile-drawer__sub a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 0;
  color: rgba(245,241,234,0.7);
}
.mobile-drawer__sub a:hover { color: var(--yellow); }
.mobile-drawer__group > a:hover { color: var(--yellow); }
.mobile-drawer__actions { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-drawer__actions a {
  text-align: center;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
}
.mobile-drawer__actions .m-login {
  border: 1px solid rgba(245,241,234,0.4);
  color: var(--base);
}
.mobile-drawer__actions .m-cta {
  background: var(--yellow);
  color: var(--ink);
}

/* ════════════════════════════════════════════════════
   버튼
   ════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
}
.btn--primary,  .btn-primary  { background: var(--ink); color: var(--base); border-color: var(--ink); }
.btn--primary:hover, .btn-primary:hover { background: var(--red); border-color: var(--red); color: var(--base); }
.btn--secondary, .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover, .btn-outline:hover { background: var(--ink); color: var(--base); }
.btn--accent { background: var(--yellow); color: var(--ink); font-weight: 700; border-color: var(--yellow); }
.btn--accent:hover { background: var(--red); color: var(--base); border-color: var(--red); }
.btn-outline-white { background: transparent; color: var(--base); border-color: rgba(245,241,234,0.55); }
.btn-outline-white:hover { background: var(--base); color: var(--ink); border-color: var(--base); }
.btn--sm, .btn-sm { padding: 12px 22px; font-size: 13px; }
.btn--lg, .btn-lg { padding: 17px 34px; font-size: 15px; }
.btn--block, .btn-block { width: 100%; }

/* ════════════════════════════════════════════════════
   섹션 공통
   ════════════════════════════════════════════════════ */
.section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.section-sm { padding: 56px 0; }
.section-alt, .section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--base); }

.section-head { margin-bottom: 44px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-weight: 700;
}
.section-head > p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}
.section--ink .section-head h2 { color: var(--base); }

/* 페이지 타이틀 (서브페이지 헤더) */
.page-title { padding: 56px 0 0; }
.page-title__crumb {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  font-weight: 600;
}
.page-title__crumb a:hover { color: var(--red); }
.page-title h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  color: var(--ink);
  margin-top: 18px;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.page-title h1 .meta {
  font-family: var(--mono);
  font-size: 0.32em;
  color: var(--red);
  margin-left: 18px;
  vertical-align: super;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.page-title__lead {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  margin-top: 26px;
  max-width: 720px;
}
.page-title hr { margin-top: 32px; }

/* ════════════════════════════════════════════════════
   홈 — 히어로
   ════════════════════════════════════════════════════ */
.hero { padding: 76px 0 88px; border-bottom: 1px solid var(--line); }
.hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero h1 .accent { color: var(--red); }
.hero__lead {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--muted);
  margin-top: 30px;
  max-width: 540px;
}
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 7px 14px;
  margin-bottom: 26px;
}
.hero__visual {
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px;
}
.hero__visual img { width: 62%; height: auto; }
.hero__visual .hv-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}
.hero__ribbon {
  display: flex;
  width: 62%;
  height: 6px;
}
.hero__ribbon span { flex: 1; }

/* 통계 밴드 */
.stats { background: var(--paper); border-bottom: 1px solid var(--line); }
.stats__grid, .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat, .stat-item {
  --c: var(--muted);
  padding: 44px 30px 44px 0;
  border-right: 1px solid var(--line);
}
.stat:first-child, .stat-item:first-child { padding-left: 0; }
.stat + .stat, .stat-item + .stat-item { padding-left: 30px; }
.stat:last-child, .stat-item:last-child { border-right: 0; }
.stat__mark { width: 28px; height: 4px; background: var(--c); margin-bottom: 16px; }
.stat__num, .stat-num {
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.stat__label, .stat-lbl { margin-top: 12px; font-weight: 700; font-size: 15px; color: var(--ink); }
.stat__sub { margin-top: 4px; font-size: 12.5px; color: var(--muted); }
.stats-band { background: var(--paper); border-bottom: 1px solid var(--line); }
.stats-band .stats-grid { padding: 0; }
.stat-item .stat-mark { width: 28px; height: 4px; margin-bottom: 16px; background: var(--c); }

/* 색상 모디파이어 */
.c-red    { --c: var(--red); }
.c-yellow, .c-amber { --c: var(--yellow); }
.c-blue   { --c: var(--blue); }
.c-green  { --c: var(--green); }
.c-dark   { --c: var(--black); }

/* ════════════════════════════════════════════════════
   카드 그리드 (사업·후원·봉사 등 범용)
   ════════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: block;
  transition: background .14s, border-color .14s;
}
a.card:hover { background: var(--base); border-color: var(--ink); }
.card-body { padding: 30px 28px; }
.card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--base);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-icon {
  --c: var(--muted);
  font-size: 26px;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--base);
  border-bottom: 3px solid var(--c);
  margin-bottom: 18px;
}
.card-icon.green { --c: var(--green); }
.card-icon.red   { --c: var(--red); }
.card-icon.blue  { --c: var(--blue); }
.card-icon.amber { --c: var(--yellow); }
.card-icon.dark  { --c: var(--black); }
.card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.card-body > p { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ════════════════════════════════════════════════════
   홈 — 핵심사업 (번호형 4/6 그리드)
   ════════════════════════════════════════════════════ */
.programs { padding: 84px 0; border-bottom: 1px solid var(--line); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}
.program {
  --c: var(--muted);
  padding: 30px 28px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: block;
  transition: background .14s;
}
a.program:hover { background: var(--paper); }
.program__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.program__num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--c);
}
.program__tag {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.program__mark { width: 32px; height: 3px; background: var(--c); margin-bottom: 14px; }
.program h3 {
  font-family: var(--serif);
  font-size: 21px;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.program p { font-size: 13.5px; line-height: 1.65; color: var(--muted); }
.program__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}

/* ════════════════════════════════════════════════════
   홈 — 이사장 메시지 / CTA 인용
   ════════════════════════════════════════════════════ */
.message {
  background: var(--ink);
  color: var(--base);
  padding: 92px 0;
}
.message__grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 60px;
  align-items: center;
}
.message .eyebrow { color: var(--yellow); margin-bottom: 24px; }
.message blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 400;
  color: var(--base);
}
.message blockquote .accent { color: var(--yellow); }
.message__body {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245,241,234,0.78);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,0.2);
  max-width: 620px;
}
.message__visual {
  aspect-ratio: 4/5;
  background: var(--ink-soft);
  border: 1px solid rgba(245,241,234,0.2);
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
}
.message__visual img { width: 80%; }
.message__caption { margin-top: 16px; }
.message__caption .name { font-family: var(--serif); font-size: 19px; font-weight: 700; }
.message__caption .role { font-size: 12.5px; color: rgba(245,241,234,0.6); margin-top: 4px; }

/* ════════════════════════════════════════════════════
   홈 — 봉사단 CTA 분할
   ════════════════════════════════════════════════════ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.cta-card { padding: 68px var(--gutter); }
.cta-card--light { background: var(--paper); border-right: 1px solid var(--line); }
.cta-card--dark { background: var(--ink); color: var(--base); }
.cta-card--dark .eyebrow { color: var(--yellow); }
.cta-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  margin: 14px 0;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.cta-card--dark h3 { color: var(--base); }
.cta-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 460px;
}
.cta-card--dark p { color: rgba(245,241,234,0.75); }
.cta-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.cta-card__tags span {
  font-size: 12px;
  padding: 6px 13px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.cta-card--dark .cta-card__tags span { border-color: rgba(245,241,234,0.3); color: rgba(245,241,234,0.8); }
.cta-card__tags span.is-on {
  background: var(--red); border-color: var(--red); color: var(--base);
}

/* ════════════════════════════════════════════════════
   소식 / 언론 (홈 + 목록)
   ════════════════════════════════════════════════════ */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.article { display: block; }
.article__ph { aspect-ratio: 16/10; margin-bottom: 16px; overflow: hidden; background: var(--base); }
.article__ph img { width: 100%; height: 100%; object-fit: cover; }
.article__meta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
}
.article h3 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 700;
}
.article p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 8px; }
.article__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

/* 홈 — 2단 (공지 + 언론) */
.news-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.news-col-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: 6px;
}
.news-col-head h2 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); }
.more-link, .mou-more { font-size: 12px; font-weight: 600; color: var(--red); }
.notice-simple-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.notice-simple-list li a {
  flex: 1; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.notice-simple-list li a:hover { color: var(--red); }
.notice-simple-list .date { font-size: 12px; color: var(--muted); flex-shrink: 0; font-family: var(--mono); }

/* 언론 대표/컴팩트 카드 (홈) */
.press-feature { display: block; border: 1px solid var(--line); margin-bottom: 14px; background: var(--paper); transition: background .14s; }
.press-feature:hover { background: var(--base); }
.press-feature-thumb { position: relative; aspect-ratio: 16/9; background: var(--base); overflow: hidden; }
.press-feature-thumb img { width: 100%; height: 100%; object-fit: cover; }
.press-feature-badge {
  position: absolute; top: 0; left: 0;
  background: var(--red); color: var(--base);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 5px 10px;
}
.press-feature-body { padding: 16px 18px 18px; }
.press-feature-body .press-meta { display: flex; gap: 10px; align-items: center; font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.press-feature-body .press-media { color: var(--red); font-weight: 700; }
.press-feature-title {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--ink); line-height: 1.4; margin: 0 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.press-feature-summary {
  font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.press-list-compact { display: flex; flex-direction: column; }
.press-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.press-card:hover .press-title { color: var(--red); }
.press-thumb {
  width: 96px; height: 68px; flex-shrink: 0;
  overflow: hidden; background: var(--base); border: 1px solid var(--line);
}
.press-thumb img { width: 100%; height: 100%; object-fit: cover; }
.press-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--muted); letter-spacing: 0.1em;
}
.press-body { flex: 1; min-width: 0; }
.press-media { font-size: 11px; font-weight: 700; color: var(--red); margin-bottom: 4px; }
.press-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.45; }
.press-date { font-size: 11px; color: var(--muted); margin-top: 6px; font-family: var(--mono); }
.empty-msg { font-size: 14px; color: var(--muted); padding: 28px 0; }

/* ════════════════════════════════════════════════════
   파트너 / MOU
   ════════════════════════════════════════════════════ */
.partners { background: var(--paper); padding: 60px 0; border-bottom: 1px solid var(--line); }
.partners__head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 28px; }
.partners__head h3 { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 700; }
.partners__head span { font-size: 13px; color: var(--muted); }
.partners__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.partner {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  min-height: 88px; padding: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--ink); text-align: center;
  line-height: 1.4;
}

/* 홈 하단 MOU 바 */
.mou-bar { background: var(--ink); color: var(--base); }
.mou-bar-inner { display: flex; align-items: center; gap: 20px; padding-block: 22px; flex-wrap: wrap; }
.mou-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow); flex-shrink: 0;
}
.mou-chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.mou-chip {
  font-size: 12.5px; padding: 6px 13px;
  border: 1px solid rgba(245,241,234,0.28); color: rgba(245,241,234,0.85);
}

/* MOU 페이지 그리드 */
.mou-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.mou-card { background: var(--paper); padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.mou-logo { width: 60px; height: 60px; flex-shrink: 0; border: 1px solid var(--line); overflow: hidden; }
.mou-logo img { width: 100%; height: 100%; object-fit: contain; }
.mou-logo-placeholder {
  width: 60px; height: 60px; flex-shrink: 0;
  background: var(--base); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--red);
}
.mou-card-body h3 { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.mou-type {
  display: inline-block; font-size: 10px; letter-spacing: 0.08em;
  background: var(--base); border: 1px solid var(--line); color: var(--muted); padding: 3px 8px;
}
.mou-date { font-size: 12px; color: var(--muted); margin-top: 8px; font-family: var(--mono); }
.mou-desc { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* ════════════════════════════════════════════════════
   소개 페이지 — 사명 / 비전 / 연혁 / 조직
   ════════════════════════════════════════════════════ */
.mission__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 60px; }
.mission__grid h2 {
  font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.3; color: var(--ink); letter-spacing: -0.02em; font-weight: 700;
}
.mission__body { font-family: var(--serif); font-size: 16px; line-height: 1.9; color: var(--text); }
.mission__body p + p { margin-top: 18px; color: var(--muted); }

/* 비전 3원칙 */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar { --c: var(--muted); padding-top: 22px; border-top: 2px solid var(--c); }
.pillar__num { font-family: var(--serif); font-size: 34px; color: var(--c); font-weight: 700; margin-bottom: 14px; }
.pillar h3 { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 12px; font-weight: 700; }
.pillar p { font-size: 13.5px; line-height: 1.75; color: var(--muted); }

/* 핵심 가치 그리드 */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink); border-left: 1px solid var(--line);
}
.value-item {
  padding: 28px 22px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.value-item .vi-icon { font-size: 26px; display: block; margin-bottom: 12px; }
.value-item strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.value-item span { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* 연혁 타임라인 */
.timeline__row {
  display: grid; grid-template-columns: 150px 1fr;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  gap: 24px;
}
.timeline__row:last-of-type { border-bottom: 1px solid var(--line); }
.timeline__year { font-family: var(--serif); font-size: 30px; color: var(--ink); font-weight: 700; }
.timeline__year.is-active { color: var(--red); }
.timeline__events > div { font-size: 14.5px; line-height: 1.6; color: var(--text); }
.timeline__events > div + div { margin-top: 10px; }
.timeline__events .ev-month {
  display: inline-block; min-width: 64px;
  font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--red);
  margin-right: 8px;
}
.timeline__events .ev-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.timeline__events .is-highlight strong { color: var(--red); }

/* 임원 / 조직 */
.leader-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.leader { background: var(--paper); padding: 26px 24px; }
.leader__avatar {
  width: 52px; height: 52px;
  background: var(--ink); color: var(--base);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  margin-bottom: 16px;
}
.leader.is-lead .leader__avatar { background: var(--red); }
.leader__role {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--red); margin-bottom: 6px;
}
.leader__name { font-family: var(--serif); font-size: 19px; color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.leader__bio { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.leader__tag {
  display: inline-block; margin-top: 10px;
  font-size: 10px; padding: 2px 8px;
  background: var(--base); border: 1px solid var(--line); color: var(--muted);
}
.leader.is-lead .leader__tag,
.leader__tag.is-on { background: var(--red); border-color: var(--red); color: var(--base); }

/* 조직 구조도 */
.org-structure { max-width: 680px; margin: 0 auto; text-align: center; }
.os-row { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.os-box {
  padding: 12px 22px; background: var(--paper);
  border: 1px solid var(--ink); font-size: 14px; font-weight: 600; color: var(--ink);
  min-width: 90px;
}
.os-box.os-key { background: var(--ink); color: var(--base); }
.os-box.os-small { font-size: 12.5px; padding: 9px 14px; min-width: 76px; }
.os-arrow { font-size: 16px; color: var(--line); margin: 8px 0; }
.os-connector { font-size: 14px; color: var(--muted); }

/* 분과 칩 */
.dept-chips { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dept-chip {
  background: var(--paper); padding: 16px 22px;
  font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink);
  flex: 1; min-width: 130px;
}
.dept-chip span { display: block; font-family: var(--sans); font-size: 11px; font-weight: 400; color: var(--muted); margin-top: 3px; }

/* 이사장 인사말 */
.greeting-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.greeting-symbol { position: sticky; top: 120px; }
.calligraphy-box {
  background: var(--ink); color: var(--base);
  padding: 40px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.calligraphy {
  font-family: var(--serif); font-size: 46px; font-weight: 700;
  letter-spacing: 0.1em; writing-mode: vertical-rl; text-orientation: mixed;
  margin-bottom: 18px;
}
.calligraphy-sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; color: var(--yellow); }
.greeting-text p { font-family: var(--serif); font-size: 16px; line-height: 1.95; color: var(--text); margin-bottom: 18px; }
.greeting-text .greeting-lead { font-size: 19px; color: var(--ink); }
.greeting-text em { font-style: normal; color: var(--red); font-weight: 700; }
.greeting-text strong { color: var(--ink); font-weight: 700; }
.greeting-sign { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); text-align: right; }
.greeting-sign .sign-title { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.greeting-sign .sign-name { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--ink); }

/* CI 컬러 팔레트 */
.ci-palette {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.ci-swatch { background: var(--paper); }
.ci-swatch-color { height: 88px; }
.ci-swatch-info { padding: 18px 16px; }
.ci-swatch-info .ci-oh { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.ci-swatch-info .ci-oh b { font-family: var(--serif); font-size: 16px; color: var(--ink); }
.ci-swatch-info .ci-oh span { font-size: 11px; color: var(--muted); }
.ci-swatch-info .ci-values { font-size: 12px; font-weight: 700; color: var(--red); margin-bottom: 8px; }
.ci-swatch-info .ci-desc { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* 오시는 길 */
.location-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.loc-card { border: 1px solid var(--line); background: var(--paper); padding: 28px; }
.loc-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 11px; margin-bottom: 14px;
  background: var(--ink); color: var(--base);
}
.loc-badge.is-blue { background: var(--blue); }
.loc-card h2 { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.loc-map { margin: 20px 0; border: 1px solid var(--line); }
.loc-map iframe { display: block; }
.loc-info { display: flex; flex-direction: column; gap: 9px; }
.li-row { display: flex; gap: 10px; font-size: 14px; color: var(--text); }
.li-row .li-icon { flex-shrink: 0; }
.reg-info {
  display: flex; gap: 0; flex-wrap: wrap; margin-top: 32px;
  border: 1px solid var(--line);
}
.reg-info span {
  flex: 1; min-width: 180px; padding: 16px 20px;
  font-size: 13px; color: var(--muted);
  border-right: 1px solid var(--line);
  font-family: var(--mono);
}
.reg-info span:last-child { border-right: 0; }

/* ════════════════════════════════════════════════════
   필터바 / 카테고리 탭
   ════════════════════════════════════════════════════ */
.cat-tabs, .filter-bar__inner {
  display: flex; flex-wrap: wrap; gap: 6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 32px;
}
.cat-tab {
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 8px 14px;
  border: 1px solid transparent;
  transition: color .12s, border-color .12s;
}
.cat-tab:hover { color: var(--red); }
.cat-tab.active {
  color: var(--base); background: var(--ink); border-color: var(--ink);
}

/* ════════════════════════════════════════════════════
   게시판 테이블
   ════════════════════════════════════════════════════ */
.notice-table { width: 100%; font-size: 14px; }
.notice-table thead th {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  padding: 14px 12px; text-align: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.notice-table tbody td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.notice-table tbody tr:hover { background: var(--paper); }
.notice-table .title-col a { font-weight: 600; color: var(--ink); }
.notice-table .title-col a:hover { color: var(--red); }
.notice-table .text-center { text-align: center; }

/* 배지 */
.badge {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 3px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.badge-top    { background: var(--red);   border-color: var(--red);   color: var(--base); }
.badge-notice { background: var(--ink);   border-color: var(--ink);   color: var(--base); }
.badge-event  { background: var(--blue);  border-color: var(--blue);  color: var(--base); }
.badge-news   { background: var(--green); border-color: var(--green); color: var(--base); }
.badge-data   { background: var(--yellow);border-color: var(--yellow);color: var(--ink); }

/* 페이지네이션 */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 48px;
  font-family: var(--mono); font-size: 13px;
}
.pagination li { display: block; }
.pagination li a, .pagination li strong {
  display: block; padding: 9px 14px;
  border: 1px solid var(--line); color: var(--muted); font-weight: 600;
}
.pagination li a:hover { border-color: var(--ink); color: var(--ink); }
.pagination li.active a, .pagination li strong {
  background: var(--ink); color: var(--base); border-color: var(--ink);
}

/* 검색바 */
.search-bar { display: flex; }
.search-bar input {
  width: 260px; max-width: 60vw;
  padding: 11px 14px;
  border: 1px solid var(--line); background: var(--paper);
  font-size: 14px;
}
.search-bar input:focus { outline: 0; border-color: var(--red); }
.search-bar button {
  padding: 11px 20px;
  background: var(--ink); color: var(--base);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--ink);
}
.search-bar button:hover { background: var(--red); border-color: var(--red); }

/* 게시글 상세 */
.notice-view-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 28px;
}
.notice-view-meta {
  display: flex; gap: 18px; align-items: center;
  margin-top: 12px;
  font-size: 12.5px; color: var(--muted); font-family: var(--mono);
}
.notice-view-body {
  font-size: 15.5px; line-height: 1.9; color: var(--text);
  padding: 8px 0 32px;
}
.notice-view-body p { margin-bottom: 16px; }
.notice-view-body img { margin: 16px 0; }
.notice-file {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; margin-bottom: 28px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 14px;
}
.notice-file a { font-weight: 600; color: var(--ink); }
.notice-file a:hover { color: var(--red); }
.notice-adjacent { border-top: 1px solid var(--line); }
.adj-item {
  display: flex; gap: 18px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.adj-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  width: 70px; flex-shrink: 0;
}
.adj-title { font-size: 14px; color: var(--text); font-weight: 500; }
.adj-title:hover { color: var(--red); }

/* ════════════════════════════════════════════════════
   갤러리
   ════════════════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  display: block; position: relative;
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--base); border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(26,24,19,0.85));
  color: var(--base); font-size: 13.5px; font-weight: 600;
}
.gallery-item-info strong { font-weight: 700; }

/* ════════════════════════════════════════════════════
   폼
   ════════════════════════════════════════════════════ */
.form-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
}
.form-section-title {
  font-family: var(--serif);
  font-size: 19px; font-weight: 700; color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.form-divider { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }
.form-row { margin-bottom: 20px; }
.form-row-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label, .field label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.form-ctrl, .field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--base);
  border: 1px solid var(--line);
  font-size: 15px; color: var(--ink);
  font-family: var(--sans);
}
.form-ctrl:focus, .field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--red);
}
textarea.form-ctrl { min-height: 140px; resize: vertical; }
select.form-ctrl { appearance: auto; }
.required { color: var(--red); }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.form-error, .input-error { border-color: var(--red) !important; }

.check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.check-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--text);
  padding: 11px 16px;
  border: 1px solid var(--line); background: var(--base);
  cursor: pointer;
}
.check-item input { width: auto; accent-color: var(--red); }
.agree-box {
  background: var(--base); border: 1px solid var(--line);
  padding: 16px 18px; margin-bottom: 14px;
  font-size: 13px; line-height: 1.75; color: var(--muted);
}
.agree-box strong { color: var(--ink); }

/* 알림 박스 */
.alert { padding: 14px 18px; margin-bottom: 20px; font-size: 14px; border: 1px solid; }
.alert-danger  { background: #FCEBEC; border-color: var(--red); color: #A8121E; }
.alert-success { background: #EAF5EA; border-color: var(--green); color: #237A1C; }

/* 회원 유형 카드 */
.mem-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mem-type-card { cursor: pointer; }
.mem-type-card input { position: absolute; opacity: 0; pointer-events: none; }
.mtc-inner {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 22px 16px; text-align: center;
  border: 1px solid var(--line); background: var(--base);
  transition: border-color .12s, background .12s;
}
.mem-type-card input:checked + .mtc-inner { border-color: var(--red); background: var(--paper); box-shadow: inset 0 0 0 1px var(--red); }
.mtc-inner strong { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--ink); }
.mtc-inner > span { font-size: 13px; color: var(--red); font-weight: 600; }
.mtc-inner small { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

/* ════════════════════════════════════════════════════
   문의 안내 (contact info)
   ════════════════════════════════════════════════════ */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  max-width: 720px; margin: 32px auto 0;
}
.ci-item { background: var(--paper); text-align: center; padding: 26px 18px; }
.ci-item .ci-icon { font-size: 24px; display: block; margin-bottom: 10px; }
.ci-item strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--red); text-transform: uppercase; margin-bottom: 6px; }
.ci-item span { font-size: 13.5px; color: var(--text); }

/* 봉사단 — 인용 / 혜택 / 회비표 */
.vol-quote blockquote {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700; color: var(--ink); line-height: 1.5;
  border-left: 3px solid var(--red); padding-left: 24px;
  margin: 0 0 22px;
}
.vol-quote p { font-size: 15px; line-height: 1.8; color: var(--muted); }
.benefit-list { display: flex; flex-direction: column; }
.benefit-list li {
  font-size: 14.5px; color: var(--text);
  padding: 14px 16px;
  border: 1px solid var(--line); border-top: 0;
}
.benefit-list li:first-child { border-top: 1px solid var(--line); }
.fee-table { border: 1px solid var(--line); }
.fee-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 18px; font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.fee-row:last-child { border-bottom: 0; }
.fee-row.head {
  background: var(--ink); color: var(--base);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.fee-row.highlight { background: var(--paper); font-weight: 700; color: var(--red); }

/* 가입 안내 밴드 */
.apply-info-band {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--line); margin-bottom: 32px;
}
.aib-item {
  flex: 1; min-width: 200px;
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.aib-item:last-child { border-right: 0; }
.aib-item .aib-icon { font-size: 24px; }
.aib-item strong { display: block; font-weight: 700; color: var(--ink); font-size: 14px; }
.aib-item span { font-size: 12.5px; color: var(--muted); }

/* 완료 페이지 */
.complete-wrap {
  max-width: 560px; margin: 0 auto; text-align: center;
  padding: 40px;
}
.complete-icon { font-size: 64px; margin-bottom: 20px; }
.complete-wrap h1 { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
.complete-wrap p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 18px; }
.complete-wrap strong { color: var(--ink); }

/* ════════════════════════════════════════════════════
   푸터
   ════════════════════════════════════════════════════ */
.site-footer { background: var(--ink); color: var(--base); padding: 60px 0 36px; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245,241,234,0.18);
}
.site-footer__brand .logo-card { background: var(--base); padding: 10px; display: inline-flex; }
.site-footer__brand .logo-card img { width: 52px; height: 52px; }
.site-footer__brand .name { font-family: var(--serif); font-size: 18px; font-weight: 700; margin: 16px 0 8px; }
.site-footer__brand .meta { font-size: 12.5px; line-height: 1.75; color: rgba(245,241,234,0.6); }
.site-footer__col .eyebrow { color: var(--yellow); margin-bottom: 16px; }
.site-footer__col a { display: block; font-size: 13.5px; margin-bottom: 9px; color: rgba(245,241,234,0.82); }
.site-footer__col a:hover { color: var(--yellow); }
.site-footer__base {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  color: rgba(245,241,234,0.5); letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════
   반응형 — 태블릿 (≤ 1100px)
   ════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --gutter: var(--gutter-tablet); }
  .hero__grid { gap: 40px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat, .stat-item { padding: 32px 22px !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd), .stat-item:nth-child(odd) { border-right: 1px solid var(--line); padding-left: 0 !important; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(4, 1fr); }
  .leader-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mou-grid, .card-grid, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ci-palette { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 중간 구간: 데스크탑 내비 → 햄버거 (≤ 1024px) ── */
@media (max-width: 1024px) {
  .nav, .nav__sep, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .site-header__inner { gap: 16px; padding-block: 14px; }
  :root { --header-h: 81px; }
}

/* ════════════════════════════════════════════════════
   반응형 — 모바일 (≤ 768px)
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --gutter: var(--gutter-mobile); }

  .site-header__inner { padding: 12px var(--gutter-mobile); }
  .brand__logo { width: 38px; height: 38px; }
  .brand__name { font-size: 14px; }
  .brand__sub { display: none; }

  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  .programs { padding: 48px 0; }

  .hero { padding: 36px 0 44px; }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__lead { margin-top: 20px; }
  .hero__cta { margin-top: 26px; }
  .hero__cta .btn { flex: 1; }

  .stats__grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat__num, .stat-num { font-size: 42px; }

  .program-grid { grid-template-columns: 1fr; }
  .card-grid, .card-grid-2, .card-grid-4, .mou-grid { grid-template-columns: 1fr; }

  .message { padding: 48px 0; }
  .message__grid { grid-template-columns: 1fr; gap: 28px; }
  .message__visual { max-width: 200px; }

  .news__grid { grid-template-columns: 1fr; }
  .news-two-col { grid-template-columns: 1fr; gap: 36px; }

  .partners { padding: 40px 0; }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }

  .cta-split { grid-template-columns: 1fr; }
  .cta-card { padding: 40px var(--gutter-mobile); }
  .cta-card--light { border-right: 0; border-bottom: 1px solid var(--line); }

  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__base { flex-direction: column; gap: 8px; }

  .page-title { padding: 32px 0 0; }
  .page-title h1 .meta { display: block; margin: 12px 0 0; font-size: 14px; }

  .mission__grid, .greeting-grid, .location-wrap,
  .news-two-col, .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .ci-palette { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .dept-chips { flex-direction: column; }

  .greeting-symbol { position: static; }
  .calligraphy { writing-mode: horizontal-tb; font-size: 34px; }

  .timeline__row { grid-template-columns: 1fr; gap: 10px; padding: 18px 0; }
  .timeline__year { font-size: 24px; }

  .form-wrap { padding: 24px 20px; }
  .form-row-inline { grid-template-columns: 1fr; gap: 0; }
  .mem-type-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .apply-info-band { flex-direction: column; }
  .aib-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .aib-item:last-child { border-bottom: 0; }
  .reg-info span { border-right: 0; border-bottom: 1px solid var(--line); }
  .reg-info span:last-child { border-bottom: 0; }

  .notice-table thead { display: none; }
  .notice-table tbody tr {
    display: block; padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .notice-table tbody td {
    display: inline; border: 0; padding: 0;
  }
  .notice-table tbody td.title-col { display: block; margin: 6px 0; font-size: 15px; }
  .notice-table tbody td:first-child { margin-right: 8px; }
}

@media (max-width: 480px) {
  .stats__grid, .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid, .values-grid, .leader-grid, .partners__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}

/* 인쇄 */
@media print {
  .site-header, .site-footer, .topbar, .menu-toggle, .mobile-drawer { display: none; }
  body { background: #fff; color: #000; }
}
