@charset "UTF-8";
/*
 * 디지털 아카이브 전용 스타일 — 시안 v2 "자료실 인덱스"(흰 배경 + 잉크 차콜 + 시그널 오렌지).
 * layouts/archive 에서만 로드. app.css 와 클래스 충돌을 피하기 위해 아카이브 카탈로그 화면 전용.
 * 학습 화면(내 학습실·플레이어)은 규정 UI 공유를 위해 app.css(archive-mode 토큰) 를 쓴다.
 */
@font-face { font-family: "Paperlogy"; font-weight: 700; font-display: swap; src: url("/fonts/Paperlogy-Bold.woff2") format("woff2"); }
@font-face { font-family: "Paperlogy"; font-weight: 800; font-display: swap; src: url("/fonts/Paperlogy-ExtraBold.woff2") format("woff2"); }
@font-face { font-family: "SUIT"; font-weight: 100 900; font-display: swap; src: url("/fonts/SUIT-Variable.woff2") format("woff2-variations"); }

:root {
  --ink: #1e2023; --ink2: #41444a; --mid: #6f7277; --mute: #9a9da3;
  --paper: #ffffff; --white: #ffffff; --tint: #f5f5f3; --line: #dcdcd8; --line2: #ececea;
  --sig: #ec5a24; --sig-deep: #b23e0d; --sig-soft: #fbe9e1;
  --band: #26282c;
  --ok: #0e8a5f; --ok-soft: #e4f5ee; --err: #c8382d; --err-soft: #fdeceb; --warn: #a76a12; --warn-soft: #fdf1e0;
  --w: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: light; }
html, body { overflow-x: clip; max-width: 100%; }
.wrap, .finder .box, .path-hero, .cta-band, .rule .wrap, .top, .bottom { min-width: 0; }
input, select, textarea { min-width: 0; max-width: 100%; }
body { background: var(--paper); color: var(--ink); font-family: "SUIT", -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
       font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased; word-break: keep-all; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: "Paperlogy", "SUIT", sans-serif; font-weight: 800; letter-spacing: -.025em; line-height: 1.2; text-wrap: balance; }
:focus-visible { outline: 2px solid var(--sig); outline-offset: 2px; }
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 24px; }
.num { font-variant-numeric: tabular-nums; }
.lab { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--sig); font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.hint { font-size: 13px; color: var(--mid); }
.mute { color: var(--mute); }

/* 아이콘 */
.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic.lg { width: 28px; height: 28px; stroke-width: 1.5; }
.ic.sm { width: 16px; height: 16px; }
.ibox { width: 44px; height: 44px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); background: var(--white); flex: none; }
.ibox.sig { color: var(--sig); border-color: var(--sig-soft); background: var(--sig-soft); }

/* 유틸바 + GNB */
.util { background: var(--white); border-bottom: 1px solid var(--line); font-size: 12.5px; color: var(--mid); }
.util .wrap { display: flex; height: 36px; align-items: center; gap: 18px; }
.util .tab { padding: 0 2px; height: 36px; display: inline-flex; align-items: center; border-bottom: 2px solid transparent; }
.util .tab.on { color: var(--ink); font-weight: 700; border-bottom-color: var(--sig); }
.util .r { margin-left: auto; display: flex; gap: 16px; align-items: center; }
.util form { display: inline; }
.util button { background: none; border: 0; cursor: pointer; color: var(--mid); padding: 0; }
.gnb { background: var(--white); border-bottom: 1px solid var(--ink); position: sticky; top: 0; z-index: 40; }
.gnb .wrap { display: flex; align-items: center; height: 68px; gap: 40px; }
.logo { display: flex; align-items: baseline; gap: 8px; font-family: "Paperlogy", "SUIT", sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -.02em; white-space: nowrap; }
.logo em { font-style: normal; color: var(--sig); font-size: 12px; letter-spacing: .12em; font-family: "SUIT", sans-serif; font-weight: 700; }
.nav { display: flex; gap: 2px; font-size: 15px; font-weight: 600; }
.nav a { padding: 10px 13px; position: relative; }
.nav a.on::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px; background: var(--sig); }
.gnb .r { margin-left: auto; display: flex; gap: 12px; align-items: center; font-size: 13.5px; font-weight: 600; }
.gnb .r a { display: inline-flex; gap: 6px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--ink);
       font-weight: 700; font-size: 13.5px; border-radius: 2px; line-height: 1; cursor: pointer; background: var(--white); color: var(--ink); white-space: nowrap; }
