/* 컴포넌트 : 공통 크롬 · 카드 · 폼 · 페이지별 블록 */
@charset "utf-8";
/* ============================================================
   3. 레이아웃 · 그리드
   ------------------------------------------------------------
   시안의 컨테이너는 전부 `max-width:1440px;margin:0 auto;padding:0 60px`.
   그 한 줄을 .st-wrap 하나로 대체한다.
   ============================================================ */
.st-page { display: flex; flex-direction: column; min-height: 100vh; }
.st-page > main { flex: 1 0 auto; }

.st-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}
.st-wrap--narrow { max-width: var(--wrap-narrow); }

/* ---- 그리드 유틸 ----------------------------------------
   시안의 고정폭 그리드(1fr 620px / 420px 1fr / 1fr 300px / 200px 1fr …)를
   좁은 폭에서 1열로 떨어뜨리는 장치.

   고정폭은 --colL / --colR 로 페이지가 시안 값을 넣는다. 예)
     <div class="st-grid st-grid--fixR" style="--colR:460px">
     <div class="st-grid st-grid--fixL" style="--colL:420px">

   주의: CSS 변수는 상속된다. --colL / --colR 은 이 유틸 전용이며
   :root 에 기본값을 두지 않는다(두면 각 컴포넌트의 fallback 이 죽는다).
   히어로·밴드·CTA·표는 중첩 시 값이 새지 않도록 전용 변수를 쓴다:
     .st-hero__inner  --hero-col (기본 620px)
     .st-band         --band-col (기본 340px)
     .st-cta          --cta-col  (기본 300px)
     .st-table__row   --th-col   (기본 200px)
   ---------------------------------------------------------- */
.st-grid  { display: grid; gap: var(--sp-5); }
.st-grid--2 { grid-template-columns: repeat(2, 1fr); }
.st-grid--3 { grid-template-columns: repeat(3, 1fr); }
.st-grid--4 { grid-template-columns: repeat(4, 1fr); }
.st-grid--5 { grid-template-columns: repeat(5, 1fr); }

.st-grid--fixL  { grid-template-columns: var(--colL, 340px) 1fr; }
.st-grid--fixR  { grid-template-columns: 1fr var(--colR, 380px); }
.st-grid--fixLR { grid-template-columns: var(--colL, 340px) 1fr var(--colR, 200px); }

.st-grid--top { align-items: start; }
.st-grid--mid { align-items: center; }

/* 간격 — 시안 실측 빈도순 */
.st-gap-8  { gap: 8px; }
.st-gap-10 { gap: 10px; }
.st-gap-12 { gap: 12px; }
.st-gap-16 { gap: 16px; }
.st-gap-20 { gap: 20px; }
.st-gap-24 { gap: 24px; }
.st-gap-36 { gap: 36px; }
.st-gap-40 { gap: 40px; }
.st-gap-48 { gap: 48px; }
.st-gap-60 { gap: 60px; }

/* 좁은 폭에서도 2열을 유지해야 하는 경우의 탈출구 */
.st-grid--keep2 { grid-template-columns: repeat(2, 1fr); }

.st-span-2 { grid-column: span 2; }
.st-span-full { grid-column: 1 / -1; }

/* ============================================================
   4. 헤더 · 네비 · 상단 고지 바
   ------------------------------------------------------------
   markup 계약 (4개 페이지 공통):
     <header class="st-header">
       <div class="st-header__inner">
         <a class="st-logo">…</a>
         <nav class="st-nav">…</nav>
         <a class="st-header__cta">…</a>
       </div>
     </header>
   ============================================================ */
.st-notice {
  background: var(--green-dark);
  color: var(--on-dark-3);
  font-size: var(--fs-label);
  line-height: var(--lh-label);
  padding: 9px 0;
}
/* 시안의 "비공개" 배지. 시안은 11px 이지만 한글이라 본문 하한(16px)을 적용하고
   그만큼 높이·여백을 키웠다 — 형태는 시안, 크기는 우리 규칙. */
.st-notice__tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .14);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: .02em;
}
.st-notice__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  display: flex;
  align-items: center;
  gap: 10px;
}

.st-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.st-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  height: var(--h-header);
  display: flex;
  align-items: center;
  gap: 34px;              /* 시안 gap:34px */
}

/* 레거시 markup(.st-header__top 이 로고+CTA 를 감싸던 형태) 호환.
   display:contents 로 자식이 그대로 __inner 의 flex 항목이 된다. */
.st-header__top { display: contents; }

.st-logo {
  order: 1;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;               /* 시안 gap:3px */
  min-height: var(--h-tap);   /* 로고도 탭 대상 — 48px 확보 */
  color: inherit;
  text-decoration: none;
}
.st-logo:hover { text-decoration: none; }
.st-logo b {
  font-size:21px;        /* 시안 19px/800 */
  line-height: 1.2;       /* 시안 실측 23px — 본문 행간(26px) 상속 차단 */
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--fg);
}
.st-logo b i { font-style: normal; color: var(--green); }
.st-logo small { font-size: var(--fs-micro); line-height: 1.25; color: var(--muted); }

.st-nav {
  order: 2;
  display: flex;
  align-items: center;
  gap: 30px;              /* 시안 gap:30px */
  font-size: var(--fs-body);  /* 시안 15px → 본문 하한 16px */
  font-weight: 600;
}
.st-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;               /* 시안 gap:7px */
  min-height: var(--h-tap);
  color: var(--body);
  text-decoration: none;
  white-space: nowrap;
}
.st-nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: transparent;
}
.st-nav a:hover { color: var(--green); text-decoration: none; }
.st-nav a[aria-current="page"] { color: var(--green); }
.st-nav a[aria-current="page"]::after { background: var(--green); }

.st-header__cta {
  order: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--h-tap);   /* 시안 44px → 터치 48px 로 상향 */
  padding: 0 20px;        /* 시안 padding:0 20px */
  border-radius: 10px;    /* 시안 10px */
  background: var(--green);
  color: #fff;
  font-size: var(--fs-body);  /* 시안 15px → 본문 하한 16px */
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.st-header__cta:hover { background: var(--green-hover); color: #fff; text-decoration: none; }

/* ============================================================
   5. 히어로
   ------------------------------------------------------------
   시안: 배경 linear-gradient(180deg,#F1F7F2,#FAFCFA)
         padding:78px 60px 72px / grid 1fr 620px / gap 60px
   ============================================================ */
.st-hero {
  background: linear-gradient(180deg, #F1F7F2 0%, #FAFCFA 100%);
  border-bottom: 1px solid var(--line);
}
.st-hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 78px var(--wrap-pad) 72px;
  display: grid;
  grid-template-columns: 1fr var(--hero-col, 620px);
  gap: 60px;
  align-items: center;
}
.st-hero h1 {
  margin: 22px 0 0;
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--heading);
  text-wrap: pretty;
}
.st-hero h1 span { color: var(--green); }
.st-hero__desc {
  margin: 20px 0 0;
  max-width: 560px;       /* 시안 max-width:560px */
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: var(--body);
  text-wrap: pretty;
}
.st-hero__art {
  position: relative;
  min-height: 430px;      /* 시안 height:430px */
  border-radius: var(--r-band);
  background: var(--green-weak);
  overflow: visible;
}
.st-hero__art > img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-band);
}
.st-hero__float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line-chip);
  border-radius: var(--r-btn);
  padding: 14px 18px;
  box-shadow: var(--shadow-pop);
}
.st-hero__float--tr { top: -14px; right: -14px; }
.st-hero__float--bl { bottom: -16px; left: -16px; }
.st-hero__float b { display: block; font-size:19px; line-height: 1.2; font-weight: 800; color: var(--green); }
.st-hero__float small { display: block; font-size: var(--fs-micro); line-height: 1.25; font-weight: 600; color: var(--muted); }

/* ============================================================
   6. 섹션 · 제목 · 아이브로우
   ============================================================ */
