@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css");
@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap");

/* ─────────────────────────────────────────────
   토큰 — 30대·60대 동시 대응: 기본 18px, 고대비
   ───────────────────────────────────────────── */
:root {
  --ink: #16211f;
  --ink-soft: #4a5a57;
  --ink-faint: #7b8b87;
  --paper: #fbfbf9;
  --surface: #ffffff;
  --surface-2: #f1f3f1;
  --line: #dde2df;
  --line-soft: #eaeeec;
  --accent: #0e6e5a;
  --accent-ink: #095446;
  --accent-bg: #e6f2ee;
  --warn: #8a5a08;
  --warn-bg: #fbf1de;
  --focus: #0e6e5a;

  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", system-ui, sans-serif;
  --serif: "Gowun Batang", "Apple SD Gothic Neo", serif;

  --read: 34rem;
  --wide: 64rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e6ece9;
    --ink-soft: #a3b2ae;
    --ink-faint: #74827e;
    --paper: #101716;
    --surface: #172120;
    --surface-2: #1e2a28;
    --line: #2b3836;
    --line-soft: #222e2c;
    --accent: #4fc0a4;
    --accent-ink: #7bd4bc;
    --accent-bg: #122b25;
    --warn: #dfae55;
    --warn-bg: #2a2113;
    --focus: #4fc0a4;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

a { color: var(--accent-ink); }

.wrap { max-width: var(--wide); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: var(--read); margin: 0 auto; padding: 0 20px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip:focus { left: 0; }

/* ── 헤더 ── */
.site-head {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: sticky; top: 0; z-index: 50;
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 66px; flex-wrap: wrap;
}
.brand {
  font-family: var(--serif); font-weight: 700; font-size: 19px;
  color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
  padding: 8px 0;
}
.site-nav { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.site-nav a {
  color: var(--ink-soft); text-decoration: none; font-size: 16px;
  padding: 10px 12px; border-radius: 6px; font-weight: 500;
}
.site-nav a:hover { background: var(--surface-2); color: var(--ink); }
.site-nav a.cta {
  background: var(--accent); color: #fff; font-weight: 600;
  padding: 11px 18px;
}
.site-nav a.cta:hover { background: var(--accent-ink); color: #fff; }

/* ── 타이포 ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; text-wrap: balance; line-height: 1.4; }
h1 { font-size: clamp(28px, 5vw, 38px); margin: 0 0 12px; letter-spacing: -0.01em; }
h2 { font-size: clamp(22px, 3.4vw, 27px); margin: 48px 0 14px; }
h3 { font-size: 20px; margin: 32px 0 10px; }
p { margin: 0 0 20px; }
ul, ol { margin: 0 0 20px; padding-left: 22px; }
li { margin-bottom: 8px; }
li::marker { color: var(--ink-faint); }
strong { font-weight: 700; }
hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

/* ── 본문(글) ── */
.prose { font-size: 19px; line-height: 1.85; }
.prose > * { max-width: var(--read); margin-left: auto; margin-right: auto; }
.prose h2, .prose h3 { max-width: var(--read); margin-left: auto; margin-right: auto; }
.prose table { max-width: none; width: 100%; }

.lede {
  font-size: 20px; color: var(--ink-soft); line-height: 1.75;
  padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 32px;
}

.meta {
  font-size: 15px; color: var(--ink-faint); margin: 0 0 24px;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.meta .tag {
  background: var(--accent-bg); color: var(--accent-ink);
  padding: 3px 10px; border-radius: 999px; font-size: 14px; font-weight: 600;
}

/* ── 표 ── */
.table-wrap { overflow-x: auto; margin: 0 auto 24px; max-width: var(--read); border: 1px solid var(--line); background: var(--surface); border-radius: 8px; }
table { border-collapse: collapse; width: 100%; font-size: 16.5px; min-width: 420px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
thead th { background: var(--surface-2); font-weight: 600; font-size: 15px; }
tbody tr:last-child td { border-bottom: none; }

/* ── 콜아웃 ── */
.callout {
  max-width: var(--read); margin: 0 auto 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 5px solid var(--accent); border-radius: 8px;
  padding: 20px 22px; font-size: 17.5px;
}
.callout > :last-child { margin-bottom: 0; }
.callout .t {
  font-weight: 700; color: var(--accent-ink); font-size: 16px;
  display: block; margin-bottom: 8px;
}
.callout.warn { border-left-color: var(--warn); background: var(--warn-bg); }
.callout.warn .t { color: var(--warn); }

/* ── 브릿지 (Zone A → Zone C) ── */
.bridge {
  max-width: var(--read); margin: 44px auto;
  background: var(--accent-bg); border: 1px solid var(--accent);
  border-radius: 10px; padding: 26px;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.bridge .t { font-family: var(--serif); font-weight: 700; font-size: 20px; margin: 0; }
.bridge p { margin: 0; color: var(--ink-soft); font-size: 17px; }
.bridge .btn { margin-top: 4px; }

/* ── 버튼 ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 26px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 17.5px;
  border: none; border-radius: 8px; text-decoration: none; cursor: pointer;
  font-family: inherit; line-height: 1.4;
}
.btn:hover { background: var(--accent-ink); color: #fff; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn.ghost {
  background: transparent; color: var(--accent-ink);
  border: 2px solid var(--accent); font-weight: 600;
}
.btn.ghost:hover { background: var(--accent-bg); }
.btn.wide { width: 100%; }

/* ── 홈 ── */
.hero { padding: 44px 0 36px; border-bottom: 1px solid var(--line); background: var(--surface); }
.hero h1 { font-size: clamp(27px, 5vw, 36px); max-width: 20ch; }
.hero p { font-size: 18.5px; color: var(--ink-soft); max-width: 44ch; margin: 0; }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin: 40px 0; }
.pillar-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 24px; text-decoration: none; color: var(--ink); display: block;
}
.pillar-card:hover { border-color: var(--accent); }
.pillar-card h3 { margin: 0 0 8px; font-size: 20px; }
.pillar-card p { margin: 0; color: var(--ink-soft); font-size: 16.5px; }

.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li { border-bottom: 1px solid var(--line-soft); margin: 0; }
.post-list a {
  display: block; padding: 20px 0; text-decoration: none; color: var(--ink);
}
.post-list a:hover .h { color: var(--accent-ink); }
.post-list .h { font-family: var(--serif); font-weight: 700; font-size: 20px; line-height: 1.45; display: block; margin-bottom: 6px; }
.post-list .d { color: var(--ink-soft); font-size: 16.5px; }

/* ── 문의 폼 ── */
.ask { max-width: 40rem; margin: 0 auto; padding: 40px 20px 80px; }
.ask-step + .ask-step { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.js .ask-step { display: none; }
.js .ask-step + .ask-step { margin-top: 0; padding-top: 0; border-top: none; }
.js .ask-step.on { display: block; }
.js .step-bar { display: flex; }
.step-bar { display: none; }

.step-bar {
  display: flex; gap: 8px; margin-bottom: 32px; list-style: none; padding: 0;
  font-size: 15px; color: var(--ink-faint);
}
.step-bar li { display: flex; align-items: center; gap: 8px; margin: 0; }
.step-bar li::after { content: ""; width: 18px; height: 1px; background: var(--line); }
.step-bar li:last-child::after { display: none; }
.step-bar li[aria-current="step"] { color: var(--accent-ink); font-weight: 700; }

.field { margin-bottom: 26px; }
.field > label, .field > .lbl {
  display: block; font-weight: 700; font-size: 18.5px; margin-bottom: 8px;
}
.field .hint { font-size: 16px; color: var(--ink-soft); margin: 0 0 12px; }

textarea, input[type="text"], input[type="tel"], input[type="email"] {
  width: 100%; font-family: inherit; font-size: 18px; line-height: 1.7;
  padding: 14px 16px; border: 2px solid var(--line); border-radius: 8px;
  background: var(--surface); color: var(--ink); min-height: 56px;
}
textarea { min-height: 170px; resize: vertical; }
textarea:focus, input:focus { border-color: var(--accent); }

.examples { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.examples .ex {
  text-align: left; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 8px; padding: 13px 16px; font-size: 16.5px; font-family: inherit;
  color: var(--ink); cursor: pointer; line-height: 1.6; min-height: 48px;
}
.examples .ex:hover { border-color: var(--accent); background: var(--accent-bg); }

.choices { display: flex; flex-direction: column; gap: 10px; }
.choice {
  display: flex; gap: 14px; align-items: flex-start;
  border: 2px solid var(--line); border-radius: 10px; padding: 16px 18px;
  cursor: pointer; background: var(--surface); min-height: 56px;
}
.choice:hover { border-color: var(--accent); }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-bg); }
.choice input { width: 22px; height: 22px; margin: 3px 0 0; accent-color: var(--accent); flex: none; }
.choice .c-t { font-weight: 600; font-size: 18px; display: block; }
.choice .c-d { font-size: 16px; color: var(--ink-soft); display: block; margin-top: 2px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 2px solid var(--line); background: var(--surface); border-radius: 999px;
  padding: 10px 18px; font-size: 16.5px; font-family: inherit; color: var(--ink);
  cursor: pointer; min-height: 46px;
}
.chip[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-bg); color: var(--accent-ink); font-weight: 600; }

.consent {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px;
  font-size: 17px; line-height: 1.65;
}
.consent input { width: 24px; height: 24px; margin: 2px 0 0; accent-color: var(--accent); flex: none; }
.consent .req { color: var(--accent-ink); font-weight: 700; }
.consent .opt { color: var(--ink-faint); font-weight: 600; }

details.terms {
  border: 1px solid var(--line); border-radius: 8px; background: var(--surface);
  padding: 0 18px; margin-bottom: 24px; font-size: 16px;
}
details.terms > summary { padding: 14px 0; cursor: pointer; font-weight: 600; min-height: 48px; display: flex; align-items: center; }
details.terms > div { padding-bottom: 16px; color: var(--ink-soft); }
details.terms table { font-size: 15.5px; min-width: 0; }

.ask-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.ask-actions .btn { flex: 1 1 160px; }

.form-msg { margin-top: 18px; font-size: 17px; font-weight: 600; }
.form-msg.err { color: #b3261e; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.done { text-align: center; padding: 40px 0; }
.done .big { font-family: var(--serif); font-size: 28px; font-weight: 700; margin-bottom: 12px; }

/* ── 상품 페이지 필수 고지 ── */
.disclosure {
  max-width: var(--read); margin: 48px auto 0;
  border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2);
  padding: 22px 24px; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft);
}
.disclosure h2 { font-family: var(--sans); font-size: 16px; margin: 0 0 12px; color: var(--ink); }
.disclosure ul { padding-left: 20px; margin: 0; }
.disclosure li { margin-bottom: 7px; }
.review-stamp {
  max-width: var(--read); margin: 20px auto 0; font-size: 14.5px;
  color: var(--ink-faint); border-top: 1px dashed var(--line); padding-top: 14px;
  font-variant-numeric: tabular-nums;
}

/* ── 푸터 ── */
.site-foot {
  border-top: 1px solid var(--line); background: var(--surface);
  margin-top: 80px; padding: 40px 0 60px; font-size: 15.5px; color: var(--ink-soft);
}
.site-foot .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-bottom: 28px; }
.site-foot h4 { font-family: var(--sans); font-size: 15px; color: var(--ink); margin: 0 0 10px; font-weight: 700; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: 7px; }
.site-foot a { color: var(--ink-soft); text-decoration: none; }
.site-foot a:hover { color: var(--accent-ink); text-decoration: underline; }
.legal-block {
  border-top: 1px solid var(--line); padding-top: 22px;
  font-size: 14.5px; line-height: 1.75; color: var(--ink-faint);
}
.legal-block p { margin: 0 0 8px; }
.legal-block .who { color: var(--ink-soft); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ── 자가진단 ── */
.check { max-width: 40rem; margin: 0 auto; padding: 40px 20px 80px; }
.check .intro { font-size: 19px; color: var(--ink-soft); }
.qcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 24px; margin-bottom: 14px;
}
.qcard > .qt { font-weight: 700; font-size: 18.5px; display: block; margin-bottom: 6px; }
.qcard > .qh { font-size: 16px; color: var(--ink-soft); margin: 0 0 14px; }
.yn { display: flex; gap: 10px; flex-wrap: wrap; }
.yn button {
  flex: 1 1 120px; min-height: 54px; padding: 12px 18px; font-size: 17.5px;
  font-family: inherit; font-weight: 600; cursor: pointer; border-radius: 8px;
  border: 2px solid var(--line); background: var(--surface); color: var(--ink);
}
.yn button:hover { border-color: var(--accent); }
.yn button[aria-pressed="true"] { border-color: var(--accent); background: var(--accent); color: #fff; }

.numrow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.numrow input { flex: 1 1 180px; font-variant-numeric: tabular-nums; text-align: right; }
.numrow .unit { font-size: 17px; color: var(--ink-soft); font-weight: 600; }

.verdict {
  border-radius: 10px; padding: 26px; margin: 28px 0;
  border: 2px solid var(--line); background: var(--surface);
}
.verdict.ok { border-color: var(--accent); background: var(--accent-bg); }
.verdict.no { border-color: var(--warn); background: var(--warn-bg); }
.verdict .vt { font-family: var(--serif); font-size: 23px; font-weight: 700; margin: 0 0 10px; }
.verdict p { margin: 0 0 12px; font-size: 17.5px; }
.verdict > :last-child { margin-bottom: 0; }
.verdict ul { margin: 12px 0 0; padding-left: 22px; font-size: 17px; }

.amount {
  font-family: var(--serif); font-size: clamp(30px, 7vw, 42px); font-weight: 700;
  font-variant-numeric: tabular-nums; line-height: 1.2; margin: 4px 0 8px;
}
.breakdown { font-size: 16.5px; }
.breakdown div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.breakdown div:last-child { border-bottom: none; font-weight: 700; }
.breakdown .v { font-variant-numeric: tabular-nums; white-space: nowrap; }

.gaps { list-style: none; padding: 0; margin: 14px 0 0; }
.gaps li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 17px; margin: 0; }
.gaps li:last-child { border-bottom: none; }
.gaps .g { font-weight: 700; display: block; }
.gaps .w { color: var(--ink-soft); font-size: 16px; }

.check-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 16px; margin: 32px 0; }


/* ── 홈 대시보드 ── */
.router { padding: 32px 0 8px; }
.router h2 { margin: 0 0 4px; font-size: clamp(20px, 3vw, 24px); }
.router-hint { color: var(--ink-faint); font-size: 16px; margin: 0 0 16px; }
.sits { display: flex; flex-wrap: wrap; gap: 9px; }
.sit {
  font: inherit; font-size: 16.5px; font-weight: 500; cursor: pointer;
  padding: 12px 18px; min-height: 50px; border-radius: 999px;
  border: 2px solid var(--line); background: var(--surface); color: var(--ink);
  text-align: left; line-height: 1.35;
}
.sit:hover { border-color: var(--accent); }
.sit.on { border-color: var(--accent); background: var(--accent); color: #fff; font-weight: 600; }

.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin: 44px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.sec-head h2 { margin: 0; font-size: clamp(20px, 3vw, 24px); }
.sec-note { color: var(--ink-faint); font-size: 15px; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.card {
  display: flex; flex-direction: column; gap: 7px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 20px 22px; text-decoration: none; color: var(--ink);
}
.card:hover { border-color: var(--accent); }
.card .kicker {
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-faint); text-transform: none;
}
.card .ct { font-family: var(--serif); font-weight: 700; font-size: 19px; line-height: 1.45; }
.card .cb { font-size: 16.5px; color: var(--ink-soft); line-height: 1.65; }
.card .go { margin-top: auto; padding-top: 8px; color: var(--accent-ink); font-weight: 600; font-size: 16.5px; }

/* 자가진단 카드는 한눈에 구분되게 */
.card.do { border-left: 5px solid var(--accent); background: var(--accent-bg); }
.card.do .kicker { color: var(--accent-ink); }

.none { color: var(--ink-faint); font-size: 17px; padding: 24px 2px; margin: 0; }

.ask-band {
  display: flex; gap: 24px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; margin: 56px 0 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 28px;
}
.ask-band h2 { font-size: clamp(20px, 3vw, 24px); }
.ask-band p { margin: 0; color: var(--ink-soft); font-size: 17.5px; max-width: 46ch; }
.ask-band .btn { flex: none; }

/* ── 질문 페이지 하단 진행 안내 ── */
.howto { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); }
.js .howto { display: block; }
.howto h2 { font-size: 20px; margin: 0 0 16px; }
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; }
.steps li {
  counter-increment: s; display: grid; grid-template-columns: 30px 1fr;
  gap: 12px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(s); font-weight: 700; color: var(--accent-ink);
  font-variant-numeric: tabular-nums;
}
/* li 안에 번호(::before)·제목·설명 세 개가 들어가므로
   설명은 2열에 명시적으로 붙여야 숫자 칸으로 밀려나지 않습니다. */
