/* =============================================
   교육감 선거 공약비교 2026 — 메인 스타일
   ============================================= */

/* ── 리셋 & 변수 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #3B82F6;
  --primary-light:  #EFF6FF;
  --primary-dark:   #1D4ED8;
  --conservative:   #DC2626;   /* 보수 */
  --progressive:    #2563EB;   /* 진보 */
  --neutral:        #6B7280;   /* 중도 */
  --warning-bg:     #FEF2F2;
  --warning-border: #FECACA;
  --warning-text:   #B91C1C;
  --green:          #16A34A;
  --bg:             #F8FAFC;
  --white:          #FFFFFF;
  --text:           #1E293B;
  --text-sub:       #64748B;
  --border:         #E2E8F0;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow:         0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:      0 12px 40px rgba(0,0,0,.14);
  --radius:         16px;
  --radius-sm:      10px;
  --tr:             .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
.hidden { display: none !important; }

/* ── 공통 레이아웃 ── */
.section-inner { max-width: 1000px; margin: 0 auto; padding: 60px 20px; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; margin-bottom: 8px; }
.section-header p { color: var(--text-sub); font-size: .92rem; }
.sec-title { font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 800; margin-bottom: 8px; }
.sec-desc { color: var(--text-sub); font-size: .9rem; margin-bottom: 28px; }

/* ── 헤더 ── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  height: 62px; display: flex; align-items: center; gap: 16px;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.5rem; }
.logo-text strong { display: block; font-size: .92rem; font-weight: 700; line-height: 1.2; }
.logo-text span { font-size: .7rem; color: var(--text-sub); }
.header-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 6px 14px; border-radius: 20px;
  font-size: .82rem; font-weight: 500; color: var(--text-sub); transition: var(--tr);
}
.nav-link:hover, .nav-link.active { background: var(--primary-light); color: var(--primary); }

/* ── 히어로 ── */
#hero-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 55%, #60A5FA 100%);
  color: #fff; min-height: 500px; display: flex; align-items: center;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto;
  padding: 80px 24px; text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px; padding: 5px 16px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 18px;
}
.hero-title { font-size: clamp(1.6rem,4.5vw,2.8rem); font-weight: 800; line-height: 1.35; margin-bottom: 16px; }
.hero-title .highlight {
  background: linear-gradient(90deg,#FDE68A,#FCD34D);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: .98rem; opacity: .9; margin-bottom: 32px; line-height: 1.8; }

/* D-Day */
.dday-box {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius); padding: 16px 40px; margin-bottom: 32px; gap: 4px;
}
.dday-label { font-size: .75rem; opacity: .8; font-weight: 500; }
.dday-number { font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.dday-date { font-size: .78rem; opacity: .75; }

.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--primary-dark);
  font-weight: 700; font-size: .95rem;
  padding: 14px 32px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,.18); transition: var(--tr);
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.24); }

.hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.deco-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,.07); }
.c1 { width: 320px; height: 320px; top: -90px; right: -70px; }
.c2 { width: 200px; height: 200px; bottom: 20px; left: -50px; }
.c3 { width: 110px; height: 110px; top: 45%; right: 12%; }

/* ── 지역 선택 ── */
#region-section { background: var(--white); }
.region-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 18px; }
.region-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 20px; background: var(--bg);
  border: 2px solid var(--border); border-radius: var(--radius);
  transition: var(--tr); text-align: left; width: 100%;
}
.region-card:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-3px); box-shadow: var(--shadow); }
.region-icon { font-size: 2rem; flex-shrink: 0; }
.region-info { flex: 1; }
.region-info strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.region-info span { font-size: .8rem; color: var(--text-sub); }
.region-arrow { color: var(--primary); font-size: .85rem; }

/* ── 비교 뷰 지역 헤더 ── */
.compare-region-header { background: var(--white); border-bottom: 1px solid var(--border); }
.crh-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.crh-title { font-size: 1.05rem; font-weight: 700; flex: 1; }
.back-btn {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--text-sub); font-size: .82rem;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--border); background: var(--bg); transition: var(--tr); white-space: nowrap;
}
.back-btn:hover { color: var(--primary); border-color: var(--primary); }

/* 후보자 탭 */
.candidate-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cand-tab {
  padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 600;
  border: 2px solid var(--border); background: var(--bg); transition: var(--tr);
}
.cand-tab:hover { border-color: var(--primary); color: var(--primary); }
.cand-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── 섹션 공통 ── */
#section-profiles { background: var(--bg); }
#section-pledges  { background: var(--white); }
#section-issues   { background: var(--bg); }
#section-values   { background: #F0F4FF; }

