/* ─────────────────────────────────────────────────────────────
   공모전 팀 모집 — 스타일 단일 출처 (2026-09-14 개편)

   설계 원칙
   1. 첫 화면은 약속(카피)만 보여준다. 목록은 스크롤해서 넘어가는 별도 구역이다.
   2. 데스크톱은 넓게 쓴다 — 목록은 카드 격자, 지원 화면은 좌측 맥락 + 우측 질문 2단.
   3. 색 신호는 마감뿐이다. --signal 은 마감 임박에만 쓴다.
   4. 움직임은 '들어올 때 한 번'만. 반복·장식 애니메이션을 만들지 않는다(스크롤 안내 제외).
      움직임 줄이기를 켠 사람에게는 전부 끈다.
   5. 서체는 고운바탕(제목) + Noto Sans KR(본문) 그대로.
   ───────────────────────────────────────────────────────────── */

:root {
  color-scheme: light dark;

  --paper:   #F7F6F2;
  --paper-2: #EEEBE3;   /* 목록 구역 바탕 */
  --card:    #FFFFFF;
  --ink:     #141B23;
  --ink-soft:#56616B;
  --ink-faint:#8A939B;
  --rule:    #DCD7CC;
  --signal:  #C1272D;   /* 마감 임박 — 오직 이 용도 */
  --signal-bg: rgba(193, 39, 45, 0.08);
  --mark:    rgba(222, 184, 84, 0.42);
  --shadow:  0 22px 44px -28px rgba(20, 27, 35, 0.38);

  --f-serif: "Gowun Batang", Batang, "바탕", serif;
  --f-sans:  "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;

  --wrap: 76rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --nav-h: 4rem;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:   #111519;
    --paper-2: #161B20;
    --card:    #1B2127;
    --ink:     #EAE8E2;
    --ink-soft:#A3ABB3;
    --ink-faint:#737C84;
    --rule:    #2A3037;
    --signal:  #EC7A70;
    --signal-bg: rgba(236, 122, 112, 0.12);
    --mark:    rgba(222, 184, 84, 0.26);
    --shadow:  0 22px 44px -28px rgba(0, 0, 0, 0.7);
  }
}
:root[data-theme="dark"] {
  --paper:   #111519;
  --paper-2: #161B20;
  --card:    #1B2127;
  --ink:     #EAE8E2;
  --ink-soft:#A3ABB3;
  --ink-faint:#737C84;
  --rule:    #2A3037;
  --signal:  #EC7A70;
  --signal-bg: rgba(236, 122, 112, 0.12);
  --mark:    rgba(222, 184, 84, 0.26);
  --shadow:  0 22px 44px -28px rgba(0, 0, 0, 0.7);
}

/* ── 바탕 ── */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── 단추 ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--f-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.95em 1.6em;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn[disabled] { opacity: 0.35; cursor: not-allowed; transform: none; }
.btn--lg { font-size: 1rem; padding: 1.1em 1.9em; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--ink); }

