@font-face {
  font-family: "SUIT";
  1: url("https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2/fonts/variable/woff2/SUIT-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --c1: #1A1464;
  --c2: #1C3F9E;
  --c3: #1565C0;
  --c4: #0288D1;
  --c5: #2a95d9;
  --c6: #26C6DA;
  --c7: #4DD0E1;
  --c8: #80DEEA;
  --c9: #E0F7FA;
  --bg: #f4fafd;
  --white: #ffffff;
  --text-dark: #0d1a2e;
  --text-mid: #2a4060;
  --text-light: #5a7890;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "SUIT", "Malgun Gothic", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #2196f3;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  height: 36px; width: auto; display: block; object-fit: contain;
}
.header-right { display: flex; align-items: center; gap: 20px; }
.vol-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hamburger {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 8px;
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.hamburger span {
  width: 18px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── NAV DRAWER ─── */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(10,15,40,0);
  z-index: 200; opacity: 1;
  pointer-events: none;
  transition: background 0.32s ease;
}
.nav-overlay.is-open { background: rgba(10,15,40,0.52); pointer-events: auto; }
.nav-drawer {
  position: fixed; top: 0; right: 0;
  width: 320px; max-width: 90vw; height: 100%;
  background: var(--c1);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.nav-drawer-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c7);
}
.nav-close-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nav-close-btn:hover { background: rgba(255,255,255,0.15); }
.nav-close-btn svg { width: 16px; height: 16px; }
.nav-menu { list-style: none; padding: 12px 0 24px; flex: 1; }
.nav-menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0; transform: translateX(18px);
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.2s;
}
.nav-menu-item:last-child { border-bottom: none; }
.nav-drawer.is-open .nav-menu-item:nth-child(1) { transition-delay: 0.10s; opacity: 1; transform: none; }
.nav-drawer.is-open .nav-menu-item:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.nav-drawer.is-open .nav-menu-item:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: none; }
.nav-drawer.is-open .nav-menu-item:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: none; }
.nav-drawer.is-open .nav-menu-item:nth-child(5) { transition-delay: 0.30s; opacity: 1; transform: none; }
.nav-drawer.is-open .nav-menu-item:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: none; }
.nav-menu-link {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; cursor: pointer;
  transition: background 0.18s; text-decoration: none; color: white;
}
.nav-menu-link:hover { background: rgba(255,255,255,0.06); }
.nav-menu-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-menu-text { flex: 1; }
.nav-menu-en {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c7); margin-bottom: 2px;
}
.nav-menu-ko { font-size: 15px; font-weight: 700; color: white; letter-spacing: -0.01em; }
.nav-menu-arrow { opacity: 0.45; font-size: 22px; line-height: 1; }
.nav-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08); flex-shrink: 0;
}
.nav-drawer-footer-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 12px;
}
.nav-drawer-vol { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }

/* ─── ARTICLE HERO (절반 높이) ─── */
.article-hero {
  position: relative;
  height: 50vh;
  min-height: 300px;
  max-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0a1428;
  background-size: cover;
  background-position: center 40%;
}
/* 이미지 주소 추가 시 여기에 background-image: url('...') 넣으세요 */
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,40,0.88) 0%, rgba(10,10,40,0.25) 60%, transparent 100%);
}
.article-hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px 40px;
  width: 100%;
}
.article-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(77,208,225,0.18);
  border: 1px solid rgba(77,208,225,0.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c7); margin-bottom: 14px;
}
.article-hero-title {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900; color: #fff;
  line-height: 1.25; letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.article-hero-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.55);
}
.article-hero-meta-div {
  width: 1px; height: 10px; background: rgba(255,255,255,0.25);
}

/* ─── ARTICLE BODY ─── */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 32px 100px;
}

/* 리드 박스 (옅은 하늘색) */
/* 기사 부제(리드 위 헤드라인) */
.article-deck {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--c1);
  word-break: keep-all;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--c9);
}

.lead-box {
  background: #dff3fb;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 500;
  text-align: justify;
  word-break: keep-all;
}