.st-sec { padding: var(--sec-pad) 0 0; }
.st-sec--sm   { padding-top: var(--sec-pad-sm); }
.st-sec--end  { padding-bottom: var(--sec-pad-end); }
.st-sec--tint  { background: var(--tint);    padding: var(--sec-pad) 0; }
.st-sec--tint2 { background: var(--tint-2);  padding: var(--sec-pad) 0; }
.st-sec--soft  { background: var(--tint-3); }
.st-sec--dark  { background: var(--green-dark); color: #fff; padding: var(--sec-pad) 0; }
.st-sec--dark :where(h1, h2, h3) { color: #fff; }
.st-sec--dark :where(p) { color: var(--on-dark); }

/* 시안: VALUE/PROCESS 헤드는 가운데 정렬, 이후 카드 그리드는 margin-top:44px */
.st-sec__head { text-align: center; }
.st-sec__head--left { text-align: left; }
.st-sec__body { margin-top: 44px; }

.st-eyebrow {
  margin: 0;                    /* 시안 0 — <p> 기본 아래여백 16px 을 지운다 */
  font-size: var(--fs-deco);    /* 시안 12px/800 — VALUE/PROCESS 라틴 라벨(장식) */
  line-height: 14px;            /* 시안 실측 높이 14px (line-height:normal) */
  font-weight: 800;
  letter-spacing: .14em;        /* 시안 .14em */
  color: var(--eyebrow);        /* 시안 #7FA98C — 주 녹색이 아니다 */
  text-transform: uppercase;
}

.st-h1 { margin: 0; font-size: var(--fs-h1); line-height: var(--lh-h1); font-weight: 800; letter-spacing: -.03em; color: var(--heading); }
.st-h2 { margin: 12px 0 0; font-size: var(--fs-h2); line-height: var(--lh-h2); font-weight: 800; letter-spacing: -.025em; color: var(--heading); }
.st-h3 { margin: 0; font-size: var(--fs-h3); line-height: var(--lh-h3); font-weight: 800; color: var(--heading); }
.st-h4 { margin: 0; font-size: var(--fs-h4); line-height: var(--lh-h4); font-weight: 800; color: var(--heading); }

/* 시안: 섹션 헤드 아래 설명은 --muted, 본문 문단은 --body */
.st-lead    { margin: 12px 0 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--muted); }
.st-lead--body { line-height: 27px; color: var(--body); }   /* 시안 27px — --lh-body(26)와 다름 */
.st-text    { margin: 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--body); }
.st-caption { font-size: var(--fs-cap); line-height: var(--lh-cap); color: var(--muted); }

/* ============================================================
   7. 버튼
   ------------------------------------------------------------
   시안 주 CTA : height 56 / radius 14 / padding 0 26 / 17px 700
   시안 보조   : 흰 배경 + #D8E1DB 1px + 녹색 글자 / padding 0 24
   시안 중형   : height 54 / radius 13 / 16px
   시안 헤더   : height 44 → 48 로 상향 / radius 10 / 15px
   ============================================================ */
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--h-btn);
  min-height: var(--h-tap);
  padding: 0 26px;
  border: 0;
  border-radius: var(--r-btn);
  background: var(--green);
  color: #fff;
  font-family: inherit;
  font-size: var(--fs-lead);   /* 시안 17px */
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}
.st-btn:hover { background: var(--green-hover); color: #fff; text-decoration: none; }

.st-btn--ghost {
  padding: 0 24px;
  background: #fff;
  border: 1px solid var(--line-btn);
  color: var(--green);
  font-size: var(--fs-body);   /* 시안 보조 버튼은 16px (주 CTA 만 17px) */
}
.st-btn--ghost:hover { background: var(--tint-2); color: var(--green); }

.st-btn--md { height: var(--h-btn-md); border-radius: var(--r-badge); font-size: var(--fs-body); }
.st-btn--sm { height: var(--h-tap); padding: 0 20px; border-radius: 10px; font-size: var(--fs-body); }
.st-btn--block { width: 100%; }
.st-btn--grow  { flex: 1; }

/* 다크 배경 위 */
.st-btn--onDark { background: #fff; color: var(--green); }
.st-btn--onDark:hover { background: var(--green-weak); color: var(--green); }
.st-btn--onDarkGhost { background: transparent; border: 1px solid var(--on-dark-line); color: #fff; }
.st-btn--onDarkGhost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
/* 이 두 버튼은 늘 다크 배경 위에 놓인다 — 포커스 링을 흰색으로 */
.st-btn--onDark, .st-btn--onDarkGhost { --focus-ring: #fff; }

/* 못 누르는 상태 — 옅은 바탕 + 진한 글자.
   이전에는 #B9C6BD 바탕에 흰 글자(1.77:1)였는데, intake 제출 버튼은 이 상태에서
   "필수 항목에 동의해 주십시오" 라는 유일한 안내를 글자로 보여 준다.
   못 읽으면 왜 제출이 막혔는지 알 길이 없다 → 6.56:1 로 올린다.
   옅은 바탕을 유지하므로 "지금은 못 누른다"는 인상은 그대로다. */
.st-btn[disabled], .st-btn.is-disabled, .st-btn[aria-disabled="true"] {
  background: #DFE5E1;
  border-color: #DFE5E1;
  color: #46504A;
  cursor: not-allowed;
}
/* 진짜로 막는 것만 클릭을 막는다.
   `aria-disabled="true"` 는 "지금은 못 누른다"를 알리는 표시이지 차단이 아니다 —
   눌렀을 때 왜 못 누르는지 말해 주어야 하므로 pointer-events 를 끄면 안 된다.
   (intake 의 제출 버튼이 이 규칙 때문에 마우스 클릭이 죽어 개별 예외를 두고 있었다.) */
.st-btn[disabled], .st-btn.is-disabled { pointer-events: none; }

.st-btns { display: flex; flex-wrap: wrap; gap: 12px; }   /* 시안 gap:12px */
.st-btns--col { flex-direction: column; flex-wrap: nowrap; gap: 10px; }

/* ============================================================
   8. 카드
   ------------------------------------------------------------
   시안: bg #fff / border 1px #E9EDEA / radius 18 / padding 30px 26px
         hover 시 border-color #C9DBCF
   ============================================================ */
.st-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 26px;
}
.st-card--hover { transition: border-color .15s ease; }
.st-card--hover:hover { border-color: var(--line-hover); }
.st-card--sm   { padding: 26px 24px; }   /* 시안 26px 24px — 16회 */
.st-card--md   { padding: 28px 26px; }   /* 시안 28px 26px —  3회 */
.st-card--lg   { padding: 40px 44px; border-radius: var(--r-panel); }
.st-card--soft { background: var(--tint-2); border-color: var(--line-tint); }
.st-card--tint { background: var(--tint);   border-color: var(--line); }
.st-card--flush { padding: 0; overflow: hidden; border-radius: var(--r-table); }
.st-card--big  { border-radius: var(--r-hero); padding: 40px 44px; }

.st-card__title { margin: 20px 0 0; font-size: var(--fs-h5); line-height: 1.3; font-weight: 800; letter-spacing: normal; color: var(--fg); }
/* ↑ 시안 카드 제목에는 자간이 없다(h1 -.03em / h2 -.025em 만 있다). 행간도 normal. */
.st-card__desc  { margin: 10px 0 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--body); }
/* ↑ 시안 15/25 → 본문 하한 16/26. SPEC 6-2 A. */

/* ============================================================
   9. 배지 · 태그 · 번호 뱃지
   ============================================================ */
.st-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;                  /* 시안 26px — 16px 글자 높이에 맞춰 +2 */
  padding: 0 10px;
  border-radius: var(--r-tag);
  background: var(--green-weak);
  color: var(--green);
  font-size: var(--fs-micro);
  font-weight: 700;
  white-space: nowrap;
  margin: 0;                     /* <p class="st-badge"> 일 때 :where(p) 16px 제거 */
}
.st-badge--neutral { background: var(--neutral-weak); color: var(--body); }
.st-badge--danger  { background: var(--danger-weak);  color: var(--danger); }
.st-badge--gold    { background: var(--cream);        color: #8A6516; }
.st-badge--dark    { height: 28px; padding: 0 8px; border-radius: 5px; background: rgba(255,255,255,.14); color: #fff; font-size: var(--fs-micro); }
.st-badge--lg      { height: 32px; padding: 0 11px; border-radius: 7px; }
/* 히어로 아이브로우 배지 — 시안 height:34 / radius:17 / 13px */
.st-badge--pill {
  gap: 8px;                      /* 시안 8px (기본 배지 6px 과 다름) */
  height: 34px;
  padding: 0 14px;
  border-radius: 17px;
  background: var(--green-weak-2);
  font-size: var(--fs-cap);
}

.st-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--r-tag);
  background: var(--tint);
  border: 1px solid var(--line);
  color: var(--body);
  font-size: var(--fs-micro);
  font-weight: 700;
}
.st-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* 번호 뱃지 — 시안 46×46 / radius 13 / 20px 800 / bg #EAF3EC */
.st-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  flex: none;
  border-radius: var(--r-badge);
  background: var(--green-weak);
  color: var(--green);
  font-size:22px;
  font-weight: 800;
}
.st-num--sm     { width: 26px; height: 26px; border-radius: 50%; font-size: var(--fs-glyph); }
.st-num--circle { border-radius: 50%; }
.st-num--solid  { background: var(--green); color: #fff; }
.st-num--dark   { background: var(--on-dark-fill); color: #fff; }
.st-num--plain  { background: transparent; color: var(--on-dark-2); font-size: var(--fs-glyph); width: auto; height: auto; }

/* ============================================================
   10. 지표 칩 (히어로 아래 사업기간·오픈·모집규모)
   ------------------------------------------------------------
   시안: height 38 / radius 9 / bg #fff / border #E1E7E3 / 14px
   ============================================================ */
.st-stats { display: flex; flex-wrap: wrap; gap: 10px; }
.st-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: var(--h-chip);
  padding: 6px 14px;
  border-radius: var(--r-xs);
  background: #fff;
  border: 1px solid var(--line-chip-2);
  font-size: var(--fs-label);
  color: var(--body);
}
.st-stat b { font-weight: 700; color: var(--fg); }

/* 큰 지표 박스 (apply 요약 3개) */
.st-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.st-metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  padding: 22px 24px;
}
.st-metric__value { font-size: var(--fs-h3); line-height: 1.25; font-weight: 800; color: var(--green); }
.st-metric__label { margin-top: 6px; font-size: var(--fs-label); font-weight: 700; color: var(--fg); }
.st-metric__note  { margin-top: 4px; font-size: var(--fs-cap); line-height: var(--lh-cap); color: var(--muted); }