.btn:hover { background: var(--tint); }
.btn.solid { background: var(--ink); color: #fff; }
.btn.solid:hover { background: #000; }
.btn.sig { background: var(--sig); border-color: var(--sig); color: #fff; }
.btn.sig:hover { background: var(--sig-deep); border-color: var(--sig-deep); }
.btn.sm { padding: 7px 12px; font-size: 12.5px; }
.btn.lg { padding: 14px 24px; font-size: 15px; }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* 알림 */
.notice { padding: 12px 16px; border: 1px solid var(--line); font-size: 13.5px; margin: 20px auto 0; max-width: var(--w); }
.notice.ok { border-color: var(--ok); color: var(--ok); background: var(--ok-soft); }
.notice.err { border-color: var(--err); color: var(--err); background: var(--err-soft); }

/* 배너 peek */
.hero { padding: 22px 0 10px; overflow: hidden; }
.peek { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0 calc((100% - min(1200px, 92vw)) / 2); }
.peek::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 min(1200px, 92vw); scroll-snap-align: center; position: relative; border-radius: 2px; overflow: hidden; background: var(--tint); aspect-ratio: 2400 / 760; display: block; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide .copy { position: absolute; left: 5.5%; top: 50%; transform: translateY(-50%); max-width: 46%; color: var(--ink); }
.slide .copy .lab { margin-bottom: 12px; }
.slide .copy h2 { font-size: clamp(24px, 3.4vw, 44px); margin-bottom: 12px; }
.slide .copy p { font-size: clamp(13px, 1.2vw, 16px); color: var(--ink2); font-weight: 500; }
.slide .copy.light { color: #fff; }
.slide .copy.light .lab { color: #ffb28e; }
.slide .copy.light p { color: rgba(255, 255, 255, .82); }
.slide .k { position: absolute; left: 5.5%; bottom: 9%; height: 3px; width: 64px; background: var(--sig); }
.hero-foot { display: flex; align-items: center; gap: 14px; margin-top: 14px; font-size: 12.5px; color: var(--mid); }
.hero-foot .dots { display: flex; gap: 6px; }
.hero-foot .dots button { width: 22px; height: 2px; background: var(--line); border: 0; padding: 0; cursor: pointer; }
.hero-foot .dots button.on { background: var(--ink); }
.hero-foot .arr { margin-left: auto; display: flex; gap: 6px; }
.hero-foot .arr button { width: 34px; height: 34px; border: 1px solid var(--ink); display: grid; place-items: center; background: var(--white); cursor: pointer; font-size: 16px; }
.hero-foot .arr button:hover { background: var(--tint); }
.hero.plain { padding: 0; }
.hero.plain .in { max-width: var(--w); margin: 0 auto; padding: 44px 24px 34px; border-bottom: 1px solid var(--ink); }
.hero.plain h1 { font-size: 34px; margin-top: 10px; }
.hero.plain p { margin-top: 10px; color: var(--mid); font-size: 15px; max-width: 640px; }

/* 검색 + 분류 */
.finder { padding: 28px 0 8px; }
.finder .box { background: var(--white); border: 1px solid var(--ink); display: grid; grid-template-columns: 1fr auto; align-items: stretch; }
.finder input { border: 0; padding: 18px 20px; font-size: 17px; font-weight: 500; background: transparent; outline: none; }
.finder input::placeholder { color: var(--mute); }
.finder button { border: 0; background: var(--ink); color: #fff; padding: 0 26px; font-weight: 700; font-size: 15px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.comps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-top: 0; background: var(--white); }
.comps a { padding: 16px 18px; border-right: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.comps a:last-child { border-right: 0; }
.comps a:hover, .comps a.on { background: var(--tint); }
.comps b { font-size: 15px; display: inline-flex; gap: 8px; align-items: center; }
.comps span { font-size: 12.5px; color: var(--mid); }
.chips { display: flex; gap: 6px; margin-top: 12px; font-size: 12.5px; color: var(--mid); align-items: center; flex-wrap: wrap; }
.chips a { padding: 5px 11px; border: 1px solid var(--line); background: var(--white); }
.chips a.on { border-color: var(--ink); color: var(--ink); font-weight: 700; }
.chips a:hover { border-color: var(--ink); }

/* 섹션 공통 */
.sec { padding: 52px 0 8px; }
.sec.tight { padding-top: 28px; }
.sec-h { display: grid; grid-template-columns: 1fr auto; align-items: end; border-bottom: 1px solid var(--ink); padding-bottom: 14px; margin-bottom: 22px; gap: 20px; }
.sec-h h2 { font-size: 28px; }
.sec-h .lab { margin-bottom: 8px; }
.sec-h .more { font-size: 13.5px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 1px; white-space: nowrap; }
.sec-h .sub { font-size: 14px; color: var(--mid); margin-top: 6px; font-weight: 500; }
.sec-h.sm h2 { font-size: 20px; }
.empty { border: 1px dashed var(--line); padding: 40px; text-align: center; color: var(--mid); font-size: 14px; }

/* 카드 그리드 */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.card { background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; min-height: 100%; position: relative; }
.card:hover .th img { transform: scale(1.03); }
.card .th { aspect-ratio: 16 / 9; background: var(--tint); border-bottom: 1px solid var(--line2); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 14px; }
.card .th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card .th .t { font-size: 11px; letter-spacing: .12em; font-weight: 700; color: var(--ink); background: #fff; padding: 4px 8px; position: relative; }
.card .th .ico { position: absolute; inset: 0; display: grid; place-items: center; color: var(--mid); }
.card .th .ico .ic { width: 40px; height: 40px; stroke-width: 1.25; }
.card .th .big { font-family: "Paperlogy", sans-serif; font-weight: 800; font-size: 54px; line-height: .9; letter-spacing: -.04em; color: var(--ink); opacity: .12; position: absolute; right: 12px; top: 8px; }
.card .bd { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-size: 15.5px; line-height: 1.4; font-weight: 800; font-family: "SUIT", sans-serif; }
.card .meta { font-size: 12.5px; color: var(--mid); display: flex; gap: 8px; flex-wrap: wrap; }
.card .meta i { font-style: normal; color: var(--line); }
.card .foot { margin-top: auto; display: flex; justify-content: space-between; font-size: 12px; color: var(--mute); padding-top: 10px; border-top: 1px dashed var(--line2); }
.card .foot b { color: var(--ink); }
.tag { display: inline-block; align-self: flex-start; font-size: 11px; padding: 2px 7px; border: 1px solid var(--line); color: var(--mid); letter-spacing: .02em; }
.tag.n { border-color: var(--sig); color: var(--sig); }
.tag.d { border-color: var(--ink); color: var(--ink); }

/* 역량 컬렉션 */
.coll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.coll a { background: var(--white); border: 1px solid var(--line); padding: 22px 20px 18px; min-height: 230px; display: flex; flex-direction: column; }
.coll a:hover { border-color: var(--ink); }
.coll .ibox { margin-bottom: 14px; }
.coll .k { font-family: "Paperlogy", sans-serif; font-size: 13px; letter-spacing: .08em; color: var(--sig); }
.coll h3 { font-size: 22px; margin: 6px 0 10px; }
.coll p { font-size: 13px; color: var(--mid); line-height: 1.6; }
.coll ul { list-style: none; margin-top: 14px; font-size: 13px; color: var(--ink2); display: flex; flex-direction: column; gap: 5px; }
.coll ul li::before { content: "–"; color: var(--mute); margin-right: 6px; }
.coll .cnt { margin-top: auto; padding-top: 14px; font-size: 13px; font-weight: 700; display: flex; justify-content: space-between; }
.coll .cnt span { color: var(--mid); font-weight: 500; }

/* 큐레이션(학습 경로) */
.cur { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.cur.even { grid-template-columns: repeat(3, 1fr); }
.cur .box { border: 1px solid var(--line); background: var(--white); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.cur .box:hover { border-color: var(--ink); }
.cur .box.d { background: var(--band); color: #fff; border-color: var(--band); }
.cur .box.d .lab { color: #ffb28e; }
.cur .box.d .rows div { border-color: rgba(255, 255, 255, .14); }
.cur .box.d .rows span, .cur .box.d p { color: rgba(255, 255, 255, .6); }
.cur h3 { font-size: 20px; }
.cur p { font-size: 13.5px; color: var(--mid); }
.cur .rows { display: flex; flex-direction: column; font-size: 13.5px; }
.cur .rows div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line2); }
.cur .rows span { color: var(--mid); font-size: 12.5px; white-space: nowrap; }
.cur .tot { margin-top: auto; font-size: 12.5px; display: flex; justify-content: space-between; padding-top: 8px; }
.cur .tot b { font-size: 13px; }

/* 랭킹 */
.top { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.top ol { list-style: none; counter-reset: r var(--start, 0); }
.top li { display: grid; grid-template-columns: 44px 1fr auto; align-items: baseline; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.top li::before { counter-increment: r; content: counter(r, decimal-leading-zero); font-family: "Paperlogy", sans-serif; font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: -.02em; }
.top li.hot::before { color: var(--sig); }
.top li b { font-weight: 700; font-size: 15px; }
.top li small { display: block; color: var(--mid); font-size: 12.5px; font-weight: 500; margin-top: 2px; }
.top li em { font-style: normal; font-size: 12.5px; color: var(--mid); white-space: nowrap; }
.top li em b { color: var(--ink); font-size: 13px; }

/* 이용 기준 밴드 */
.rule { background: var(--band); color: #fff; margin-top: 56px; }
.rule .wrap { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; align-items: center; min-height: 132px; }
.rule .h { padding-right: 28px; border-right: 1px solid rgba(255, 255, 255, .15); height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.rule .h .lab { color: #ffb28e; }
.rule .h h3 { font-size: 19px; }
.rule .h p { font-size: 12.5px; color: rgba(255, 255, 255, .55); }
.rule .it { padding: 0 28px; border-right: 1px solid rgba(255, 255, 255, .15); height: 100%; display: flex; flex-direction: column; justify-content: center; }
.rule .it:last-child { border-right: 0; }
.rule .it .ic { width: 22px; height: 22px; color: #ffb28e; margin-bottom: 12px; }
.rule .it b { font-family: "Paperlogy", sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -.02em; line-height: 1; }
.rule .it b small { font-size: 14px; font-family: "SUIT", sans-serif; font-weight: 700; margin-left: 3px; }
.rule .it span { font-size: 12.5px; color: rgba(255, 255, 255, .62); margin-top: 8px; }

/* 후기 */
.rv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rv blockquote { background: var(--white); border: 1px solid var(--line); padding: 22px 22px 18px; display: flex; flex-direction: column; gap: 12px; }
.rv .q { color: var(--sig); }
.rv p { font-size: 14px; line-height: 1.7; color: var(--ink2); }
.rv .who { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line2); font-size: 12.5px; color: var(--mid); display: flex; justify-content: space-between; gap: 10px; }
.rv .who b { color: var(--ink); }
.stars { display: inline-flex; gap: 2px; }
.stars .ic { width: 14px; height: 14px; color: var(--line); }
.stars .ic.on { color: var(--sig); fill: var(--sig); }

/* 공지 · FAQ · CTA */
.bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bh { display: flex; gap: 8px; align-items: center; font-weight: 800; font-size: 15px; padding: 16px 0 8px; border-bottom: 1px solid var(--ink); margin-bottom: 4px; }
.bh .more { margin-left: auto; font-size: 12.5px; font-weight: 600; color: var(--mid); }
.notice-list { background: var(--white); border: 1px solid var(--line); padding: 6px 22px; }
.notice-list a { display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line2); font-size: 14px; align-items: baseline; }
.notice-list a:last-child { border-bottom: 0; }
.notice-list .t { font-size: 11px; letter-spacing: .1em; color: var(--sig); font-weight: 700; }
.notice-list .d { color: var(--mute); font-size: 12.5px; }
.faq { background: var(--white); border: 1px solid var(--line); padding: 6px 22px; }
.faq details { border-bottom: 1px solid var(--line2); }
.faq details:last-child { border-bottom: 0; }
.faq summary { padding: 13px 0; cursor: pointer; list-style: none; font-size: 14px; font-weight: 700; display: flex; gap: 10px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; color: var(--sig); font-family: "Paperlogy", sans-serif; }
.faq details > div { padding: 0 0 14px 22px; color: var(--mid); font-size: 13.5px; line-height: 1.7; white-space: pre-line; }
.cta-band { margin-top: 16px; border: 1px solid var(--ink); background: var(--white); display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; }
.cta-band .art { padding: 20px 28px; border-right: 1px solid var(--line); }
.cta-band .tx { padding: 34px 40px; display: flex; flex-direction: column; gap: 12px; }
.cta-band h3 { font-size: 26px; }
.cta-band p { font-size: 14px; color: var(--mid); line-height: 1.7; }
.cta-band .pts { display: flex; gap: 18px; font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.cta-band .pts span { display: inline-flex; gap: 6px; align-items: center; }
.cta-band .pts .ic { color: var(--sig); }

/* 개인 대시보드(로그인 홈) */
.me { margin: 24px auto 0; max-width: var(--w); padding: 0 24px; }
.me .box { border: 1px solid var(--ink); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 22px 26px; background: var(--white); }
.me h2 { font-size: 21px; margin-top: 6px; }
.me .bar { height: 6px; background: var(--line2); margin-top: 14px; position: relative; }
.me .bar i { position: absolute; inset: 0 auto 0 0; background: var(--sig); }
.me .sub { font-size: 13px; color: var(--mid); margin-top: 8px; }

/* 목록 페이지 */
.list-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 32px; align-items: start; }
.filter { border-top: 1px solid var(--ink); }
.filter h4 { font-size: 12px; letter-spacing: .1em; color: var(--mid); padding: 16px 0 8px; }
.filter a { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--line2); }
.filter a.on { font-weight: 700; color: var(--sig); }
.filter a em { font-style: normal; color: var(--mute); font-size: 12.5px; }
.toolbar { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.toolbar form { display: flex; gap: 0; border: 1px solid var(--ink); }
.toolbar input { border: 0; padding: 9px 12px; min-width: 220px; outline: none; }
.toolbar form button { border: 0; background: var(--ink); color: #fff; padding: 0 14px; cursor: pointer; }
.toolbar .sorts { margin-left: auto; display: flex; gap: 2px; font-size: 13px; }
.toolbar .sorts a { padding: 6px 10px; color: var(--mid); }
.toolbar .sorts a.on { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--sig); }
.pager { display: flex; gap: 4px; justify-content: center; margin-top: 28px; }
.pager a, .pager span { min-width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 13px; padding: 0 8px; }
.pager .active span, .pager span[aria-current] { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager nav, .pager ul { display: contents; } .pager ul li { list-style: none; }
.pager svg { width: 14px; height: 14px; }
.pager .hidden { display: none; }
.pager p { display: none; }

/* 상세 */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }
.crumb { font-size: 12.5px; color: var(--mid); display: flex; gap: 8px; align-items: center; margin-bottom: 14px; }
.detail h1 { font-size: 32px; }
.detail .lead { margin-top: 14px; font-size: 15px; color: var(--ink2); line-height: 1.75; white-space: pre-line; }
.kv { display: grid; grid-template-columns: 110px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line2); font-size: 14px; }
.kv span { color: var(--mid); }
.kv b { font-weight: 600; }
.side { border: 1px solid var(--ink); padding: 22px; position: sticky; top: 90px; background: var(--white); }
.side .big { font-family: "Paperlogy", sans-serif; font-weight: 800; font-size: 28px; }
.side .cls { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line2); font-size: 13.5px; }
.side .cls .d { color: var(--mid); font-size: 12.5px; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
table.tbl th { text-align: left; font-size: 12px; letter-spacing: .06em; color: var(--mid); padding: 10px 12px; border-bottom: 1px solid var(--ink); font-weight: 700; }
table.tbl td { padding: 12px; border-bottom: 1px solid var(--line2); vertical-align: top; }
table.tbl tr:hover td { background: var(--tint); }
table.tbl .n { font-family: "Paperlogy", sans-serif; color: var(--sig); }

/* 스텝 · 정보 블록 */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.steps div { padding: 22px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.steps .k { font-family: "Paperlogy", sans-serif; font-size: 24px; color: var(--sig); }
.steps b { display: block; margin-top: 10px; font-size: 15px; }
.steps p { margin-top: 6px; font-size: 13px; color: var(--mid); line-height: 1.65; }
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat div { border: 1px solid var(--line); padding: 22px 20px; background: var(--white); }
.feat b { display: block; font-size: 15.5px; margin-top: 14px; }
.feat p { margin-top: 6px; font-size: 13.5px; color: var(--mid); line-height: 1.65; }
.prose { font-size: 14.5px; line-height: 1.85; color: var(--ink2); }
.prose b { color: var(--ink); }
.prose p + p { margin-top: 12px; }
.cmp td:first-child { font-weight: 700; color: var(--sig); white-space: nowrap; }
.cmp td:last-child { color: var(--mid); }
.anchor-tabs { display: flex; gap: 0; border: 1px solid var(--ink); margin-bottom: 36px; }
.anchor-tabs a { flex: 1; text-align: center; padding: 13px; font-weight: 700; font-size: 14px; border-right: 1px solid var(--line); }
.anchor-tabs a:last-child { border-right: 0; }
.anchor-tabs a.on { background: var(--ink); color: #fff; }
.anchor-tabs a:hover { background: var(--tint); }
.anchor-tabs a.on:hover { background: var(--ink); }

/* 경로 상세 진행 */
.path-hero { border: 1px solid var(--ink); background: var(--band); color: #fff; padding: 34px 36px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.path-hero .lab { color: #ffb28e; }
.path-hero h1 { font-size: 32px; margin-top: 10px; }
.path-hero p { margin-top: 10px; color: rgba(255, 255, 255, .7); max-width: 560px; line-height: 1.7; }
.path-hero .stat { text-align: right; }
.path-hero .stat b { font-family: "Paperlogy", sans-serif; font-weight: 800; font-size: 44px; display: block; line-height: 1; }
.path-hero .stat span { font-size: 12.5px; color: rgba(255, 255, 255, .6); }
.path-list { border-top: 1px solid var(--ink); margin-top: 28px; }
.path-list .row { display: grid; grid-template-columns: 56px 1fr auto auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.path-list .row .k { font-family: "Paperlogy", sans-serif; font-size: 22px; color: var(--sig); }
.path-list .row b { font-size: 15.5px; }
.path-list .row small { display: block; color: var(--mid); font-size: 12.5px; margin-top: 3px; }
.path-list .row .st { font-size: 12px; font-weight: 700; padding: 4px 9px; border: 1px solid var(--line); color: var(--mid); white-space: nowrap; }
.path-list .row .st.done { border-color: var(--ok); color: var(--ok); }
.path-list .row .st.ing { border-color: var(--sig); color: var(--sig); }

/* 푸터 */
footer.ft { margin-top: 64px; border-top: 1px solid var(--ink); background: var(--white); font-size: 12.5px; color: var(--mid); }
footer.ft .wrap { padding: 26px 24px 34px; display: grid; grid-template-columns: 1fr auto; gap: 20px; }
footer.ft .l { display: flex; gap: 18px; font-weight: 600; color: var(--ink); margin-bottom: 12px; flex-wrap: wrap; }
footer.ft p { line-height: 1.8; }

@media (max-width: 1000px) {
  .grid4, .coll, .cur, .cur.even, .rv, .comps, .feat, .steps { grid-template-columns: 1fr 1fr; }
  .top, .bottom, .detail, .list-layout, .cta-band, .path-hero { grid-template-columns: 1fr; }
  .cta-band .art { border-right: 0; border-bottom: 1px solid var(--line); }
  .rule .wrap { grid-template-columns: 1fr 1fr; } .rule .h { grid-column: 1 / -1; border: 0; padding: 20px 0; }
  .nav { display: none; }
  .side { position: static; }
  .path-hero .stat { text-align: left; }
}
@media (max-width: 600px) {
  .grid4, .coll, .cur, .cur.even, .rv, .comps, .feat, .steps, .grid3 { grid-template-columns: 1fr; }
  .wrap { padding: 0 16px; }
  .util .wrap { gap: 10px; font-size: 12px; } .util .r { gap: 10px; } .util .r span, .util .r a[href="/support/remote"], .util .r a[href="/mypage"] { display: none; }
  .gnb .wrap { gap: 12px; height: 58px; } .logo { font-size: 17px; } .logo em { display: none; }
  .gnb .r { gap: 8px; } .gnb .r a span { display: none; } .gnb .r .btn { display: none; }
  .peek { padding: 0 16px; gap: 10px; } .slide { flex: 0 0 88vw; }
  .slide .copy { max-width: 70%; left: 6%; } .slide .copy .lab { font-size: 10px; margin-bottom: 6px; }
  .slide .copy h2 { font-size: 19px; margin-bottom: 6px; } .slide .copy p { display: none; } .slide .k { width: 40px; bottom: 12%; }
  .finder .box { grid-template-columns: minmax(0, 1fr) auto; } .finder input { padding: 14px 12px; font-size: 15px; width: 100%; } .finder button { padding: 0 14px; }
  .finder button span, .sec-h .more { white-space: nowrap; }
  .sec-h { grid-template-columns: 1fr; } .sec-h h2 { font-size: 22px; }
  .card .th { aspect-ratio: 16 / 8; }
  .top ol { --start: 0 !important; } .top ol + ol { counter-reset: r 5; }
  .rule .wrap { grid-template-columns: 1fr 1fr; } .rule .it { padding: 16px 0 16px 14px; border-right: 0; }
  .cta-band .tx { padding: 24px 20px; } .cta-band h3 { font-size: 21px; }
  .hero.plain .in { padding: 28px 16px 22px; } .hero.plain h1 { font-size: 26px; }
  .path-hero { padding: 24px 18px; } .path-hero h1 { font-size: 24px; } .path-hero p { font-size: 13.5px; } .path-hero .stat b { font-size: 32px; }
  .path-list .row { grid-template-columns: 40px 1fr; } .path-list .row .st, .path-list .row .btn { grid-column: 2; justify-self: start; }
  .detail h1 { font-size: 24px; } .side { padding: 18px; }
  .anchor-tabs { flex-wrap: wrap; } .anchor-tabs a { flex: 1 1 50%; }
  .list-layout { gap: 20px; } .toolbar input { min-width: 0; width: 100%; } .toolbar form { flex: 1 1 100%; }
  footer.ft .wrap { grid-template-columns: 1fr; }
}

/* 고객센터 게시판(아카이브 스킨) */
.sub-tabs { display: flex; gap: 0; border: 1px solid var(--ink); margin: 0 0 24px; overflow-x: auto; }
.sub-tabs a { flex: 1; text-align: center; padding: 12px 14px; font-weight: 700; font-size: 14px; border-right: 1px solid var(--line); white-space: nowrap; }
.sub-tabs a:last-child { border-right: 0; }
.sub-tabs a.on { background: var(--ink); color: #fff; }
.sub-tabs a:hover:not(.on) { background: var(--tint); }
.badge { display: inline-block; font-size: 11.5px; font-weight: 700; padding: 3px 8px; border: 1px solid var(--line); color: var(--mid); }
.badge.ok { border-color: var(--ok); color: var(--ok); }
.badge.sig { border-color: var(--sig); color: var(--sig); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 700; }
.field label .req { color: var(--sig); }
.field input[type=text], .field input[type=search], .field select, .field textarea { border: 1px solid var(--line); padding: 11px 12px; font-size: 14px; background: var(--white); outline: none; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; line-height: 1.6; }
.check { display: inline-flex; gap: 8px; align-items: center; font-size: 13.5px; }
.post { border-top: 1px solid var(--ink); }
.post .head { padding: 22px 0 16px; border-bottom: 1px solid var(--line); }
.post .head h1 { font-size: 24px; margin-top: 6px; }
.post .meta { display: flex; gap: 10px; align-items: center; font-size: 12.5px; color: var(--mid); margin-top: 10px; flex-wrap: wrap; }
.post .body { padding: 24px 0; white-space: pre-line; font-size: 14.5px; line-height: 1.85; color: var(--ink2); min-height: 160px; border-bottom: 1px solid var(--line); }
.post .att a { display: inline-flex; gap: 6px; align-items: center; font-size: 13.5px; padding: 8px 0; }
.answer { border: 1px solid var(--ink); margin-top: 20px; }
.answer .bh { padding: 12px 18px 10px; border-bottom: 1px solid var(--ink); margin: 0; }
.answer .it { padding: 16px 18px; border-bottom: 1px solid var(--line2); font-size: 14px; line-height: 1.75; white-space: pre-line; }
.answer .it:last-child { border-bottom: 0; }
.answer .it .who { font-size: 12.5px; color: var(--mid); margin-bottom: 6px; white-space: normal; }
.faq-page details { border-bottom: 1px solid var(--line); }
.faq-page summary { padding: 16px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 700; display: flex; gap: 12px; }
.faq-page summary::-webkit-details-marker { display: none; }
.faq-page summary::before { content: "Q"; color: var(--sig); font-family: "Paperlogy", sans-serif; }
.faq-page details[open] summary { color: var(--sig); }
.faq-page details > div { padding: 0 0 18px 26px; color: var(--ink2); font-size: 14px; line-height: 1.8; white-space: pre-line; }
.faq-page .cat { padding: 22px 0 6px; }
.prose h3 { font-size: 16px; margin-top: 22px; }
.prose h3:first-child { margin-top: 0; }
.prose .note { margin-top: 24px; border: 1px dashed var(--line); padding: 12px 14px; font-size: 12.5px; color: var(--mid); }