/* ── 머리말 막대 ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled, .nav--solid {
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--rule);
}
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__brand { font-family: var(--f-serif); font-weight: 700; font-size: 1.0625rem; text-decoration: none; }
.nav__link { font-size: 0.875rem; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.nav__link:hover { color: var(--ink); }

/* ── 첫 화면 ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
}

.hero__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.2vw, 4.5rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__title .line > span { display: block; }

.mark {
  font-style: normal;
  font-weight: 700;
  background-image: linear-gradient(var(--mark), var(--mark));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 0.32em;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 62rem;
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
}
.principle { border-top: 1px solid var(--ink); padding-top: 1.25rem; }
.principle__no {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}
.principle__title { font-size: 1.125rem; font-weight: 700; margin: 0 0 0.5rem; }
.principle__text { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }

.hero__cta { margin-top: clamp(2.25rem, 5vh, 3.5rem); }

.scrollcue {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  width: 1px;
  height: 3.25rem;
  background: var(--rule);
  overflow: hidden;
  transform: translateX(-50%);
}
.scrollcue span {
  position: absolute;
  left: 0; top: -40%;
  width: 1px; height: 40%;
  background: var(--ink);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { to { top: 100%; } }

/* 첫 화면 입장: 제목은 줄마다 아래에서 올라오고, 나머지는 옅게 떠오른다 */
.js [data-anim] {
  animation: fadeUp 0.9s var(--ease) both;
  animation-delay: calc(var(--d, 0) * 110ms + 120ms);
}
.js .line > [data-anim] { animation-name: lineUp; animation-duration: 1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes lineUp { from { transform: translateY(105%); } to { transform: none; } }
.js .mark { animation: markIn 0.9s var(--ease) both; animation-delay: 0.9s; }
@keyframes markIn { from { background-size: 0 0.32em; } to { background-size: 100% 0.32em; } }

/* 스크롤 입장 */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ── 목록 구역 ── */
.board {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding-top: clamp(4.5rem, 10vw, 8rem);
  padding-bottom: clamp(4.5rem, 10vw, 8rem);
}
.board__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 24rem);
  align-items: end;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.board__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
}
.board__count {
  font-family: var(--f-sans);
  font-size: 0.45em;
  font-weight: 700;
  color: var(--ink-faint);
  vertical-align: middle;
  margin-left: 0.4em;
}
.board__lede { margin: 0; color: var(--ink-soft); font-size: 0.9375rem; }

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 21rem), 1fr));
  gap: 1.25rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.25rem;
  min-width: 0;
}
.js .card[data-reveal] {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover { border-color: var(--ink-faint); box-shadow: var(--shadow); }
.js .card.is-in:hover { transform: translateY(-4px); transition-delay: 0s; }

.card__top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 1rem; }

.badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.45em 0.75em;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.badge[data-urgent="1"] { color: var(--signal); background: var(--signal-bg); }

.card__date { font-size: 0.8125rem; color: var(--ink-faint); white-space: nowrap; }

.card__title {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 0 0 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__elig, .card__summary, .card__note {
  margin: 0 0 0.6rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__elig { -webkit-line-clamp: 2; }
.card__elig::before { content: "대상 · "; color: var(--ink-faint); }
.card__summary { -webkit-line-clamp: 3; }
.card__note { -webkit-line-clamp: 4; color: var(--ink); }

.card__actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card__apply { font-weight: 700; font-size: 0.9375rem; text-decoration: none; }
.card__apply::after { content: "→"; display: inline-block; margin-left: 0.4em; transition: transform 0.25s var(--ease); }
.card:hover .card__apply::after, .card__apply:hover::after { transform: translateX(4px); }
.card__source { font-size: 0.8125rem; color: var(--ink-faint); text-decoration: none; }
.card__source::after { content: " ↗"; }
.card__source:hover { color: var(--ink); }

/* ── 진행 방식 ── */
.flow { padding-top: clamp(4.5rem, 10vw, 7rem); padding-bottom: clamp(3rem, 8vw, 5rem); }
.flow__head { margin-bottom: 2.5rem; }
.flow__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  margin: 0;
}
.flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}
.flow__item { border-top: 1px solid var(--rule); padding-top: 1.25rem; }
.flow__no { font-family: var(--f-serif); font-size: 2rem; line-height: 1; color: var(--ink-faint); }
.flow__item h3 { font-size: 1.0625rem; margin: 0.9rem 0 0.4rem; }
.flow__item p { margin: 0; font-size: 0.9375rem; color: var(--ink-soft); }

/* ── 빈 상태 / 오류 ── */
.notice {
  border-left: 2px solid var(--rule);
  padding: 0.6rem 0 0.6rem 1rem;
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  max-width: 36rem;
}
.notice--bad { border-left-color: var(--signal); color: var(--ink); }

/* ── 꼬리말 ── */
.foot { border-top: 1px solid var(--rule); padding-top: 2rem; padding-bottom: 3rem; font-size: 0.8125rem; color: var(--ink-faint); }
.foot__inner { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem 2rem; flex-wrap: wrap; }
.foot p { margin: 0; }
.foot a { color: var(--ink-soft); }

/* ── 지원 화면: 좌측 맥락 + 우측 질문 ── */
.apply {
  display: grid;
  grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding-top: calc(var(--nav-h) + 3.5rem);
  padding-bottom: 5rem;
  min-height: 80vh;
}
.apply__side { position: sticky; top: calc(var(--nav-h) + 2rem); }
.apply__main { min-width: 0; max-width: 44rem; }