/* 본문 단락 */
.body-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.95;
  margin-bottom: 28px;
  word-break: keep-all;
  text-align: justify;
}

/* 이미지 블록 */
.img-block {
  margin: 36px 0;
}
.img-block img,
.img-placeholder {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
}
/* 이미지 여러 장 좌우 배치 (모바일에선 세로로 전환) */
.img-block.img-row { display: flex; gap: 12px; }
.img-block.img-row img { flex: 1 1 0; width: 0; min-width: 0; }
@media (max-width: 600px) {
  .img-block.img-row { flex-direction: column; }
  .img-block.img-row img { flex: none; width: 100%; }
}
.img-placeholder {
  height: 360px;
  background: linear-gradient(135deg, #daeef8 0%, #c5e4f3 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; border-radius: var(--radius-md);
}
.img-placeholder::after {
  content: attr(data-label);
  font-size: 13px; color: var(--text-light);
  font-weight: 500; text-align: center; padding: 0 24px;
  opacity: 0.7;
}

/* 이미지 캡션 */
.img-caption {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  padding-left: 2px;
  word-break: keep-all;
}
.img-caption-name {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.img-caption-name i { font-weight: 700; }

/* 통계 박스 */
.stat-box {
  margin: 44px 0;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c9);
  box-shadow: 0 4px 20px rgba(26,20,100,0.06);
  display: flex; align-items: center; gap: 24px;
}
.stat-icon { font-size: 36px; flex-shrink: 0; }
.stat-number {
  font-size: 30px; font-weight: 900;
  color: var(--c2); letter-spacing: -0.03em; line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; line-height: 1.5; }

/* 인용 박스 */
.pull-quote {
  margin: 48px 0;
  padding: 30px 36px 32px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  border-radius: var(--radius-lg);
  color: #fff;
}
.pull-quote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, serif;
  font-size: 50px; font-weight: 900;
  color: var(--c7);
  line-height: 0.5;
}
.pull-quote::after {
  content: "\201D";
  display: block;
  text-align: right;
  font-family: Georgia, serif;
  font-size: 50px; font-weight: 900;
  color: var(--c7);
  line-height: 0.2;
}
.pull-quote p {
  font-size: 19px; font-weight: 700;
  line-height: 1.7; letter-spacing: -0.01em;
}
.pull-quote cite {
  display: block; margin-top: 16px;
  font-size: 13px; font-style: normal;
  color: var(--c7); font-weight: 600;
}
.pull-quote cite::before { content: "— "; }

/* 섹션 타이틀 */
.section-title {
  font-size: 20px; font-weight: 800;
  color: var(--c1); letter-spacing: -0.02em;
  margin: 52px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c9);
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute; bottom: -2px; left: 0;
  width: 44px; height: 2px; background: var(--c6);
}
/* 프로그램 카드 그리드 */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--c9);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.program-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,20,100,0.08);
}
.program-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.program-month {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 26px;
  background: var(--c4);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 0 12px;
  border-radius: 100px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
/* 월별 색상 (포스터와 동일) */
.month-04 { background: #2D6BB3; }
.month-05 { background: #D9362B; }
.month-06 { background: #A52CB1; }
.month-07 { background: #FF9B30; }
.month-09 { background: #2D6BB3; }
.month-10 { background: #1A8B7E; }
.month-11 { background: #1F1F3A; }

.program-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--c1);
  letter-spacing: -0.02em;
  word-break: keep-all;
  line-height: 1.4;
}
.program-meta {
  border-top: 1px dashed #dce8f0;
  padding-top: 12px;
  margin-top: auto;
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.program-meta .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
}
.program-meta strong {
  color: var(--text-dark);
  font-weight: 700;
  margin-right: 5px;
}
/* 신청 안내 박스 */
.info-box {
  margin: 48px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  border-radius: var(--radius-lg);
  color: #fff;
}
.info-box-title {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c7);
  margin-bottom: 16px;
}
.info-box-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.info-box-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-box-list .info-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c8);
  letter-spacing: 0.04em;
}
.info-box-list .info-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.55;
  word-break: keep-all;
}

/* Q&A 인터뷰 - 질문 박스 */
.qa-question {
  display: flex;
  gap: 14px;
  margin: 44px 0 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #e8f4fb, #f4fafd);
  border-left: 4px solid var(--c4);
  border-radius: var(--radius-md);
}
.qa-question .q-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--c2);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  letter-spacing: -0.02em;
}
.qa-question .q-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--c1);
  line-height: 1.6;
  letter-spacing: -0.01em;
  word-break: keep-all;
  flex: 1;
  padding-top: 4px;
}

