/* ============================================================================
   kndli-services-v2.css — services 계열 공통 뼈대 (2026-09-08, 미션 3-1)
   대상: ai-training · contact · services-automation · services-aeo · profile · app
   정본: DESIGN.md §2~§9 (Cream + Rust, Pretendard + mono). 여기 없는 토큰을 만들지 않는다.
   원칙: orb·워터마크 번호·eyebrow 남발·그라데이션·box-shadow 남발·페이지별 :root 재선언을
         전부 이 파일의 토큰과 컴포넌트로 대체한다. 페이지 인라인 <style>에는 nav/footer 뼈대만 남긴다.
   ⚠️ 다크모드 자동 강제 금지(벨라 지시) — color-scheme:light 페이지이므로 라이트 토큰만 선언한다.
   ============================================================================ */

:root {
    /* DESIGN.md §2.1 Light */
    --paper: #F4EFE6;
    --panel: #FCFAF5;
    --panel2: #F8F3EA;
    --ink: #211C17;
    --ink2: #4A4239;
    --muted: #948A7B;
    --faint: #B8AE9D;
    --line: #E4DBCA;
    --line2: #EFE8DA;
    --rust: #B4410E;
    --rust-ink: #8A320B;
    --rust-soft: #F3E4D8;
    --rust-line: #E4C4AE;
    /* §5 Radius · §6 Depth */
    --r-node: 11px;
    --r-card: 14px;
    --r-input: 10px;
    --r-pill: 999px;
    --sh-sm: 0 1px 2px rgba(60, 42, 20, .05);
    --sh: 0 6px 20px -8px rgba(74, 52, 24, .16);
    /* §3 Typography */
    --font-ko: "Pretendard", "Pretendard Variable", system-ui, -apple-system, sans-serif;
    --font-mono: ui-monospace, "SFMono-Regular", "Cascadia Code", "Consolas", monospace;
    --font-zh: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
    --font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    --font-display: var(--font-ko);   /* serif 폐기(DESIGN §3) — 옛 페이지의 var(--font-display) 참조는 Pretendard 로 흡수 */
    /* 옛 services 뼈대가 참조하는 변수명 → 정본 토큰으로 매핑 (페이지별 :root 를 지우기 위한 다리) */
    --bg-primary: var(--paper);
    --bg-secondary: var(--panel2);
    --bg-tertiary: var(--line2);
    --accent: var(--rust);
    --accent-hover: var(--rust-ink);
    --accent-deep: var(--rust-ink);
    --accent-text: var(--rust-ink);
    --gold: var(--rust);
    --gold-dark: var(--rust-ink);
    --gold-subtle: var(--faint);
    --text-primary: var(--ink);
    --text-secondary: var(--ink2);
    --text-muted: var(--muted);
    --navy: var(--ink);
    --cream: var(--paper);
    --white: var(--panel);
    --shadow-sm: var(--sh-sm);
    --shadow-md: var(--sh);
    --shadow-lg: var(--sh);
    --transition: .18s ease;
    /* app.html(BELLA AI 앱) 변수명 → 정본 토큰 다리 (미션 3-2: 앱 :root 제거) */
    --bg: var(--paper);
    --bg2: var(--panel2);
    --bg3: var(--line2);
    --accent2: var(--rust-ink);
    --accentsm: var(--rust-ink);
    --ink3: var(--muted);
    --clay1: var(--rust-soft);
    --clay2: var(--rust-line);
    --card: var(--panel);
    --inkbox: var(--ink);
    --font: var(--font-ko);
    --serif: var(--font-ko);
    --r: var(--r-card);
    --shsm: var(--sh-sm);
    --tabh: 64px;
}