/* ============================================================
   11. 안내 박스
   ------------------------------------------------------------
   시안: border-left 3px + 배경 + radius `0 12px 12px 0` + padding 18px 22px
   ============================================================ */
.st-note {
  border-left: 3px solid var(--green);
  background: var(--tint);
  padding: 18px 22px;
  border-radius: var(--r-note);
}
.st-note--cream  { border-left-color: var(--gold); background: var(--cream); }
.st-note--green  { border-left-color: var(--green); background: var(--tint-2); }
.st-note__title  { font-size: var(--fs-body); font-weight: 800; color: var(--fg); }
.st-note p       { margin: 6px 0 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--body); }
.st-note p + p   { margin-top: 8px; }
/* 제목이 <p> 로 쓰이면 위의 `.st-note p`(0,1,1) 가 이겨서 색이 --body 로,
   위 여백이 6px 로 밀린다. 시안은 제목 #1A1F1C / 여백 0 / 본문과 간격 6px 다. */
.st-note .st-note__title      { margin: 0; line-height: 1.3; color: var(--fg); }
.st-note .st-note__title + p  { margin-top: 6px; }

/* 테두리형 — 좌측 룰 없음 */
.st-note--box {
  border-left: 0;
  border: 1px solid var(--line);
  background: var(--tint);
  border-radius: var(--r-input);
  padding: 18px 22px;
}
.st-note--danger {
  border-left: 0;
  border: 1px solid var(--danger-line);
  background: var(--danger-weak);
  border-radius: var(--r-input);
  padding: 14px 18px;
  color: var(--danger);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 700;
}
.st-note--danger .st-note__title { color: var(--danger); }
.st-note--danger p { color: var(--danger); }
.st-note--ok {
  border-left: 0;
  border: 1px solid var(--line-hover);
  background: var(--tint-2);
  border-radius: var(--r-btn);
  padding: 22px 24px;
}
.st-note--ok .st-note__title { color: var(--green); font-size: var(--fs-lead); }
.st-note--plain {
  border-left: 0;
  background: var(--tint);
  border-radius: var(--r-input);
  padding: 18px 22px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body);
}
.st-notes { display: grid; gap: 12px; }

/* ============================================================
   12. ✓ / × 대비 리스트 (참여 가능 / 어려움)
   ------------------------------------------------------------
   시안: 15/24 → 본문 하한 16/26
   ============================================================ */
.st-quals { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }   /* 시안 gap:12px */
.st-qual {
  display: flex;
  gap: 10px;
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body);
}
.st-qual::before {
  content: "✓";
  flex: none;
  color: var(--green);
  font-weight: 800;
}
.st-qual--no::before { content: "×"; color: var(--danger-mark); }

/* ============================================================
   13. 절차 스텝 · 진행 단계
   ============================================================ */
/* (a) 참여 절차 카드 — 시안 repeat(5,1fr) / gap 12 */
.st-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.st-steps--4 { grid-template-columns: repeat(4, 1fr); }
.st-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  padding: 26px 24px;
}
.st-step__no    { font-size: var(--fs-deco); font-weight: 800; color: var(--green); letter-spacing: .04em; }
.st-step__title { margin-top: 14px; font-size: var(--fs-lead); font-weight: 800; color: var(--fg); }
.st-step__desc  { margin: 6px 0 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--body); }  /* 시안 margin-top:6 */

/* 세로 스텝(행 형태) — 시안 grid 38px 1fr 130px / gap 18 / align center
   / padding 22px 26px / border 1px #E9EDEA / radius 16 / bg #fff */
.st-step-row {
  display: grid;
  grid-template-columns: 38px 1fr 130px;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-table);   /* 시안 16px — 카드(18)·버튼(14) 과 다르다 */
  background: #fff;
}
.st-step-rows { display: grid; gap: 12px; }

/* (b) 진행 단계 칩 — 시안 height 64 / radius 14 / border #E4EAE6 / 16px 700 */
.st-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.st-progress__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--h-step);
  padding: 0 22px;
  border: 1px solid var(--line-chip);
  border-radius: var(--r-btn);
  background: #fff;
  color: var(--body);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.st-progress__no {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .08);
  font-size: var(--fs-glyph);
}
.st-progress__item.is-now  { background: var(--green); border-color: var(--green); color: #fff; }
.st-progress__item.is-now .st-progress__no { background: rgba(255, 255, 255, .22); }
.st-progress__item.is-done { background: var(--green-weak); border-color: var(--line-hover); color: var(--green); }

/* ============================================================
   14. 아코디언 / FAQ
   ------------------------------------------------------------
   시안: 2열 그리드 / border 1px #E9EDEA / radius 14 / padding 18px 22px
   <details><summary> 와 button+panel 양쪽을 지원한다.
   ============================================================ */
.st-acc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-items: start; }
.st-acc--1 { grid-template-columns: 1fr; }

.st-acc__item {
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  background: #fff;
}
.st-acc__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: var(--h-tap);
  margin: 0;
  padding: 18px 22px;
  border: 0;
  background: none;
  color: var(--fg);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: var(--lh-body);
  text-align: left;
  cursor: pointer;
  list-style: none;
}
.st-acc__q::-webkit-details-marker { display: none; }
.st-acc__q::marker { content: ""; }
.st-acc__q > span:first-child { display: flex; gap: 10px; }
.st-acc__q > span:first-child::before { content: "Q"; color: var(--green); flex: none; }
/* 열림/닫힘 표시 — 시안은 닫힘 `+` / 열림 `−`(U+2212) 두 글자를 갈아 끼운다.
   18px #8B95A1 / line-height 24. 이전 구현은 `+` 를 45도 돌려 `×` 로 보이게
   했는데 시안에 없는 기호다. 글자를 CSS 로 넣어 상태에 따라 바꾼다. */
.st-acc__sign {
  flex: none;
  font-size:20px;
  line-height: var(--lh-body);
  color: var(--muted);
}
.st-acc__sign::before { content: "+"; }
.st-acc__item[open] > .st-acc__q .st-acc__sign::before,
.st-acc__q[aria-expanded="true"] .st-acc__sign::before { content: "\2212"; }

/* 열렸을 때 질문↔답변 사이 — 시안은 답변 `margin-top:12`.
   닫힘 상태의 아래 여백 18px 을 그대로 두면 6px 이 더 벌어진다. */
.st-acc__item[open] > .st-acc__q,
.st-acc__q[aria-expanded="true"] { padding-bottom: 12px; }
.st-acc__a {
  margin: 0;
  padding: 0 22px 18px 44px;   /* 시안 padding-left:22 + 카드 22 */
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body);
}
.st-acc__q[aria-expanded="false"] + .st-acc__a { display: none; }

/* ============================================================
   15. 다크 밴드 · 페이지 헤드
   ============================================================ */