/* ─── 미니 인터뷰 박스 ─── */
.mini-interview {
  margin: 48px 0;
  padding: 30px 32px;
  background: var(--white);
  border: 1px solid var(--c9);
  border-top: 4px solid var(--c4);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 22px rgba(21,101,192,0.07);
}
.mini-interview-label {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c4);
  margin-bottom: 14px;
}
.mini-interview-who { font-size: 17px; font-weight: 800; color: var(--c1); line-height: 1.5; }
.mini-interview-role { font-size: 13px; color: var(--text-light); margin-top: 3px; }
.mini-interview .qa-question { margin: 20px 0 12px; }
.mini-interview .body-text { margin: 0 0 6px; }
.mini-interview .body-text:last-child { margin-bottom: 0; }

/* ─── PAGE HEAD (텍스트 타이틀) ─── */
.page-head {
  margin-bottom: 48px;
}
.page-head-tag {
  display: inline-block;
  background: linear-gradient(120deg, rgba(2,136,209,0.1), rgba(38,198,218,0.12));
  border: 1px solid #bce3f2;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.page-head-title {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.page-head-title em {
  font-style: normal;
  color: var(--c4);
}
.page-head-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.75;
  border-left: 3px solid var(--c6);
  padding-left: 18px;
  max-width: 640px;
}

/* ─── EVENT PAGE: 헤더 배경 상시 노출 + 상단 여백 ─── */
/* 이벤트페이지는 헤더 뒤에 히어로(어두운 배경)가 없으므로,
   서브페이지를 스크롤했을 때처럼 헤더 배경을 항상 노출하고
   고정 헤더(100px) 높이만큼 상단 여백을 확보한다. */
.event-page .header {
  background-color: rgba(0,14,69,0.95);
}
.event-page .event-main {
  padding-top: 200px;
}

/* ─── MAIN ─── */
.event-main {
  max-width: 940px;
  margin: 0 auto;
  padding: 60px 16px 40px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c4);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--c4);
  border-radius: 2px;
}

.lead-block {
  margin-bottom: 56px;
}
.lead-text {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.85;
  letter-spacing: -0.02em;
}
.lead-text strong {
  color: var(--c3);
  font-weight: 800;
}

.intro-card {
  background: var(--white);
  border: 1px solid #e4eef5;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 8px 30px rgba(20,80,160,0.06);
  margin-bottom: 56px;
}
.intro-card p {
  font-size: 16.5px;
  color: var(--text-mid);
  line-height: 1.95;
}
.intro-card p + p { margin-top: 16px; }
.intro-card .gift-line {
  margin-top: 22px;
  padding: 16px 20px;
  background: linear-gradient(120deg, rgba(38,198,218,0.1), rgba(2,136,209,0.08));
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  color: var(--c2);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 콘텐츠 리스트 */
.wishlist-section {
  margin-bottom: 56px;
}
.wishlist-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.wishlist-heading em {
  font-style: normal;
  color: var(--c4);
}
.wishlist-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wish-item {
  background: var(--white);
  border: 1px solid #e4eef5;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.wish-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(20,80,160,0.1);
  border-color: var(--c7);
}
.wish-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c6), var(--c4));
  color: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wish-check svg { width: 15px; height: 15px; }
.wish-text {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.5;
  padding-top: 2px;
}