/* ── 기본 ──────────────────────────────────────────────────────────────── */
body { font-family: var(--font-ko); background: var(--paper); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.zh { font-family: var(--font-zh); }
body.cn { font-family: var(--font-cn); }
body:not(.zh):not(.cn) :is(h1, h2, h3, h4, p, li, dt, dd, figcaption, label) { word-break: keep-all; }
.sv2 b, .sv2 strong { font-weight: 700; color: var(--ink); }
.sv2 a { color: var(--rust); }
.sv2 a:hover { color: var(--rust-ink); }
.sv2 a.btn-rust, .sv2 a.btn-rust:hover { color: var(--paper); }
.sv2 a.btn-ghost { color: var(--rust-ink); }
.sv2 a.btn-ghost:hover { color: var(--rust); }
/* 인라인 링크 터치 타깃 44px (§17.3): 표·카드 푸터·노트 안의 링크는 히트영역만 키운다 */
.sv2-table a, .node-foot a, .sv2-note a, .sv2-done a:not(.btn-ghost) { display: inline-block; padding: 12px 4px; margin: -12px -4px; }
.sv2 :focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; border-radius: 4px; }
.sv2 img { max-width: 100%; height: auto; display: block; }
/* home.css 계열의 `.lang-ko{display:block}` 이 [hidden]·표 셀을 이긴다(9/4 실측) → 두 곳 다 되돌린다 */
.sv2 [hidden], .sv2 .lang-ko[hidden], .sv2 .lang-zh[hidden], .sv2 .lang-cn[hidden], .sv2 .lang-en[hidden] { display: none !important; }
.sv2 th, .sv2 td { display: table-cell; }
.sv2 caption { display: table-caption; }
.sv2 li.lang-ko, .sv2 li.lang-zh, .sv2 li.lang-cn, .sv2 li.lang-en { display: list-item; }
.sv2-mono { font-family: var(--font-mono); letter-spacing: .08em; font-size: 11.5px; font-weight: 600; text-transform: uppercase; color: var(--muted); }

/* ── 레이아웃 ───────────────────────────────────────────────────────────── */
.sv2-wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.sv2-section { padding: 56px 0; border-top: 1px solid var(--line); }
.sv2-section.alt { background: var(--panel2); }
.sv2-head { max-width: 62ch; margin-bottom: 26px; }
.sv2-h2 { font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; letter-spacing: -.01em; line-height: 1.25; margin: 0 0 10px; color: var(--ink); }
.sv2-desc { font-size: 15.5px; line-height: 1.65; color: var(--ink2); margin: 0; }
.sv2-desc + .sv2-desc { margin-top: 8px; }

/* ── 히어로 (§9 Masthead 톤) ─────────────────────────────────────────────── */
.sv2-hero { padding: 108px 0 36px; background: radial-gradient(140% 90% at 50% -20%, var(--panel2), var(--paper) 55%); }
.sv2-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.sv2-h1 { font-size: clamp(25px, 4.6vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; margin: 0 0 16px; color: var(--ink); }
.sv2-h1 em { display: block; font-style: normal; font-weight: 500; font-size: .5em; letter-spacing: 0; line-height: 1.45; color: var(--muted); margin-top: 12px; }
.sv2-lead { font-size: 16.5px; line-height: 1.65; color: var(--ink2); max-width: 62ch; margin: 0 0 22px; }
.sv2-lead b { color: var(--ink); }
.sv2-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.sv2-note { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.sv2-note b { color: var(--ink2); }
.sv2-photo { margin: 0; }
.sv2-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-card); border: 1px solid var(--line); box-shadow: var(--sh); }
.sv2-photo figcaption { margin-top: 8px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: var(--muted); }
.sv2-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.sv2-facts b { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.01em; color: var(--rust-ink); line-height: 1.2; }
.sv2-facts span { display: block; margin-top: 4px; font-size: 13px; color: var(--ink2); line-height: 1.45; }
.sv2-qa { margin-top: 22px; }
.sv2 .seo-quick-answer { padding: 14px 16px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-node); font-size: 15px; line-height: 1.65; color: var(--ink2); }
.sv2 .seo-quick-answer b { color: var(--ink); }