/* 라운드 다크 밴드 — 시안 radius 22 / padding 34px 38px / grid 340px 1fr */
.st-band {
  background: var(--green-dark);
  border-radius: var(--r-band);
  padding: 34px 38px;
  color: #fff;
  display: grid;
  grid-template-columns: var(--band-col, 340px) 1fr;
  gap: 40px;
  align-items: center;
}
.st-band--stack { grid-template-columns: 1fr; gap: 24px; }
.st-band__title { margin: 0; font-size:24px; line-height: 34px; font-weight: 800; color: #fff; }
.st-band__lead  { margin: 10px 0 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--on-dark); }
.st-band__cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.st-band__card  { background: var(--on-dark-fill); border-radius: var(--r-btn); padding: 18px 16px; }
.st-band__card b     { display: block; margin-top: 8px; font-size: var(--fs-body); font-weight: 800; color: #fff; }
.st-band__card small { display: block; margin-top: 4px; font-size: var(--fs-micro); color: var(--on-dark); }
.st-band__card i     { font-style: normal; font-size: var(--fs-glyph); font-weight: 700; color: var(--on-dark-2); }

/* 전폭 강조 밴드 (마무리 CTA) — 시안 #F1F7F2 / radius 24 / grid 1fr 300px */
.st-cta {
  background: var(--tint-2);
  border: 1px solid var(--line-tint);
  border-radius: var(--r-hero);
  padding: 44px 48px;                                 /* 시안 44px 48px */
  display: grid;
  grid-template-columns: 1fr var(--cta-col, 300px);
  gap: 40px;                                          /* 시안 gap:40px */
  align-items: center;
}
.st-cta h2 { margin: 0; font-size: 30px; line-height: 44px; font-weight: 800; letter-spacing: -.025em; color: var(--heading); }
.st-cta p  { margin: 10px 0 0; font-size: var(--fs-body); line-height: 27px; color: var(--body); }

/* 페이지 헤드(다크) — 시안 padding 44px 60px / h1 32/46 */
.st-pagehead { background: var(--green-dark); color: #fff; }
.st-pagehead__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 44px var(--wrap-pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.st-pagehead h1 { margin: 0; font-size: 32px; line-height: 46px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.st-pagehead p  { margin: 8px 0 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--on-dark); }
.st-pagehead__note { display: flex; align-items: center; gap: 8px; font-size: var(--fs-label); color: var(--on-dark); }
.st-pagehead__dot  { width: 7px; height: 7px; border-radius: 50%; background: var(--dot); flex: none; }

/* ============================================================
   16. 표
   ------------------------------------------------------------
   시안에 <table> 은 없다. 전부 `grid-template-columns:200px 1fr` 행이다.
   그 형태(.st-table__row)와 진짜 <table>(.st-table--el) 둘 다 지원한다.
   ============================================================ */
.st-table {
  border: 1px solid var(--line);
  border-radius: var(--r-table);
  overflow: hidden;
  background: #fff;
}
.st-table__cap {
  padding: 15px 20px;
  background: var(--tint);
  font-size: var(--fs-body);
  font-weight: 800;
  color: var(--fg);
}
.st-table__row {
  display: grid;
  grid-template-columns: var(--th-col, 200px) 1fr;
  border-bottom: 1px solid var(--border);
}
.st-table__row:last-child { border-bottom: 0; }
.st-table__cap + .st-table__row { border-top: 1px solid var(--line-soft); border-bottom: 0; }
.st-table__th {
  padding: 16px 22px;
  background: var(--tint);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 700;
  color: var(--fg);
}
.st-table__td {
  padding: 16px 22px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body);
}
/* 요약표(라벨 좁고 촘촘) — 시안 180px 1fr / padding 13px 20px */
.st-table--tight .st-table__row { border-bottom: 0; border-top: 1px solid var(--line-soft); }
.st-table--tight .st-table__th { background: none; padding: 13px 20px; font-size: var(--fs-label); }
.st-table--tight .st-table__td { padding: 13px 20px; font-size: var(--fs-label); }

/* 진짜 <table> */
.st-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.st-table--el { width: 100%; border-collapse: collapse; }
.st-table--el th,
.st-table--el td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-align: left;
  vertical-align: top;
}
.st-table--el th { background: var(--tint); font-weight: 700; color: var(--fg); white-space: nowrap; }
.st-table--el td { color: var(--body); }
.st-table--el tr:last-child th,
.st-table--el tr:last-child td { border-bottom: 0; }

/* ============================================================
   17. 폼
   ------------------------------------------------------------
   시안: 라벨 14/700 / 힌트 13 muted / 입력 52px radius 12 border #DDE3DF
         입력 글자 16px / focus 시 border-color #176B3E
         2열 그리드 gap 22px
   ============================================================ */
.st-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.st-field--full { grid-column: 1 / -1; }

.st-fieldset {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: #fff;
  padding: 26px 24px;
  margin: 0;
}
.st-fieldset__title { font-size: var(--fs-body); font-weight: 800; color: var(--fg); }
.st-fieldset__sub   { font-size: var(--fs-cap); color: var(--muted); }
.st-fieldset__rule  { height: 1px; margin-top: 12px; background: var(--border); }

.st-label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 700;
  line-height: var(--lh-label);
  color: var(--fg);
}
/* 시안 reqColor 는 오류 텍스트(#C33C36)와 다른 값(#D14A44)을 쓴다. */
.st-req { font-size: var(--fs-micro); font-weight: 800; color: var(--req); }
.st-opt { font-size: var(--fs-micro); font-weight: 800; color: var(--muted); }
/* margin 을 4방향 모두 적는다. <p> 로 쓰면 :where(p) 의 bottom 16px 이 남아
   힌트→입력 간격이 시안 10px 대신 16px 이 된다(시안 실측 대조에서 발견). */
.st-hint { margin: 6px 0 0; font-size: var(--fs-label); line-height: var(--lh-label); color: var(--muted); }

.st-input,
.st-select,
.st-textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 0 16px;
  height: var(--h-input);
  border: 1px solid var(--line-input);
  border-radius: var(--r-input);
  background: #fff;
  color: var(--fg);
  font-family: inherit;
  font-size: var(--fs-body);   /* 시안도 16px */
  line-height: 1.5;
  outline: none;
}
.st-select   { padding: 0 14px; }
.st-textarea {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
  line-height: var(--lh-body);
  resize: vertical;
}
.st-input:focus,
.st-select:focus,
.st-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 62, .12);
}
.st-input.is-error,
.st-select.is-error,
.st-textarea.is-error,
[aria-invalid="true"].st-input,
[aria-invalid="true"].st-select,
[aria-invalid="true"].st-textarea {
  border-color: var(--req);   /* 시안 f.border = #D14A44 */
  background: var(--danger-weak);
}
.st-input[disabled], .st-select[disabled], .st-textarea[disabled] {
  background: var(--tint);
  color: var(--muted);
  cursor: not-allowed;
}
/* .st-hint 와 같은 이유로 4방향을 다 적는다(<p> 의 bottom 16px 제거) */
.st-err { margin: 7px 0 0; font-size: var(--fs-label); font-weight: 700; color: var(--danger); }

/* 체크박스 (동의 항목) — 시안 grid 26px 1fr 80px / gap 14 / radius 14 */
.st-check {
  display: grid;
  grid-template-columns: 26px 1fr 80px;   /* 시안 26px 1fr 80px — 태그 열 고정폭 */
  gap: 14px;
  align-items: start;
  min-height: var(--h-tap);
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  background: #fff;
  cursor: pointer;
}
.st-check input[type="checkbox"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  margin: 0;
}
.st-check__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  flex: none;
  border: 1px solid var(--line-check);   /* 시안 #D5DDD8 */
  border-radius: 8px;
  background: #fff;
  color: #fff;
  font-size: var(--fs-label);
  font-weight: 800;
}
.st-check input:checked ~ .st-check__box {
  background: var(--green);
  border-color: var(--green);
}
.st-check input:checked ~ .st-check__box::after { content: "✓"; }
.st-check input:focus-visible ~ .st-check__box { outline: 3px solid var(--green); outline-offset: 2px; }
.st-check.is-on { border-color: var(--line-hover); background: var(--tint-2); }
/* span 으로 써도 되도록 block 으로 고정한다 */
.st-check__title { display: block; font-size: var(--fs-body); font-weight: 700; color: var(--fg); }
.st-check__desc  { display: block; margin: 6px 0 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--body); }
.st-check__tag   { font-size: var(--fs-label); font-weight: 700; color: var(--green); white-space: nowrap; text-align: right; }
.st-check__tag--opt { color: var(--muted); }
.st-checks { display: grid; gap: 12px; }

/* 약관 전문 — 시안 #FBFCF8 / radius 11 / 13px 23 */
.st-terms {
  margin-top: 10px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--terms-bg);
  font-size: var(--fs-label);
  line-height: var(--lh-body);
  color: var(--body);
  white-space: pre-wrap;
  max-height: 320px;
  overflow-y: auto;
}

/* ============================================================
   18. 푸터
   ------------------------------------------------------------
   시안: border-top #E9EDEA / bg #F7FAF8 / padding 52px 60px 60px
         grid 340px 1fr 200px / gap 48px
   ============================================================ */
.st-footer { border-top: 1px solid var(--line); background: var(--tint); }
.st-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 52px var(--wrap-pad) 60px;
  display: grid;
  grid-template-columns: 340px 1fr 200px;
  gap: 48px;
}
.st-footer__title { font-size: var(--fs-body); font-weight: 800; color: var(--fg); }
.st-footer dl {
  display: grid;
  grid-template-columns: 76px 1fr;   /* 시안 76px 1fr */
  gap: 8px 0;
  margin: 18px 0 0;
  font-size: var(--fs-label);
  line-height: var(--lh-label);
  color: var(--body);
}
.st-footer dt { font-weight: 700; color: var(--fg); }
.st-footer dd { margin: 0; }
/* 시안 13px. 문장 단락이므로 본문 하한 16px 을 적용한다. */
.st-footer__copy {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--muted);
}
.st-footer__copy p { margin: 0; }
.st-footer__copy p + p { margin-top: 12px; }
.st-footer__links { display: flex; flex-direction: column; }
.st-footer__links > b { font-size: var(--fs-label); font-weight: 700; color: var(--fg); padding-bottom: 6px; }
.st-footer__links a {
  display: flex;
  align-items: center;
  min-height: var(--h-tap);   /* 터치 대상 */
  color: var(--body);
  font-size: var(--fs-body);
  text-decoration: none;
}
.st-footer__links a:hover { color: var(--green); text-decoration: none; }