.callout-strip {
  margin-top: 24px;
  background: linear-gradient(120deg, var(--c1), var(--c2));
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  color: white;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.callout-strip::after {
  content: '';
  position: absolute;
  top: -50px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(38,198,218,0.14);
}
.callout-strip span { position: relative; z-index: 1; }
.callout-strip em {
  font-style: normal;
  color: var(--c7);
  font-weight: 800;
}

/* 이미지 밴드 */
.image-band {
  margin: 0 auto 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 36px rgba(20,80,160,0.12);
}
.image-band img {
  width: 100%;
  height: auto;
  display: block;
}
.image-band-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 26px 18px;
  background: linear-gradient(to top, rgba(13,26,46,0.78), transparent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* 마무리 카피 */
.closing-section {
  text-align: center;
  background: linear-gradient(165deg, #ffffff 0%, #eef8fc 100%);
  border: 1px solid #dcecf6;
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.closing-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,198,218,0.12), transparent 70%);
  pointer-events: none;
}
.closing-emoji {
  font-size: 38px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.closing-title {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  color: var(--c1);
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.closing-title em {
  font-style: normal;
  color: var(--c4);
}
.closing-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 참여 CTA */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.btn-join {
  background: var(--c4);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-family: 'SUIT', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 22px rgba(2,136,209,0.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-join:hover { background: var(--c3); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2,136,209,0.34); }
.btn-back {
  background: transparent;
  color: var(--c3);
  border: 1.5px solid #bcdcef;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-back:hover { background: #eaf6fd; border-color: var(--c7); }

@media (max-width: 700px) {
  .wishlist-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .program-grid { grid-template-columns: 1fr; }
  .info-box-list { grid-template-columns: 1fr; }
  .info-box { padding: 22px 22px; }
}

/* 저자 */
.author-box {
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid #dce8f0;
  display: flex; align-items: center; gap: 18px;
}
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c2), var(--c5));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.author-title { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ─── FOOTER ─── */
.site-footer { background: #181464; padding: 60px 24px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand-name { font-size: 18px; font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 6px; }
.footer-brand-sub {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.45); letter-spacing: 0.04em;
  margin-bottom: 20px; text-transform: uppercase;
}
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c7); margin-bottom: 16px;
}
.prev-toggle-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 10px 14px;
  font-family: "SUIT", sans-serif; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.8); cursor: pointer; transition: background 0.2s;
}
.prev-toggle-btn:hover { background: rgba(255,255,255,0.1); }
.toggle-arrow { transition: transform 0.3s; display: inline-block; font-size: 10px; color: var(--c7); }
.toggle-arrow.open { transform: rotate(180deg); }
.prev-issues {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px; overflow: hidden;
  max-height: 0; transition: max-height 0.4s ease, opacity 0.3s ease; opacity: 0;
}
.prev-issues.open { max-height: 400px; opacity: 1; }
.prev-issue-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.prev-issue-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.prev-issue-vol {
  background: var(--c4); color: white;
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 8px; border-radius: 4px; white-space: nowrap;
}
.prev-issue-info { flex: 1; }
.prev-issue-date { font-size: 11px; color: rgba(255,255,255,0.4); }
.prev-issue-theme { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); line-height: 1.3; }
.sns-icon-row { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
.sns-icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none; border: none;
}
.sns-icon-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.sns-icon-btn svg { width: 20px; height: 20px; }
.sns-yt { background: #FF0000; }
.sns-ig { background: linear-gradient(135deg, #d60095, #ff0000, #ffce00); }
.sns-fb { background: #1877F2; }
.sns-home { background: #0288D1; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--c7); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .header-inner { padding: 0 16px; }
  .vol-badge { display: none; }
  .article-body { padding: 40px 16px 80px; }
  .article-hero-content { padding: 0 16px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lead-box { padding: 20px 20px; }
  .article-deck { font-size: 19px; margin-bottom: 20px; padding-bottom: 16px; }
}

/* 이벤트페이지: 모바일에서 헤더 높이(80px)에 맞춰 상단 여백 조정 */
@media (max-width: 480px) {
  .event-page .event-main { padding-top: 115px; }
}