.ctx__title { font-family: var(--f-serif); font-weight: 700; font-size: 1.375rem; line-height: 1.45; margin: 0 0 0.75rem; }
.ctx__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1rem; margin: 0; font-size: 0.8125rem; }
.ctx__source { color: var(--ink-faint); text-decoration: none; }
.ctx__source::after { content: " ↗"; }
.ctx__source:hover { color: var(--ink); }
.ctx__note { margin: 1rem 0 0; font-size: 0.875rem; color: var(--ink-soft); }

.progress { height: 3px; background: var(--rule); border-radius: 3px; margin: 1.75rem 0 1.25rem; overflow: hidden; }
.progress__bar { height: 100%; width: 0; background: var(--ink); border-radius: 3px; transition: width 0.5s var(--ease); }

.stepper { list-style: none; margin: 0; padding: 0; counter-reset: st; }
.stepper__item {
  counter-increment: st;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--ink-faint);
  transition: color 0.3s;
}
.stepper__item::before {
  content: counter(st);
  display: inline-grid;
  place-items: center;
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  border: 1px solid var(--rule);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.stepper__item.is-current { color: var(--ink); font-weight: 700; }
.stepper__item.is-current::before { border-color: var(--ink); }
.stepper__item.is-done { color: var(--ink-soft); }
.stepper__item.is-done::before { content: "✓"; background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* 한 화면에 한 가지 */
.step { padding-bottom: 1rem; }
.js .step:not([hidden]) { animation: stepIn 0.55s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: none; } }

.step__progress { font-size: 0.8125rem; font-weight: 700; color: var(--ink-faint); font-variant-numeric: tabular-nums; margin: 0 0 1rem; }
.step__q {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  text-wrap: balance;
}
.step__q:focus { outline: none; }
.step__help { font-size: 0.9375rem; color: var(--ink-soft); margin: 0 0 2rem; max-width: 36rem; }

/* 선택지 */
.choices { border: 0; padding: 0; margin: 0 0 1.75rem; min-width: 0; }
.choices__legend { font-size: 0.875rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 0.75rem; padding: 0; }
.choices__list--cards { display: grid; gap: 0.625rem; }
.choices__list--chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.choice__body {
  position: relative;
  display: block;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 0.875rem;
  padding: 1rem 1.15rem 1rem 3.1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s, transform 0.2s var(--ease);
}
.choice__body::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.2rem;
  width: 1.1rem; height: 1.1rem;
  border: 1.5px solid var(--ink-faint);
  border-radius: 50%;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.choice input[type="checkbox"] + .choice__body::before { border-radius: 0.3rem; }
.choice:hover .choice__body { border-color: var(--ink-faint); }
.choice input:checked + .choice__body { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.choice input[type="radio"]:checked + .choice__body::before { border-color: var(--ink); box-shadow: inset 0 0 0 0.25rem var(--card); background: var(--ink); }
.choice input[type="checkbox"]:checked + .choice__body::before { border-color: var(--ink); background: var(--ink); }
.choice input[type="checkbox"]:checked + .choice__body::after {
  content: "";
  position: absolute;
  left: 1.5rem; top: 1.38rem;
  width: 0.38rem; height: 0.62rem;
  border: solid var(--card);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.choice input:focus-visible + .choice__body { outline: 2px solid var(--ink); outline-offset: 2px; }
.choice__label { display: block; font-weight: 700; font-size: 1rem; line-height: 1.5; }
.choice__desc { display: block; font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; margin-top: 0.15rem; }

.choices__list--chips .choice__body { border-radius: 999px; padding: 0.6rem 1rem 0.6rem 2.45rem; }
.choices__list--chips .choice__body::before { left: 0.95rem; top: 50%; margin-top: -0.5rem; width: 1rem; height: 1rem; }
.choices__list--chips .choice input[type="checkbox"]:checked + .choice__body::after { left: 1.28rem; top: 50%; margin-top: -0.36rem; }
.choices__list--chips .choice__label { font-weight: 500; font-size: 0.9375rem; }
.choices__list--chips .choice input:checked + .choice__label,
.choices__list--chips .choice input:checked + .choice__body .choice__label { font-weight: 700; }

/* 입력 */
.sheet {
  display: block;
  width: 100%;
  min-height: 14rem;
  resize: vertical;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 0.875rem;
  padding: 1.25rem;
  font-family: var(--f-sans);
  font-size: 1rem;          /* iOS 확대 방지를 위해 16px 미만으로 내리지 않는다 */
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: anywhere;
  transition: border-color 0.2s;
}
.sheet--short { min-height: 6rem; }
.sheet:focus-visible { outline: none; border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.sheet::placeholder { color: var(--ink-faint); }

.sheet-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  margin-top: 0.5rem;
  min-height: 1.5em;
}
.sheet-foot__count[data-over="1"] { color: var(--signal); }

.field { margin: 0 0 1.5rem; max-width: 30rem; }
.field--wide { max-width: none; margin-bottom: 0; }
.field__label { display: block; font-size: 0.9375rem; font-weight: 700; margin: 0 0 0.5rem; }
.field__hint { display: block; font-size: 0.8125rem; color: var(--ink-faint); font-weight: 400; margin-top: 0.1rem; }
.field__input {
  width: 100%;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 0.75rem;
  padding: 0.85em 1em;
  font-family: var(--f-sans);
  font-size: 1rem;          /* iOS 확대 방지 */
  line-height: 1.5;
  transition: border-color 0.2s;
}
.field__input:focus-visible { outline: none; border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

.step__nav { display: flex; gap: 0.75rem; align-items: center; margin-top: 2rem; }
.step__nav .btn { min-width: 7.5rem; }

/* ── 태블릿 이하 ── */
@media (max-width: 860px) {
  .principles, .flow__list { grid-template-columns: 1fr; }
  .board__head { grid-template-columns: 1fr; }
  .apply { grid-template-columns: 1fr; gap: 1.5rem; padding-top: calc(var(--nav-h) + 1.75rem); }
  .apply__side { position: static; border-bottom: 1px solid var(--rule); padding-bottom: 1.25rem; }
  .stepper { display: none; }
  .progress { margin: 1.25rem 0 0; }
}

/* ── 폰 ── */
@media (max-width: 640px) {
  :root { --nav-h: 3.5rem; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 5rem; align-items: flex-start; }
  .hero__title { font-size: clamp(1.85rem, 8.4vw, 2.4rem); }
  .principles { gap: 1.25rem; }
  .principle__text { font-size: 0.9375rem; }
  .hero__cta .btn { width: 100%; }
  .card { padding: 1.25rem 1.25rem 1rem; }
  .step__nav { flex-direction: column-reverse; align-items: stretch; }
  .step__nav .btn { width: 100%; }
  .choice__body { padding: 0.9rem 1rem 0.9rem 2.9rem; }
  .choice__body::before { left: 1rem; top: 1.1rem; }
  .choice input[type="checkbox"]:checked + .choice__body::after { left: 1.35rem; top: 1.28rem; }
  .foot__inner { flex-direction: column; }
}

@media (max-height: 640px) { .scrollcue { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* ── 운영자 이력 (공개판 recruit-lab 에만 들어간다 — tools/build_public.py) ── */
.operator {
  max-width: 62rem;
  margin-top: clamp(2rem, 5vh, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.operator__title { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-faint); margin: 0 0 0.9rem; }
.operator__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.operator__list li {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.operator__tag {
  justify-self: start;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 0.2em 0.65em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .operator__list li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ── 서술형 시작 안내 · 개인정보 안내(2026-09-15) ── */
.step__intro {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--paper-2);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 40rem;
}
.foot__privacy { flex-basis: 100%; order: 3; font-size: 0.75rem; color: var(--ink-faint); }
.foot__privacy summary { cursor: pointer; width: fit-content; }
.foot__privacy p { margin: 0.5rem 0 0; max-width: 46rem; line-height: 1.7; }
.operator__list li { grid-template-columns: 5.25rem minmax(0, 1fr); }
@media (max-width: 640px) { .operator__list li { grid-template-columns: 1fr; } }