/* ── 버튼 (§8.1) ──────────────────────────────────────────────────────── */
.btn-rust, .btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 12px 24px; border-radius: 10px; font: inherit; font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.btn-rust { background: var(--rust); color: var(--paper); border: 1.5px solid var(--rust); }
.btn-rust:hover { background: var(--rust-ink); border-color: var(--rust-ink); color: var(--paper); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-ghost { background: transparent; color: var(--rust-ink); border: 1.5px solid var(--rust-line); }
.btn-ghost:hover { border-color: var(--rust); color: var(--rust); }
.btn-rust:disabled { background: var(--faint); border-color: var(--faint); cursor: not-allowed; transform: none; box-shadow: none; }
.sv2-arrow { font-size: 1em; line-height: 1; }

/* ── 노드 / 카드 (§8.2) ─────────────────────────────────────────────────── */
.sv2-grid { display: grid; gap: 14px; }
.sv2-grid.c3 { grid-template-columns: repeat(3, 1fr); }
.sv2-grid.c2 { grid-template-columns: repeat(2, 1fr); }
.sv2-grid.c4 { grid-template-columns: repeat(4, 1fr); }
.node { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-node); padding: 20px 20px 18px; box-shadow: var(--sh-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); display: flex; flex-direction: column; gap: 8px; }
.node:hover { transform: translateY(-2px); box-shadow: var(--sh); border-color: var(--faint); }
.node h3 { font-size: 17px; font-weight: 700; margin: 0; color: var(--ink); line-height: 1.3; }
.node p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink2); }
.node ul { margin: 4px 0 0; padding-left: 18px; font-size: 14px; line-height: 1.6; color: var(--ink2); }
.node ul li + li { margin-top: 3px; }
.node .sv2-pill { align-self: flex-start; }
.node .node-foot { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line2); font-size: 14px; font-weight: 700; color: var(--rust-ink); }
.node.gate { border: 1.5px solid var(--rust-line); background: var(--rust-soft); }
.sv2-pill { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; font-weight: 600; color: var(--rust); border: 1px solid var(--rust-line); background: var(--panel); border-radius: var(--r-pill); padding: 3px 9px; text-transform: uppercase; }

/* ── 표 (가격·연락수단) ──────────────────────────────────────────────────── */
.sv2-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sv2-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; min-width: 520px; }
.sv2-table caption { caption-side: top; text-align: left; padding: 14px 18px 8px; font-weight: 700; font-size: 15px; color: var(--ink); }
.sv2-table th, .sv2-table td { padding: 14px 18px; text-align: left; vertical-align: top; border-top: 1px solid var(--line2); font-size: 15px; line-height: 1.5; }
.sv2-table thead th { background: var(--panel2); font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-top: 0; font-weight: 600; }
.sv2-table tbody th { font-weight: 700; color: var(--ink); }
.sv2-table td { color: var(--ink2); }
.sv2-table td.num { font-weight: 800; color: var(--rust-ink); white-space: nowrap; }
.sv2-table td small, .sv2-table th small { display: block; font-weight: 500; font-size: 12.5px; color: var(--muted); margin-top: 2px; white-space: normal; }
.sv2-table tr.hl th, .sv2-table tr.hl td { background: var(--rust-soft); }
.sv2-table a { font-weight: 700; color: var(--rust-ink); text-decoration: none; border-bottom: 1px solid var(--rust-line); }
.sv2-table a:hover { color: var(--rust); border-color: var(--rust); }
.sv2-table .qr { width: 96px; height: 96px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.sv2-side { display: grid; gap: 12px; align-content: start; }
.sv2-side p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink2); }
.sv2-split { display: grid; grid-template-columns: 1.55fr 1fr; gap: 24px; align-items: start; }

/* ── 타임라인 (§8.6) ─────────────────────────────────────────────────────── */
.sv2-tl { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; position: relative; }
.sv2-tl li { position: relative; padding: 0 0 22px 34px; }
.sv2-tl li::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: -8px; width: 1px; background: var(--line); }
.sv2-tl li:last-child::before { display: none; }
.sv2-tl li::after { content: ""; position: absolute; left: 3px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--rust); box-shadow: 0 0 0 3px var(--paper); }
.sv2-tl .tl-n { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--rust); font-weight: 600; text-transform: uppercase; }
.sv2-tl h3 { font-size: 16.5px; font-weight: 700; margin: 2px 0 4px; color: var(--ink); }
.sv2-tl p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink2); }
.sv2-tl .tl-t { display: inline-block; margin-left: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .06em; }