/* ============================================================
   19. 유틸
   ============================================================ */
.st-center  { text-align: center; }
.st-right   { text-align: right; }
.st-muted   { color: var(--muted); }
.st-green   { color: var(--green); }
.st-danger  { color: var(--danger); }
.st-nowrap  { white-space: nowrap; }
.st-flex    { display: flex; align-items: center; gap: 8px; }
.st-flex--between { justify-content: space-between; }
.st-flex--wrap    { flex-wrap: wrap; }
.st-hide    { display: none !important; }

.st-mt-0  { margin-top: 0 !important; }
.st-mt-8  { margin-top: 8px; }
.st-mt-10 { margin-top: 10px; }
.st-mt-12 { margin-top: 12px; }
.st-mt-14 { margin-top: 14px; }
.st-mt-16 { margin-top: 16px; }
.st-mt-18 { margin-top: 18px; }
.st-mt-20 { margin-top: 20px; }
.st-mt-22 { margin-top: 22px; }
.st-mt-24 { margin-top: 24px; }
.st-mt-26 { margin-top: 26px; }
.st-mt-30 { margin-top: 30px; }
.st-mt-34 { margin-top: 34px; }
.st-mt-44 { margin-top: 44px; }
.st-mb-0  { margin-bottom: 0 !important; }

/* ============================================================
   20. 반응형
   ------------------------------------------------------------
   ≥1200px  위의 값 = 시안 원본
   768~1199px  2열 + 여백 축소
   <768px      1열 스택
   본문 16px 는 어떤 구간에서도 내리지 않는다. 제목만 줄인다.
   ============================================================ */

/* ---------- 768 ~ 1199px : 2열 ---------- */
@media (max-width: 1199px) {
  :root {
    --fs-h1: 38px;   /* 46 → 38 */
    --fs-h2: 30px;   /* 34 → 30 */
    --fs-h3: 24px;   /* 26 → 24 */
    --fs-h4: 22px;
    --wrap-pad: 32px;
    --sec-pad: 64px;
    --sec-pad-sm: 48px;
    --sec-pad-end: 72px;
  }

  /* 헤더: 로고+CTA 한 줄, 네비는 아래 줄 가로 스크롤 */
  .st-header__inner { flex-wrap: wrap; height: auto; padding: 12px var(--wrap-pad); gap: 16px; }
  /* 네 항목이 한 줄에 안 들어가면 줄바꿈한다.
     가로 스크롤로 두면 마지막 항목("시안 확인·피드백")이 화면 밖에 숨는데,
     스크롤 어포던스가 없어 60대 이상 사용자에게는 그 메뉴가 없는 것과 같다.
     (375px 실측: scrollWidth 441 / clientWidth 320 → 121px 가려짐) */
  .st-nav {
    order: 4;
    flex: 0 0 100%;
    flex-wrap: wrap;
    gap: 8px 20px;
    overflow-x: visible;
  }
  .st-nav a { min-height: var(--h-tap); }   /* 48px — 터치 구간이라 하한을 낮추지 않는다 */

  /* 히어로 1열 */
  .st-hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 48px var(--wrap-pad) 56px; }
  .st-hero__desc  { max-width: none; }
  .st-hero__art   { min-height: 300px; }
  .st-hero__float--tr { top: -10px; right: 0; }
  .st-hero__float--bl { bottom: -12px; left: 0; }

  /* 그리드 2열 / 고정폭 그리드는 1열 */
  .st-grid--3,
  .st-grid--4,
  .st-grid--5,
  .st-steps,
  .st-steps--4,
  .st-progress,
  .st-band__cards { grid-template-columns: repeat(2, 1fr); }

  .st-grid--fixL,
  .st-grid--fixR,
  .st-grid--fixLR,
  .st-band,
  .st-cta { grid-template-columns: 1fr; }
  .st-band { gap: 24px; }
  .st-cta  { gap: 24px; padding: 32px 28px; }

  .st-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 44px var(--wrap-pad) 48px; }
  .st-footer__links { grid-column: 1 / -1; }

  .st-card--lg, .st-card--big { padding: 32px 28px; }
  .st-sec__body { margin-top: 32px; }
}

/* ---------- < 768px : 1열 스택 ---------- */
@media (max-width: 767px) {
  :root {
    --fs-h1: 32px;   /* 하한 — 더 내리지 않는다 */
    --fs-h2: 26px;
    --fs-h3: 22px;
    --fs-h4: 20px;
    --fs-lead: 16px;    /* 리드도 본문 하한까지만 */
    --lh-lead: 1.625;
    --wrap-pad: 20px;
    --sec-pad: 44px;
    --sec-pad-sm: 36px;
    --sec-pad-end: 56px;
    --h-header: 64px;
  }

  /* 모든 그리드 1열 */
  .st-grid--2,
  .st-grid--3,
  .st-grid--4,
  .st-grid--5,
  .st-grid--keep2,
  .st-grid--fixL,
  .st-grid--fixR,
  .st-grid--fixLR,
  .st-steps,
  .st-steps--4,
  .st-progress,
  .st-metrics,
  .st-acc,
  .st-fields,
  .st-band,
  .st-band__cards,
  .st-cta,
  .st-footer__inner { grid-template-columns: 1fr; }

  .st-hero__inner { padding: 32px var(--wrap-pad) 40px; gap: 28px; }
  .st-hero h1     { margin-top: 16px; }
  .st-hero__art   { min-height: 220px; }
  .st-hero__float { position: static; margin-top: 12px; box-shadow: none; }

  /* 표는 라벨/값 세로 스택 */
  .st-table__row { grid-template-columns: 1fr; }
  .st-table__th  { padding: 14px 18px 6px; background: var(--tint); }
  .st-table__td  { padding: 6px 18px 14px; }
  .st-table--tight .st-table__th { padding: 12px 16px 4px; }
  .st-table--tight .st-table__td { padding: 0 16px 12px; }
  .st-table--el th, .st-table--el td { padding: 12px 14px; }

  /* 버튼은 세로로 쌓고 폭을 채운다 */
  .st-btns { flex-direction: column; align-items: stretch; }
  .st-btns .st-btn { width: 100%; }

  /* 카드·패널 여백 축소 */
  .st-card      { padding: 22px 18px; }
  .st-card--sm  { padding: 20px 18px; }
  .st-card--lg,
  .st-card--big { padding: 24px 18px; }
  .st-band      { padding: 24px 20px; }
  .st-cta       { padding: 26px 20px; }
  .st-fieldset  { padding: 20px 18px; }
  .st-note, .st-note--box, .st-note--plain { padding: 16px 18px; }

  /* 진행 단계 칩은 가로 스크롤이 아니라 세로 스택 */
  .st-progress__item { min-height: 56px; }

  /* 아코디언 답변 들여쓰기 축소 */
  .st-acc__q { padding: 16px 18px; }
  .st-acc__a { padding: 0 18px 16px 36px; }

  /* 동의 체크: 태그를 아래줄로 */
  .st-check { grid-template-columns: 26px 1fr; padding: 18px 16px; }
  .st-check__tag { grid-column: 2; margin-top: 8px; }

  /* 페이지 헤드 */
  .st-pagehead__inner { padding: 28px var(--wrap-pad); align-items: flex-start; }
  .st-pagehead h1 { font-size: var(--fs-h1); line-height: 1.375; }

  /* 헤더 CTA 는 로고 옆에 붙이되 글자만 줄인다(높이 48 유지) */
  .st-header__inner { padding: 10px var(--wrap-pad); gap: 12px; }
  .st-header__cta   { padding: 0 14px; }   /* 글자 크기는 내리지 않는다 — 높이 48 유지 */
  .st-logo small    { display: none; }
  .st-nav { gap: 18px; font-size: var(--fs-body); }

  .st-footer__inner { gap: 24px; padding: 32px var(--wrap-pad) 40px; }
  /* 1열 스택이라 자리가 넉넉하다 — 푸터 정보도 본문 크기로 올린다 */
  .st-footer dl, .p-footer dl { grid-template-columns: 92px 1fr; font-size: var(--fs-body); line-height: var(--lh-body); }
  .st-footer__links > b { font-size: var(--fs-body); }
}

/* ============================================================
   21. 레거시 별칭
   ------------------------------------------------------------
   apply.html 이 현재 쓰는 .p-wrap / .p-footer / .p-footer__copy 와
   intake·preview 가 쓰는 .st-header__top 을 새 체계로 연결한다.
   4개 페이지가 새 클래스로 재작성되면 이 블록만 지우면 된다.
   ============================================================ */
.p-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--wrap-pad); }

.p-footer { border-top: 1px solid var(--line); background: var(--tint); }
.p-footer > .p-wrap {
  padding-top: 52px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 340px 1fr 200px;
  gap: 48px;
}
.p-footer :where(h2) { margin: 0 0 var(--sp-3); font-size: var(--fs-body); font-weight: 800; color: var(--fg); }
.p-footer dl {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px 0;
  margin: 18px 0 0;
  font-size: var(--fs-label);
  line-height: var(--lh-label);
  color: var(--body);
}
.p-footer dt { font-weight: 700; color: var(--fg); }
.p-footer dd { margin: 0; }
.p-footer__copy { margin: 0; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--muted); }