/* ── Split Profiles ── */
.split-profiles {
  display: grid;
  /* JS에서 style.gridTemplateColumns 로 동적 설정 */
  gap: 18px;
}
@media (max-width: 780px) { .split-profiles { grid-template-columns: 1fr !important; } }

.profile-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border-top: 5px solid var(--pc-color, var(--primary));
  transition: var(--tr);
}
.profile-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.profile-top { padding: 20px 20px 14px; display: flex; gap: 14px; align-items: flex-start; }
.profile-photo {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: var(--pc-color-light, var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; color: var(--pc-color, var(--primary));
  overflow: hidden;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-info { flex: 1; min-width: 0; }
.profile-name { font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; }
.profile-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }

/* 성향 배지 — 텍스트 미표시, 색상만 카드 상단 바·아바타로 구분 */

/* 범죄경력 배지 */
.badge-crime {
  background: var(--warning-bg); color: var(--warning-text);
  border: 1px solid var(--warning-border);
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer; transition: var(--tr);
}
.badge-crime:hover { background: #FEE2E2; }
.badge-crime-none {
  background: #F0FDF4; color: #15803D;
  border: 1px solid #BBF7D0;
  font-size: .72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px;
}

.profile-bio { padding: 0 24px 24px; font-size: .85rem; color: var(--text-sub); line-height: 1.7; }
.profile-bio strong { color: var(--text); }

/* 범죄 상세 박스 */
.crime-detail {
  margin: 0 24px 20px;
  background: var(--warning-bg); border: 1px solid var(--warning-border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-size: .83rem; line-height: 1.7; color: var(--warning-text);
  display: none;
}
.crime-detail.open { display: block; }
.crime-detail-title { font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }

/* ── 5대 공약 비교표 (다인 동시 비교) ── */
.pledge-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.pledge-table-multi {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  table-layout: fixed;
}
.pledge-table-multi th,
.pledge-table-multi td {
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pledge-table-multi tr:last-child td { border-bottom: none; }

/* 구분 열 (번호) */
.pt-label-th {
  width: 60px; background: var(--text); color: #fff;
  font-size: .8rem; font-weight: 700; text-align: center;
  border-radius: var(--radius) 0 0 0;
}
.pt-num-cell {
  text-align: center; background: #F8FAFC;
  font-size: .72rem; color: var(--text-sub); font-weight: 600;
  white-space: nowrap;
}
.pt-num {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .75rem; color: #fff;
  margin: 0 auto 4px;
}

/* 후보자 헤더 열 */
.pt-cand-th {
  background: #F8FAFC; font-size: .85rem; font-weight: 700;
  text-align: center;
}
.pt-th-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.pt-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; overflow: hidden; flex-shrink: 0;
}
.pt-name { font-size: .88rem; font-weight: 700; }

/* 공약 내용 셀 */
.pt-cell { font-size: .82rem; line-height: 1.6; }
.pt-keyword {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  padding: 2px 10px; border-radius: 20px;
  margin-bottom: 6px;
}
.pt-title { font-weight: 700; font-size: .84rem; margin-bottom: 6px; line-height: 1.45; }
.pt-bullets { list-style: none; color: var(--text-sub); padding: 0; }
.pt-bullets li { margin-bottom: 4px; padding-left: 1em; position: relative; }
.pt-bullets li::before { content: "·"; position: absolute; left: 0; font-weight: 700; color: var(--primary); }
.pledge-pending { color: #CBD5E0; font-style: italic; font-size: .82rem; }

/* ── 아코디언 ── */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; font-size: .95rem; font-weight: 700;
  background: var(--white); border: none; cursor: pointer; transition: var(--tr);
}
.accordion-trigger:hover { background: #F8FAFF; }
.accordion-trigger.open { background: var(--primary-light); color: var(--primary); }
.accordion-icon { transition: transform .3s; font-size: .8rem; color: var(--text-sub); }
.accordion-trigger.open .accordion-icon { transform: rotate(180deg); color: var(--primary); }
.accordion-body { display: none; padding: 0 20px 20px; }
.accordion-body.open { display: block; }

.issue-compare {
  display: grid;
  /* JS에서 동적으로 columns 설정 */
  gap: 14px; margin-top: 4px;
}
@media (max-width: 720px) { .issue-compare { grid-template-columns: 1fr !important; } }

.issue-card {
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-size: .85rem; line-height: 1.7;
  border-left: 4px solid var(--ic-color, var(--primary));
  background: var(--ic-bg, var(--primary-light));
}
.issue-card-name { font-size: .75rem; font-weight: 700; color: var(--ic-color, var(--primary)); margin-bottom: 6px; }
.issue-card-text { color: var(--text); }
.issue-pending { color: #CBD5E0; font-style: italic; }

/* ── 가치관 검증 ── */
#section-values { border-top: 1px solid var(--border); }
.values-grid { display: flex; flex-direction: column; gap: 28px; }
.value-item { }
.value-item-title {
  font-size: 1rem; font-weight: 700; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.value-boxes {
  display: grid;
  /* JS에서 동적으로 columns 설정 */
  gap: 14px;
}
@media (max-width: 720px) { .value-boxes { grid-template-columns: 1fr !important; } }

.value-box {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 16px 18px; font-size: .85rem; line-height: 1.75;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--vb-color, var(--primary));
}
.value-box-name {
  font-size: .78rem; font-weight: 700; color: var(--vb-color, var(--primary));
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.value-box-text { color: var(--text); }
.value-pending { color: #CBD5E0; font-style: italic; }

/* ══════════════════════════════════════════
   공약 공감 버튼
═══════════════════════════════════════════ */
.reaction-wrap {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}

.reaction-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--rc-color, var(--primary));
  background: transparent;
  color: var(--rc-color, var(--primary));
  font-size: .75rem; font-weight: 600;
  cursor: pointer; transition: var(--tr);
  white-space: nowrap;
}
.reaction-btn:hover:not(:disabled) {
  background: rgba(var(--rc-color, 59,130,246), .08);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.reaction-btn.reacted {
  background: #F0FDF4;
  border-color: #16A34A;
  color: #15803D;
  cursor: default;
}
.reaction-btn:disabled { opacity: 1; }

.reaction-icon { font-size: .85rem; line-height: 1; }
.reaction-label { font-size: .73rem; }
.reaction-count {
  background: var(--rc-color, var(--primary));
  color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: 1px 7px; border-radius: 10px;
  min-width: 20px; text-align: center;
  transition: var(--tr);
}
.reaction-btn.reacted .reaction-count {
  background: #16A34A;
}
.reaction-btn:empty .reaction-count,
.reaction-count:empty { display: none; }

/* 공감 누를 때 튕기는 애니메이션 */
@keyframes reactionPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  70%  { transform: scale(.92); }
  100% { transform: scale(1); }
}
.reaction-animating { animation: reactionPop .4s ease both; }


/* ══════════════════════════════════════════
   정보 수정 건의 섹션
═══════════════════════════════════════════ */
#section-corrections {
  background: #FAFBFF;
  border-top: 1px solid var(--border);
}

.correction-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.correction-header {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 28px 20px;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F4FF 100%);
  border-bottom: 1px solid var(--border);
}
.correction-header-icon {
  font-size: 1.8rem; flex-shrink: 0; line-height: 1;
  margin-top: 2px;
}
.correction-title {
  font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 4px;
}
.correction-subtitle {
  font-size: .82rem; color: var(--text-sub); line-height: 1.6;
}

/* 폼 레이아웃 */
.correction-form {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.cf-row { display: grid; gap: 16px; }
.cf-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .cf-row-2 { grid-template-columns: 1fr; } }

.cf-field { display: flex; flex-direction: column; gap: 6px; }

.cf-label {
  font-size: .82rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.cf-required { color: #DC2626; font-size: .78rem; }
.cf-optional  { color: var(--text-sub); font-weight: 400; font-size: .75rem; }

.cf-select, .cf-input, .cf-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: .86rem;
  color: var(--text); background: var(--bg);
  transition: var(--tr);
  outline: none;
}
.cf-select:focus, .cf-input:focus, .cf-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.cf-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

.cf-char-count {
  text-align: right; font-size: .72rem; color: var(--text-sub); margin-top: 2px;
}

.cf-notice {
  background: #FFFBEB; border: 1px solid #FDE68A;
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .8rem; color: #92400E; line-height: 1.65;
  display: flex; align-items: flex-start; gap: 8px;
}
.cf-notice i { flex-shrink: 0; margin-top: 2px; color: #D97706; }

.cf-error {
  background: #FEF2F2; border: 1px solid #FECACA;
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .8rem; color: #B91C1C;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}

.cf-submit-wrap { display: flex; justify-content: flex-end; }

.cf-submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 12px 28px; border-radius: 50px;
  font-size: .9rem; font-weight: 700;
  border: none; cursor: pointer; transition: var(--tr);
  box-shadow: 0 4px 14px rgba(59,130,246,.3);
}
.cf-submit-btn:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,130,246,.4);
}
.cf-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* 제출 성공 */
.cf-success {
  padding: 50px 28px;
  flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
}
.cf-success-icon { font-size: 3rem; line-height: 1; }
.cf-success-title { font-size: 1.15rem; font-weight: 800; color: var(--text); }
.cf-success-desc  { font-size: .86rem; color: var(--text-sub); line-height: 1.7; max-width: 360px; }
.cf-another-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 8px;
  padding: 10px 22px; border-radius: 50px;
  border: 2px solid var(--primary); color: var(--primary);
  font-size: .86rem; font-weight: 700;
  background: transparent; cursor: pointer; transition: var(--tr);
}
.cf-another-btn:hover { background: var(--primary-light); }

/* ── 푸터 ── */
#site-footer {
  background: #0F172A; color: #94A3B8;
  padding: 36px 20px 28px;
  text-align: center;
}
.footer-inner { max-width: 680px; margin: 0 auto; }
.footer-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: .95rem; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.footer-notice { font-size: .8rem; line-height: 1.9; margin-bottom: 10px; }
.footer-notice a { color: #60A5FA; text-decoration: underline; }
.footer-copy { font-size: .72rem; color: #475569; }

/* 푸터 내 행크연구소 버튼 */
.footer-hank-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none;
  color: #60A5FA; font-size: .72rem; font-weight: 700;
  cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 2px;
  transition: var(--tr); vertical-align: middle;
}
.footer-hank-btn:hover { color: #93C5FD; }
.footer-hank-logo-img {
  width: 16px; height: 16px;
  border-radius: 3px; object-fit: cover;
  vertical-align: middle;
}

/* ── 행크연구소 모달 ── */
.hank-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.hank-modal-box {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: var(--radius);
  max-width: 520px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  animation: modalIn .25s cubic-bezier(.4,0,.2,1) both;
}
@keyframes modalIn {
  from { opacity:0; transform: scale(.94) translateY(10px); }
  to   { opacity:1; transform: scale(1)  translateY(0); }
}

.hank-modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #334155; color: #94A3B8;
  border: none; cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.hank-modal-close:hover { background: #475569; color: #fff; }

.hank-modal-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.hank-modal-logo-img {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.hank-modal-name {
  display: block; font-size: 1.15rem; font-weight: 800;
  color: #F1F5F9; margin-bottom: 2px;
}
.hank-modal-sub { font-size: .78rem; color: #64748B; }

.hank-modal-desc {
  font-size: .86rem; line-height: 1.95; color: #94A3B8;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #334155;
}
.hank-modal-desc strong { color: #CBD5E1; }

.hank-modal-work {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 20px;
}
.hank-modal-work li {
  font-size: .83rem; color: #94A3B8;
  display: flex; align-items: center; gap: 10px;
}
.hank-modal-work li i {
  color: #3B82F6; font-size: .78rem;
  width: 14px; text-align: center; flex-shrink: 0;
}

.hank-modal-slogan {
  font-size: .9rem; color: #E2E8F0; font-weight: 700;
  margin-bottom: 20px; text-align: center;
  padding: 12px; border-radius: var(--radius-sm);
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
}

.hank-modal-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.hank-modal-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; color: #60A5FA;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.25);
  padding: 6px 14px; border-radius: 20px;
  text-decoration: none; transition: var(--tr);
}
.hank-modal-link:hover { background: rgba(59,130,246,.2); color: #93C5FD; }

/* 모달 내 후원 박스 */
.hank-modal-support {
  background: #0F172A; border: 1px solid #334155;
  border-radius: var(--radius-sm); padding: 18px 20px;
}
.hank-modal-support-title {
  font-size: .88rem; font-weight: 700; color: #E2E8F0;
  margin-bottom: 14px;
}
.hank-modal-support-item {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 10px; margin-bottom: 10px;
}
.hank-modal-support-item:last-child { margin-bottom: 0; }
.hank-modal-support-label {
  font-size: .75rem; font-weight: 700; color: #64748B;
  display: flex; align-items: center; gap: 5px;
  min-width: 72px;
}
.hank-modal-support-label i { color: #3B82F6; width: 12px; text-align: center; }
.hank-modal-support-value {
  font-size: .82rem; color: #CBD5E1; font-weight: 600;
  font-family: 'Courier New', monospace; letter-spacing: .03em;
}
.hank-modal-support-value em {
  font-style: normal; color: #64748B;
  font-weight: 400; font-family: inherit; font-size: .78rem;
}
.hank-modal-support-link {
  font-size: .8rem; color: #60A5FA; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: var(--tr);
}
.hank-modal-support-link:hover { color: #93C5FD; text-decoration: underline; }
.hank-modal-support-link i { font-size: .65rem; }

/* ── 스크롤바 ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── 애니메이션 ── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.fade-in { animation: fadeInUp .35s ease both; }

/* ── 반응형 ── */
@media (max-width: 640px) {
  .section-inner { padding: 40px 16px; }
  .crh-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-content { padding: 60px 16px; }
  .dday-box { padding: 14px 28px; }
}