/* ── 폼 (§8.5) ────────────────────────────────────────────────────────── */
.sv2-form, .sv2-done { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px; display: grid; gap: 16px; box-shadow: var(--sh-sm); }
.sv2-form h2, .sv2-done h2 { font-size: 20px; font-weight: 700; margin: 0; color: var(--ink); letter-spacing: -.01em; }
.sv2-form .sv2-desc { margin-top: -6px; }
.sv2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sv2-field { display: grid; gap: 6px; }
.sv2-label { font-size: 14px; font-weight: 600; color: var(--ink2); }
.sv2-input { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-input); background: var(--panel); font: inherit; font-size: 15px; color: var(--ink); box-sizing: border-box; }
.sv2-input::placeholder { color: var(--faint); }
.sv2-input:focus { outline: 2px solid var(--rust); outline-offset: 1px; border-color: var(--rust); }
textarea.sv2-input { resize: vertical; line-height: 1.6; min-height: 110px; }
select.sv2-input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.sv2-field.err .sv2-input { border-color: var(--rust); background: var(--rust-soft); }
.sv2-choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sv2-choice { min-height: 44px; text-align: left; background: var(--panel2); border: 1.5px solid var(--line); border-radius: var(--r-input); padding: 10px 12px; cursor: pointer; font: inherit; color: var(--ink); transition: border-color var(--transition), background var(--transition); display: grid; gap: 2px; }
.sv2-choice b { font-size: 14.5px; font-weight: 700; }
.sv2-choice span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.sv2-choice.on { border-color: var(--rust); background: var(--rust-soft); }
.sv2-choice.on b { color: var(--rust-ink); }
.sv2-choice:hover { border-color: var(--faint); }
.sv2-hint { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.sv2-agree { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink2); line-height: 1.55; cursor: pointer; }
.sv2-agree input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--rust); flex: none; }
.sv2-form .btn-rust { width: 100%; font-size: 16px; }
.sv2-form-note { margin: 0; text-align: center; font-size: 13px; color: var(--muted); }
.sv2-done { border-color: var(--rust-line); }
.sv2-done p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink2); }
.sv2-done .sv2-cta { margin: 4px 0 0; }
.sv2-summary { display: flex; flex-wrap: wrap; gap: 8px 18px; background: var(--panel2); border: 1px solid var(--line); border-radius: var(--r-node); padding: 12px 14px; font-size: 13.5px; color: var(--ink2); }
.sv2-summary b { color: var(--ink); }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.sv2-faq { max-width: 62ch; }
.sv2-faq .q { border-top: 1px solid var(--line); padding: 16px 0; }
.sv2-faq .q:last-child { border-bottom: 1px solid var(--line); }
.sv2-faq h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.sv2-faq p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--ink2); }