.steps .s { grid-column: 2; font-weight: 600; font-size: 17.5px; }
.steps .d { grid-column: 2; color: var(--ink-soft); font-size: 16.5px; }

/* ── 주제 묶음 (홈) ── */
.group { margin-bottom: 8px; }
.group .sec-note { max-width: 42ch; text-align: right; }
@media (max-width: 620px) { .group .sec-note { text-align: left; } }

.card.soon { background: var(--surface-2); border-style: dashed; }
.card.soon .ct { color: var(--ink-soft); }
.card.ask { background: var(--surface-2); }
.card .go[href] { text-decoration: none; }
.card .go[href]:hover { text-decoration: underline; }

/* ── 글 하단 다음 단계 ── */
.next { max-width: 62rem; margin: 56px auto 0; }   /* .wrap 안이라 패딩 없음 */
.next h2 { font-size: 20px; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }

/* 관리자 링크 — 있되 튀지 않게 */
.site-foot a.adm { color: var(--ink-faint); font-size: 14px; }
.site-foot a.adm:hover { color: var(--ink-soft); }


/* ── 카드 그림 ── */
.art {
  display: block; margin: -20px -22px 12px; padding: 18px 0 14px;
  border-radius: 9px 9px 0 0; border-bottom: 1px solid var(--line-soft);
  background: var(--surface-2); color: var(--ink-faint);
  text-align: center; line-height: 0;
}
.art svg { width: 100%; max-width: 132px; height: auto; }
.card:hover .art { color: var(--accent); }
.card.do .art { background: transparent; color: var(--accent); border-bottom-color: var(--accent); opacity: .95; }
.card.soon .art { opacity: .5; }