@media (max-width: 1199px) {
  .p-footer > .p-wrap { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 44px; padding-bottom: 48px; }
}
@media (max-width: 767px) {
  .p-footer > .p-wrap { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; padding-bottom: 40px; }
}

/* ============================================================
   22. 상세페이지 격리
   ------------------------------------------------------------
   상세 HTML(.st-detail)은 인라인 스타일로 자체완결한다(SPEC 4.5).
   포털 CSS 가 새어 들어가면 사이소에 붙였을 때와 화면이 달라진다.
   UA 기본값으로 되돌려 인라인 style 만 남긴다. 삭제 금지.
   ============================================================ */
.st-detail, .st-detail * { all: revert; }

/* ============================================================
   23. 인쇄
   ============================================================ */
@media print {
  @page { margin: 14mm; }

  .st-nav, .st-header__cta, .st-skip, .st-notice,
  .st-cta, .st-band, .st-progress { display: none !important; }

  /* sticky 헤더는 종이에서 매 장 겹치거나 본문을 밀어낸다 */
  .st-header { position: static; box-shadow: none; background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }

  /* 다크 구간(페이지 헤드·다크 섹션)은 브라우저 기본값으로 배경이 인쇄되지 않는다.
     흰 글자를 그대로 두면 흰 종이에 아무것도 남지 않으므로 밝은 면으로 뒤집는다.
     페이지별 다크 밴드(.i-close / .pv-head)는 각 페이지의 <style> 에서 같은 방식으로 처리한다. */
  .st-pagehead,
  .st-sec--dark { background: #fff !important; border-bottom: 1px solid #B0B0B0; }
  .st-pagehead, .st-pagehead *,
  .st-sec--dark, .st-sec--dark * { color: #000 !important; }

  /* 링크 색은 건드리지 않는다 — `!important` 로 덮으면 22장의 `.st-detail` 격리를
     뚫고 들어가 인쇄된 시안이 사이소에 붙였을 때와 달라진다. */

  .st-card, .st-table, .st-note,
  .st-step-row, .st-acc__item, .st-check { break-inside: avoid; }
  h1, h2, h3, h4 { break-after: avoid; }
}


/* ============================================================
   24. 모던 리디자인 레이어 (v5)
   ------------------------------------------------------------
   명조·크림·각진 면을 버리고 Pretendard 단일 서체 + 흰 바탕 +
   라운드 면 + 로고색 주황(#E85528) 으로 통일한다.
   1~23장의 값을 덮어쓰는 최상위 레이어이므로 파일 끝에 둔다.
   ============================================================ */
:root {
  --accent:       #E85528;
  --accent-hover: #C8410F;
  --accent-weak:  #FDEEE7;

  --green:        #14181A;   /* 강조 텍스트·번호 (구 초록 자리) */
  --green-dark:   #14181A;
  --green-hover:  #000000;
  --green-weak:   #F6F7F5;
  --green-weak-2: #F6F7F5;

  --tint:         #F6F7F5;
  --tint-2:       #FDEEE7;
  --tint-3:       #FFFFFF;
  --cream:        #F6F7F5;
  --gold:         #E85528;

  --fg:           #14181A;
  --heading:      #14181A;
  --body:         #4B5155;
  --muted:        #6B7175;
  --eyebrow:      #9AA0A3;
  --placeholder:  #8A9195;

  --border:       #EDEBE6;
  --line:         #EDEBE6;
  --line-soft:    #F1F2F0;
  --line-btn:     #DDDBD5;
  --line-chip:    #EDEBE6;
  --line-chip-2:  #EDEBE6;
  --line-tint:    #EDEBE6;
  --line-hover:   #DDDBD5;
  --line-input:   #8A9195;
  --line-check:   #8A9195;

  --on-dark:      #A7AEB2;
  --on-dark-2:    #C3C9CC;
  --on-dark-3:    #C3C9CC;

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-display: var(--font);

  --r-btn: 16px; --r-card: 20px; --r-input: 12px; --r-badge: 999px;
  --r-sm: 12px; --r-xs: 999px; --r-table: 18px; --r-panel: 22px;
  --r-band: 24px; --r-hero: 24px; --r-tag: 999px; --r-note: 16px;

  --shadow-pop: 0 18px 50px rgba(20, 24, 26, .08);
  --focus-ring: var(--accent);
  --wrap: 1360px;
  --wrap-pad: 48px;
}

body { letter-spacing: -.015em; }

/* ---- 타이포 : 굵고 좁은 자간, 서체는 하나 ---- */
:where(h1, h2, h3, h4, h5) { font-weight: 800; letter-spacing: -.04em; color: var(--heading); }
.st-h1, .st-pagehead h1 { font-size: 46px; line-height: 1.2; font-weight: 800; letter-spacing: -.045em; }
.st-h2, .st-cta h2, .i-close h2 { font-size: 40px; line-height: 1.24; font-weight: 800; letter-spacing: -.045em; }
.st-h3 { font-size: 28px; line-height: 1.35; font-weight: 800; letter-spacing: -.04em; }
.st-h4 { font-size:24px; line-height: 1.45; font-weight: 800; letter-spacing: -.035em; }
.st-eyebrow { font-size:16px; line-height: 1.4; letter-spacing: .1em; color: var(--eyebrow); }
.st-lead { font-size:19px; line-height: 1.78; color: var(--body); }
.st-sec__head { text-align: left; }
.st-sec__head .st-h2, .st-sec__head .st-lead { max-width: 62ch; }

/* ---- 링크·버튼 ---- */
a, :where(a) { color: var(--accent); }
a:hover, :where(a):hover { color: var(--accent-hover); }
.st-btn {
  min-height: 56px; height: auto; padding: 0 28px;
  background: var(--accent); border-radius: 999px;
  font-size:19px; font-weight: 700;
}
.st-btn:hover { background: var(--accent-hover); }
.st-btn--md { min-height: 52px; height: auto; padding: 0 24px; border-radius: 999px; font-size:18px; }
.st-btn--sm { min-height: 48px; height: auto; padding: 0 20px; border-radius: 999px; font-size:17px; }
.st-btn--ghost { background: #fff; border: 1px solid var(--line-btn); color: var(--heading); }
.st-btn--ghost:hover { background: var(--tint); color: var(--heading); }
.st-btn--onDark { background: #fff; color: var(--heading); }
.st-btn--onDark:hover { background: #F1F2F0; color: var(--heading); }
.st-btn--onDarkGhost { border-color: rgba(255,255,255,.28); }

/* ---- 면 : 라운드 카드로 되돌린다 ---- */
.st-card, .st-sec .st-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px 28px;
}
.st-sec .st-card--sm { padding: 26px 24px; }
.st-sec .st-card--lg, .st-sec .st-card--big { padding: 40px 40px; border-radius: var(--r-panel); }
.st-sec .st-card--soft, .st-sec .st-card--tint { background: var(--tint); border-color: var(--tint); }
.st-card--hover { transition: box-shadow .18s ease, border-color .18s ease; }
.st-card--hover:hover { border-color: #E3E1DB; box-shadow: var(--shadow-pop); background: #fff; }
.st-sec .st-card__title { margin-top: 18px; font-size:22px; line-height: 1.45; font-weight: 800; letter-spacing: -.03em; color: var(--heading); }
.st-sec .st-card__desc { margin-top: 10px; font-size:17px; line-height: 1.72; color: var(--muted); }

.st-num, .st-sec .st-num {
  width: 36px; height: 36px; justify-content: center;
  border-radius: 12px; background: var(--accent-weak); color: var(--accent-hover);
  font-family: var(--font); font-size:16px; font-weight: 800;
}
.st-num--solid { background: var(--accent); color: #fff; }

/* ---- 지표 ---- */
.st-sec .st-metrics, .st-metrics { gap: 16px; }
.st-sec .st-metric, .st-metric {
  background: var(--tint); border: 0; border-radius: var(--r-card); padding: 30px 28px;
}
.st-metric__value { font-family: var(--font); font-size: 44px; line-height: 1; font-weight: 800; letter-spacing: -.05em; color: var(--heading); }
.st-metric__label { margin-top: 14px; font-size:18px; font-weight: 600; color: var(--body); }
.st-metric__note { margin-top: 6px; font-size:16px; color: var(--muted); }

.st-stats, .st-sec .st-stats, .a-stats { gap: 10px !important; }
.st-stat, .st-sec .st-stat, .a-stats .st-stat {
  min-height: 44px; padding: 8px 18px;
  background: var(--tint); border: 0; border-radius: 999px;
  font-size:17px; font-weight: 600; color: var(--body);
}
.a-stats .st-stat + .st-stat { border-left: 0; padding-left: 18px; }

/* ---- 배지·태그 : 알약으로 ---- */
.st-badge, .st-sec .st-badge, .st-tag, .st-sec .st-tag {
  height: auto; min-height: 34px; padding: 6px 14px;
  border-radius: 999px; background: var(--accent-weak); border: 0;
  color: var(--accent-hover); font-size:16px; font-weight: 700;
  letter-spacing: normal; text-transform: none;
}
.st-tag, .st-sec .st-tag { background: var(--tint); color: var(--body); }
.st-badge--neutral { background: var(--tint); color: var(--body); }

/* ---- 안내 박스 ---- */
.st-note, .st-sec .st-note {
  border-left: 0; border-radius: var(--r-note);
  background: var(--tint); padding: 24px 26px;
}
.st-note--cream, .st-sec .st-note--cream { background: var(--accent-weak); }
.st-note--cream .st-note__title { color: var(--accent-hover); }
.st-note__title { font-size:19px; font-weight: 800; letter-spacing: -.03em; }
.st-sec .st-note--box, .st-sec .st-note--plain {
  border: 1px solid var(--line); border-top: 1px solid var(--line);
  background: #fff; border-radius: var(--r-note); padding: 22px 24px;
}
.st-note--danger { border-radius: var(--r-note); }
.st-note--ok { border-radius: var(--r-note); background: var(--accent-weak); border-color: var(--accent-weak); }
.st-note--ok .st-note__title { color: var(--accent-hover); }

/* ---- 표 ---- */
.st-table, .st-sec .st-table { background: none; border: 0; border-radius: 0; border-top: 1px solid var(--line); }
.st-sec .st-table__row, .st-table__row { border-bottom: 1px solid var(--line); }
.st-sec .st-table__th, .st-table__th { background: none; padding: 24px 32px 24px 0; font-size:18px; font-weight: 700; color: var(--heading); }
.st-sec .st-table__td, .st-table__td { padding: 24px 0; font-size:19px; color: var(--body); }
.st-table__cap { background: var(--tint); border-radius: var(--r-note) var(--r-note) 0 0; }

/* ---- 아코디언 ---- */
.st-acc { gap: 0; }
.st-acc__item, .st-sec .st-acc__item {
  background: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
}
.st-acc__q, .st-sec .st-acc__q { padding: 24px 0; font-size:20px; font-weight: 700; letter-spacing: -.03em; color: var(--heading); }
.st-acc__q > span:first-child::before { color: var(--accent); font-family: var(--font); font-weight: 800; }
.st-acc__a, .st-sec .st-acc__a { padding: 0 0 26px 26px; font-size:18px; line-height: 1.8; color: var(--body); }
.st-acc__sign { color: var(--accent); font-size:22px; }

/* ---- 절차 ---- */
.st-sec .st-step, .st-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 24px 30px;
}
.st-step__no { font-size:16px; font-weight: 800; color: var(--accent-hover); letter-spacing: normal; }
.st-step__title { margin-top: 18px; font-size:22px; font-weight: 800; letter-spacing: -.03em; }
.st-step__desc { margin-top: 10px; font-size:17px; line-height: 1.72; color: var(--muted); }
.st-sec .st-step-row, .st-step-row {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 26px;
}

/* ---- 다크 밴드 · CTA ---- */
.st-band { background: #14181A; border-radius: var(--r-band); padding: 44px 44px; }
.st-band__title { font-size: 28px; line-height: 1.35; font-weight: 800; letter-spacing: -.04em; }
.st-band__card { background: rgba(255,255,255,.08); border-radius: 16px; }
.st-cta { background: var(--tint); border: 0; border-radius: var(--r-band); padding: 52px 48px; }
.st-sec--dark, .i-close { background: #14181A; }

/* ---- 페이지 헤드 ---- */
.st-pagehead, .pv-head { background: #fff; color: var(--heading); border-bottom: 1px solid var(--line); --focus-ring: var(--accent); }
.st-pagehead__inner, .pv-head__inner { padding: 72px var(--wrap-pad) 60px; }
.st-pagehead h1, .pv-head h1 { font-family: var(--font); font-size: 52px; line-height: 1.18; font-weight: 800; letter-spacing: -.05em; color: var(--heading); }
.st-pagehead p, .pv-head__lead { font-size:20px; line-height: 1.78; color: var(--body); }
.st-pagehead__note { color: var(--muted); }
.st-pagehead__dot { background: var(--accent); }
.pv-head__co, .pv-head__rev { color: var(--muted); }
.pv-head__rev b { color: var(--heading); }

/* ---- 진행 단계 : 알약 탭 ---- */
.st-progress { gap: 8px; border-bottom: 0; }
.st-progress__item {
  flex-direction: row; align-items: center; gap: 10px;
  min-height: 52px; padding: 0 20px;
  background: var(--tint); border: 0; border-radius: 999px;
  color: var(--muted); font-size:17px; font-weight: 700;
}
.st-progress__no { width: 24px; height: 24px; justify-content: center; border-radius: 50%; background: rgba(20,24,26,.08); font-size:15px; font-weight: 800; color: inherit; font-family: var(--font); }
.st-progress__item.is-now { background: var(--accent); border: 0; color: #fff; }
.st-progress__item.is-now .st-progress__no { background: rgba(255,255,255,.24); color: #fff; }
.st-progress__item.is-done { background: var(--accent-weak); border: 0; color: var(--accent-hover); }
.st-progress__item.is-done .st-progress__no { background: rgba(232,85,40,.14); color: var(--accent-hover); }

/* ---- 폼 ---- */
.st-input, .st-select, .st-textarea { border-radius: 12px; border-color: #C9CCC7; background: #fff; }
.st-input:focus, .st-select:focus, .st-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,85,40,.14); }
.st-check { border-radius: 16px; }
.st-check__box { border-radius: 8px; }
.st-check input:checked ~ .st-check__box { background: var(--accent); border-color: var(--accent); }
.st-check.is-on { border-color: var(--accent-weak); background: var(--accent-weak); }
.st-check__tag { color: var(--accent-hover); }
.st-fieldset { border-radius: var(--r-card); }
.st-req { color: var(--accent-hover); }
.st-qual::before { color: var(--accent); }

/* ============================================================
   25. 상단 헤더 (레일 markup 을 가로 헤더로)
   ============================================================ */
body.st-page { padding-left: 0; }
.st-header { display: none; }

.st-rail {
  position: sticky; top: 0; left: auto; bottom: auto;
  z-index: 60;
  width: auto; height: 80px;
  display: flex; flex-direction: row; align-items: center; gap: 40px;
  padding: 0 var(--wrap-pad);
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-right: 0; border-bottom: 1px solid var(--line);
  overflow: visible;
}
.st-rail__brand { flex: none; display: flex; flex-direction: row; align-items: center; gap: 12px; padding: 0; }
.st-rail__brand img { display: block; height: 38px; width: auto; }
.st-rail__brand span {
  font-size:20px; font-weight: 800; letter-spacing: -.03em; color: var(--heading);
  white-space: nowrap; padding: 0; border: 0;
}
.st-rail__label, .st-rail__no { display: none; }
.st-rail__list { flex-direction: row; align-items: center; gap: 32px; margin-right: auto; }
.st-rail__list a { flex-direction: row; align-items: center; gap: 0; padding: 0; min-height: var(--h-tap); white-space: nowrap; }
.st-rail__txt { font-size:18px; font-weight: 600; color: #5A6165; }
.st-rail__txt br { display: none; }
.st-rail__list a:hover .st-rail__txt, .st-rail__list a[aria-current="page"] .st-rail__txt { color: var(--accent); font-weight: 700; }
.st-rail__cta {
  flex: none; margin: 0; min-height: 48px; padding: 0 22px;
  border-radius: 999px; background: var(--accent);
  font-size:17px; font-weight: 700;
}
.st-rail__cta:hover { background: var(--accent-hover); }

.st-notice { background: #14181A; color: #C3C9CC; }
.st-notice__tag { border-radius: 999px; background: rgba(255,255,255,.14); }

@media (max-width: 1199px) {
  .st-rail { height: auto; flex-wrap: wrap; gap: 14px 24px; padding: 12px var(--wrap-pad); }
  .st-rail__list { order: 3; flex: 0 0 100%; flex-wrap: wrap; gap: 10px 22px; margin-right: 0; }
  .st-rail__cta { margin-left: auto; }
  .st-pagehead__inner, .pv-head__inner { padding: 52px var(--wrap-pad) 44px; }
  .st-pagehead h1, .pv-head h1 { font-size: 40px; }
  .st-h2, .st-cta h2 { font-size: 32px; }
}
@media (max-width: 767px) {
  .st-rail { gap: 10px 16px; }
  .st-rail__brand img { height: 32px; }
  .st-rail__brand span { font-size:18px; }
  .st-pagehead h1, .pv-head h1 { font-size: 32px; }
  .st-h2, .st-cta h2 { font-size: 26px; }
  .st-h3 { font-size:24px; }
  .st-progress { gap: 8px; }
}
@media print { .st-rail { display: none; } }

/* ---- 헤더 기본 선언 (24장 이전 블록이 사라져 여기서 자립한다) ---- */
.st-rail__brand { text-decoration: none; }
.st-rail__brand:hover { text-decoration: none; }
.st-rail__list {
  display: flex; flex-direction: row; align-items: center; gap: 32px;
  margin: 0 auto 0 0; padding: 0; list-style: none;
}
.st-rail__list li { margin: 0; list-style: none; }
.st-rail__list a {
  display: flex; flex-direction: row; align-items: center;
  min-height: 48px; padding: 0;
  text-decoration: none; white-space: nowrap;
}
.st-rail__list a:hover { text-decoration: none; }
.st-rail__txt { display: block; }
.st-rail__cta {
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; text-align: center; text-decoration: none;
}
.st-rail__cta:hover { color: #fff; text-decoration: none; }

/* 페이지 머리 면은 흰색으로 통일 (주황 틴트는 강조 요소에만) */
.a-head, .a-hero, .ik-screen > .st-pagehead, .st-pagehead, .pv-head { background: #fff; }

/* 헤더 행은 본문과 같은 1360px 그리드에 맞춘다 (배경 띠는 전폭 유지) */
.st-rail { padding: 0 max(var(--wrap-pad), calc((100% - var(--wrap)) / 2 + var(--wrap-pad))); }
.st-notice__inner { max-width: var(--wrap); }
@media (max-width: 1199px) {
  .st-rail { padding: 12px var(--wrap-pad); }
}

.st-rail__cta { white-space: nowrap; }
.st-acc { gap: 0 48px; }

/* 푸터 : 바로가기 열 제거에 맞춘 2열 */
.st-footer__inner, .p-footer > .p-wrap { grid-template-columns: 360px 1fr; gap: 56px; }
@media (max-width: 1199px) { .st-footer__inner, .p-footer > .p-wrap { grid-template-columns: 1fr; gap: 28px; } }

/* ---- 줄바꿈 : 제목은 균형, 본문은 자연스러운 지점에서 ---- */
:where(h1, h2, h3, h4, .st-h1, .st-h2, .st-h3, .st-h4, .a-head h1, .pv-head h1) { text-wrap: balance; }
:where(p, li, dd, .st-lead, .st-text, .st-card__desc, .a-head__lead, .pv-head__lead, .ik-lead) { text-wrap: pretty; }
.a-head__lead, .pv-head__lead, .st-pagehead p { max-width: 46ch; }
.st-lead, .ik-lead { max-width: 54ch; }
.st-card__desc, .st-step__desc, .st-metric__note { max-width: 40ch; }
.st-acc__a { max-width: 62ch; }

/* ---- 헤더 로고 락업 : 로고 / IN / 지역명 세 조각을 분리해 보이게 ---- */
.st-rail__brand { gap: 11px; }
.st-rail__in {
  display: inline-flex; align-items: center; justify-content: center;
  height: 22px; padding: 0 7px;
  border: 1px solid var(--line-btn); border-radius: 6px;
  font-size:13px; font-weight: 800; letter-spacing: .14em; line-height: 1;
  color: #8A9195;
}
.st-rail__place {
  font-size:20px; font-weight: 800; letter-spacing: -.03em;
  color: var(--heading); white-space: nowrap;
}
@media (max-width: 767px) {
  .st-rail__in { height: 20px; padding: 0 6px; font-size: 10px; }
  .st-rail__place { font-size:18px; }
}

/* 리드 문단은 62~66자까지 허용한다 (46자로 조이면 오른쪽이 비는데도 줄이 끊긴다) */
.a-head__lead, .pv-head__lead, .st-pagehead p { max-width: 66ch; }
.st-lead, .ik-lead { max-width: 72ch; }

/* 섹션 번호 제목은 본문과 확실히 구분되게 — 크기·굵기·색 대비를 올린다 */
.st-sec .st-h3, .st-sec > .st-wrap > .st-h3 { font-size: 30px; line-height: 1.32; font-weight: 800; letter-spacing: -.045em; color: #14181A; }
.st-sec .st-h3 + .st-lead { margin-top: 14px; font-size:19px; color: var(--muted); }

/* 과한 여백 정리 : 본문 열이 좁게 묶여 가운데가 비던 문제 */
.st-step-row, .a-flow .st-step-row {
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}
.st-step-row > *:last-child { text-align: right; white-space: nowrap; }
.st-step__desc, .st-card__desc, .st-metric__note { max-width: 68ch; }
.st-sec .st-card__desc { max-width: 68ch; }
.st-quals .st-qual { max-width: 78ch; }

/* IN 배지 : .st-rail__brand span 규칙(0,2,0)이 이기던 문제 — 같은 구체성으로 되돌린다 */
.st-rail__brand .st-rail__in {
  display: inline-flex; align-items: center; justify-content: center;
  height: 22px; padding: 0 7px;
  border: 1px solid var(--line-btn); border-radius: 6px;
  font-size:13px; font-weight: 800; letter-spacing: .14em; line-height: 1;
  color: #8A9195; white-space: nowrap;
}
.st-rail__brand .st-rail__place { font-size:20px; font-weight: 800; letter-spacing: -.03em; color: var(--heading); }
@media (max-width: 767px) {
  .st-rail__brand .st-rail__in { height: 20px; padding: 0 6px; font-size: 10px; }
  .st-rail__brand .st-rail__place { font-size:18px; }
}

/* 폼 2열 : 힌트 유무로 입력칸 높이가 어긋나던 문제 —
   라벨/힌트 영역을 위로 밀고 입력칸을 행 아래에 맞춘다 */
.st-fields { align-items: stretch; }
.st-field { display: flex; flex-direction: column; }
.st-field > .st-input,
.st-field > .st-select,
.st-field > .st-textarea { margin-top: auto; }
.st-field > .st-err { margin-top: 7px; }
.st-hint { min-height: 24px; }

.st-step-row > *:last-child { justify-self: end; }

/* ---- 필수 / 선택 표시 : 알약 배지로 구분 ---- */
.st-label { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.st-req, .st-opt {
  display: inline-flex; align-items: center;
  height: 22px; padding: 0 9px;
  border-radius: 999px;
  font-size:14px; font-weight: 800; letter-spacing: .01em; line-height: 1;
  white-space: nowrap;
}
.st-req { background: var(--accent); color: #fff; }
.st-opt { background: #EDEBE6; color: #6B7175; }

/* 동의 항목의 필수/선택 꼬리표도 같은 배지로 */
.st-check__tag {
  display: inline-flex; align-items: center; align-self: start;
  height: 24px; padding: 0 10px; border-radius: 999px;
  background: var(--accent-weak); color: var(--accent-hover);
  font-size:15px; font-weight: 800;
}
.st-check__tag--opt { background: #EDEBE6; color: #6B7175; }

/* ---- 라벨 ↔ 입력칸 숨 고르기 (답답한 간격 완화) ---- */
.st-label { margin-bottom: 4px; }
.st-input, .st-select, .st-textarea { margin-top: 14px; }
.st-hint { margin-top: 8px; min-height: 0; }
.st-hint + .st-input, .st-hint + .st-select, .st-hint + .st-textarea { margin-top: 12px; }
.st-fields { gap: 30px 24px; }
.st-field--full + .st-field--full { margin-top: 0; }
.st-fieldset { padding: 30px 28px; }
.pv-look__form { gap: 20px; }

/* ============================================================
   §2 고정 래퍼 보정 — #header 가 sticky 포함블록이 되어 고정이 죽는 문제
   래퍼는 레이아웃에 개입하지 않게 두고, 고정은 .st-rail 이 그대로 담당한다.
   ============================================================ */
#header { display: contents; }
#header + .st-notice, #header .st-rail + .st-notice { border-bottom: 1px solid var(--line); }
#container, #content { display: block; }

/* ---- 헤더 : 로고 심볼 확대 + 메뉴 가운데 정렬 ---- */
@media (min-width: 1024px) {
  .st-rail { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; height: 88px; }
  .st-rail__brand { justify-self: start; }
  .st-rail__brand img { height: 52px; }
  .st-rail__list { order: 0; flex: none; justify-self: center; justify-content: center; margin: 0; }
  .st-rail { padding: 0 max(var(--wrap-pad), calc((100% - var(--wrap)) / 2 + var(--wrap-pad))); }
  .st-rail__cta { margin-left: 0; }
  .st-rail__cta { justify-self: end; }
}
@media (max-width: 1023px) { .st-rail__brand img { height: 44px; } }

/* ---- 알약 라운드는 '누르는 것' 에만 -----------------------------------
   --r-btn 을 999px 로 두었더니 안내 박스·카드·토스트까지 알약이 되어
   모서리가 잘려 보였다. 토큰은 16px 로 되돌리고, 버튼·칩만 999px 로 준다. */
.st-btn, .st-progress__item, .st-chip, .st-tag, .st-badge, .pv-go, .pv-btn,
.ik-optbar__btn, .ik-example { border-radius: 999px; }