/* ── 사진 스트립 · 강사 ──────────────────────────────────────────────────── */
.sv2-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sv2-photos figure { margin: 0; }
.sv2-photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-node); border: 1px solid var(--line); }
.sv2-photos figcaption { margin-top: 8px; font-size: 13px; color: var(--ink2); line-height: 1.5; }
.sv2-person { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: start; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px; box-shadow: var(--sh-sm); }
.sv2-person img { width: 160px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%; border-radius: var(--r-node); border: 1px solid var(--line); }
.sv2-person h3 { margin: 0 0 2px; font-size: 19px; font-weight: 800; color: var(--ink); }
.sv2-person .sub { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--muted); margin: 0 0 10px; }
.sv2-person p { margin: 0 0 12px; font-size: 14.5px; line-height: 1.65; color: var(--ink2); }
.sv2-creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; margin: 0; }
.sv2-creds div { display: grid; gap: 1px; padding: 8px 0; border-top: 1px solid var(--line2); }
.sv2-creds dt { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.sv2-creds dd { margin: 0; font-size: 14px; font-weight: 600; color: var(--ink); }

/* ── 하단 CTA 띠 ─────────────────────────────────────────────────────────── */
.sv2-band { padding: 44px 0; background: var(--panel2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.sv2-band .sv2-h2 { margin-bottom: 8px; }
.sv2-band .sv2-desc { max-width: 56ch; margin: 0 auto 18px; }
.sv2-band .sv2-cta { justify-content: center; }
.sv2-band .sv2-note { margin-top: 12px; }

/* ── 옛 services 뼈대의 AI티 요소 무력화 (재설계 전 페이지가 이 CSS 를 먼저 물릴 때의 안전망) ── */
.hero-orb, .section-num, .trust-strip .st, .hero-badge, .edu-chip, .edu-badge-float, .ct-fchip, .fw-star,
body:not(.app) .rv-summary, body:not(.app) .rv-empty, body:not(.app) .rv-form, body:not(.app) .rv-pick, body:not(.app) .stars, body:not(.app) .rating, .hero-stat .num svg { display: none !important; }
.section-label { font-family: var(--font-mono); color: var(--muted); letter-spacing: .14em; font-size: 11px; opacity: 1; }
body:not(.app) .hero { background: radial-gradient(140% 90% at 50% -20%, var(--panel2), var(--paper) 55%) !important; }
body:not(.app) .hero::before { display: none !important; }

/* ── 반응형 (§17) ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .sv2-hero { padding-top: 92px; }
    .sv2-hero-grid { grid-template-columns: 1fr; gap: 22px; }
    .sv2-hero-grid .sv2-photo { order: -1; max-width: 520px; }
    .sv2-facts { grid-template-columns: 1fr 1fr; }
    .sv2-grid.c3, .sv2-grid.c4 { grid-template-columns: 1fr 1fr; }
    .sv2-split { grid-template-columns: 1fr; }
    .sv2-person { grid-template-columns: 120px 1fr; }
    .sv2-person img { width: 120px; }
}
@media (max-width: 600px) {
    .sv2-section { padding: 40px 0; }
    .sv2-grid.c2, .sv2-grid.c3, .sv2-grid.c4, .sv2-photos, .sv2-row, .sv2-choices { grid-template-columns: 1fr; }
    .sv2-facts { gap: 12px; }
    .sv2-facts b { font-size: 19px; }
    .sv2-table { min-width: 0; }
    .sv2-table th, .sv2-table td { padding: 11px 12px; font-size: 14px; }
    .sv2-table td.num { white-space: normal; }
    .sv2-person { grid-template-columns: 1fr; }
    .sv2-person img { width: 120px; }
    .sv2-creds { grid-template-columns: 1fr; }
    .sv2-form, .sv2-done { padding: 18px; }
    .sv2-cta .btn-rust, .sv2-cta .btn-ghost { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .sv2 *, .btn-rust, .btn-ghost, .node { transition: none !important; animation: none !important; transform: none !important; }
}

/* ── 미션 3-2 추가 (services-automation · services-aeo · profile) ─────────────── */
/* 사례 카드: 실제 실행 화면 + 실측 숫자 (.node 위에 얹는다) */
.node.sv2-case { padding: 0; overflow: hidden; }
.node.sv2-case figure { margin: 0; }
.node.sv2-case figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; border-bottom: 1px solid var(--line); display: block; }
.node.sv2-case figcaption { padding: 6px 16px 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--muted); }
.node.sv2-case .case-body { padding: 10px 16px 16px; }
.node.sv2-case dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; margin: 12px 0 0; font-size: 13.5px; line-height: 1.5; }
.node.sv2-case dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--muted); padding-top: 2px; white-space: nowrap; }
.node.sv2-case dd { margin: 0; color: var(--ink2); }
.node.sv2-case dd b { color: var(--rust-ink); }
/* 영상 파사드: 클릭 전엔 실제 썸네일만 · iframe 은 클릭 후 (콘솔 0 · 요청 0) */
.sv2-video { margin: 0; }
.sv2-facade { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); background: var(--ink); cursor: pointer; padding: 0; font: inherit; }
.sv2-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sv2-facade .play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%; background: var(--rust); box-shadow: var(--sh); }
.sv2-facade .play::after { content: ""; position: absolute; left: 50%; top: 50%; margin: -10px 0 0 -6px; border-left: 18px solid var(--paper); border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
.sv2-facade .lbl { position: absolute; left: 12px; right: 12px; bottom: 10px; color: var(--paper); font-size: 13px; font-weight: 600; text-align: left; text-shadow: 0 1px 2px rgba(0, 0, 0, .55); }
.sv2-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sv2-video figcaption { margin-top: 8px; font-size: 13px; color: var(--ink2); line-height: 1.5; }
.sv2-video figcaption b { display: block; color: var(--ink); }
/* 점수 셀: 실측 리포트 발췌 */
.sv2-table td.score { font-family: var(--font-mono); font-weight: 700; color: var(--rust-ink); white-space: nowrap; }
.sv2-table td.score small { display: block; font-weight: 500; color: var(--muted); font-family: var(--font-ko); }
/* 링크 목록 (연락 채널 · 증빙) */
.sv2-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sv2-links a { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--r-node); background: var(--panel); color: var(--ink); font-weight: 600; font-size: 14px; text-decoration: none; }
.sv2-links a:hover { border-color: var(--rust-line); color: var(--rust-ink); }

/* 2026-09-10 윈디: 헤더 로고는 사이트 공통(세리프) — v2의 --font-display 재정의가 로고까지 바꾸던 것 복구 */
.logo { --font-display: 'Playfair Display', 'Noto Serif KR', serif; }