/* hidden 이 어떤 규칙에도 지지 않도록 */
[hidden] { display: none !important; }

/* ─────────────────────────────────────────────
   모바일 — 640px 이하
   ───────────────────────────────────────────── */
.brand-short { display: none; }

@media (max-width: 640px) {
  body { font-size: 17px; }
  .wrap, .narrow { padding: 0 16px; }

  /* 헤더: 한 줄 유지. 두 줄이 되면 sticky 헤더가 화면을 크게 먹습니다. */
  .site-head .wrap { flex-wrap: nowrap; min-height: 56px; gap: 10px; }
  .brand-full { display: none; }
  .brand-short { display: inline; }
  .brand { font-size: 17px; white-space: nowrap; }
  .site-nav { flex: none; gap: 2px; }
  .site-nav a { font-size: 15px; padding: 9px 10px; }
  .site-nav a.cta { padding: 10px 14px; }

  .hero { padding: 30px 0 26px; }
  .hero p { font-size: 17px; }

  /* 제목과 설명은 세로로 */
  .sec-head { flex-direction: column; align-items: flex-start; gap: 4px; margin: 32px 0 12px; }
  .sec-note { text-align: left !important; font-size: 14.5px; }

  .router { padding: 24px 0 4px; }
  .router-hint { font-size: 15px; }
  .sits { gap: 7px; }
  .sit { font-size: 15.5px; padding: 11px 15px; min-height: 46px; }

  /* 카드 — 그림 여백이 카드 안쪽 여백과 어긋나지 않게 함께 조정 */
  .cards { gap: 12px; }
  .card { padding: 16px 18px; }
  .art { margin: -16px -18px 10px; padding: 14px 0 11px; }
  .art svg { max-width: 112px; }
  .card .ct { font-size: 18px; }
  .card .cb { font-size: 16px; }

  .ask-band { padding: 22px 18px; gap: 16px; margin-top: 40px; }
  .ask-band .btn { width: 100%; }

  /* 글 */
  .prose { font-size: 18px; }
  .lede { font-size: 18px; }
  .callout { padding: 16px 18px; font-size: 16.5px; }
  .bridge { padding: 20px 18px; margin: 32px auto; }
  .bridge .t { font-size: 18.5px; }
  .bridge p { font-size: 16px; }
  .bridge .btn { width: 100%; }
  table { font-size: 15.5px; min-width: 340px; }
  th, td { padding: 10px 12px; }
  .next { margin-top: 40px; }

  /* 폼·자가진단 */
  .ask, .check { padding: 28px 16px 60px; }
  .check .intro { font-size: 17.5px; }
  .qcard { padding: 18px 18px; }
  .qcard > .qt { font-size: 17.5px; }
  .qcard > .qh { font-size: 15.5px; }
  .field > label, .field > .lbl { font-size: 17.5px; }
  .field .hint { font-size: 15.5px; }
  textarea, input[type="text"], input[type="tel"], input[type="email"] { font-size: 17px; padding: 13px 14px; }
  .examples .ex { font-size: 15.5px; padding: 12px 14px; }
  .choice { padding: 14px 15px; }
  .choice .c-t { font-size: 17px; }
  .choice .c-d { font-size: 15.5px; }
  .consent { font-size: 16px; }
  .yn button { flex: 1 1 100%; }        /* 버튼이 반쪽으로 쪼개지지 않게 */
  .chip { font-size: 15.5px; padding: 10px 15px; }
  .ask-actions { gap: 10px; }
  .ask-actions .btn { flex: 1 1 100%; }  /* 이전/다음이 좁게 붙지 않게 */
  .step-bar { font-size: 13.5px; gap: 6px; margin-bottom: 24px; }
  .step-bar li::after { width: 10px; }

  .verdict { padding: 20px 18px; }
  .verdict .vt { font-size: 20px; }
  .verdict p, .verdict ul { font-size: 16.5px; }
  .breakdown div { flex-wrap: wrap; gap: 4px 16px; }
  .gaps li { font-size: 16px; }
  .numrow input { flex: 1 1 140px; }

  .steps .s { font-size: 16.5px; }
  .steps .d { font-size: 15.5px; }
  .howto { margin-top: 40px; }

  .site-foot { padding: 32px 0 44px; margin-top: 56px; }
  .site-foot .cols { gap: 20px; }
}

/* 아주 좁은 화면 */
@media (max-width: 380px) {
  .brand { font-size: 16px; }
  .site-nav a { font-size: 14.5px; padding: 8px 8px; }
  .site-nav a.cta { padding: 9px 12px; }
  .wrap, .narrow { padding: 0 14px; }
}
