/* ------------------------------------------------------------
   서브 페이지 · 원장칼럼 공통
   ------------------------------------------------------------ */

/* 서브 비주얼 */
.sub-visual { position: relative; min-height: 240px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; background: var(--bj-navy); }
.sub-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sub-visual::before { content: ""; position: absolute; inset: 0; background: rgba(29, 55, 82, .45); }
.sub-visual .circle { position: absolute; left: 50%; top: 50%; width: min(60vw, 360px); aspect-ratio: 1; border: 1px solid rgba(99, 131, 156, .6); border-radius: 50%; transform: translate(-50%, -50%); }
.sub-visual .inner { position: relative; z-index: 1; padding-top: 32px; padding-bottom: 32px; }
.sub-visual .en { font-family: var(--font-en); font-size: 14px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }
.sub-visual h1 { font-family: var(--font-serif); font-size: 26px; font-weight: 800; color: #fff; margin-top: 8px; }
.sub-visual .breadcrumb { justify-content: center; color: rgba(255, 255, 255, .8); margin-top: 14px; }
.sub-visual .breadcrumb a:hover { color: #fff; }
@media (min-width: 768px) { .sub-visual { min-height: 320px; } .sub-visual h1 { font-size: 34px; } }
@media (min-width: 1024px) { .sub-visual { min-height: 380px; } .sub-visual h1 { font-size: 40px; } .sub-visual .en { font-size: 16px; } }

/* LNB 탭 (같은 depth 페이지들) */
.sub-tabs { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: var(--header-h); z-index: 40; }
.sub-tabs ul { display: flex; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.sub-tabs ul::-webkit-scrollbar { display: none; }
.sub-tabs li { flex: 0 0 auto; }
.sub-tabs a { display: block; padding: 14px 16px; font-size: 14px; font-weight: 600; color: var(--text-sub); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.sub-tabs a:hover { color: var(--bj-blue); }
.sub-tabs li.active a { color: var(--bj-navy); border-bottom-color: var(--bj-navy); }
@media (min-width: 1024px) { .sub-tabs ul { justify-content: center; } .sub-tabs a { padding: 18px 24px; font-size: 15px; } }

/* 본문 섹션 */
.content-section { padding: 56px 0; }
.content-section + .content-section { border-top: 1px solid var(--line); }
.content-section.bg-soft, .content-section.bg-navy { border-top: 0; }
.content-section .sec-head { margin-bottom: 28px; }
.content-section h2.sec-title { font-size: 22px; }
.lead { font-size: 17px; line-height: 1.85; color: var(--text-body); max-width: 860px; }
.sec-head.center .lead { margin: 0 auto; }
.content-section p + p { margin-top: 14px; }
.content-section h3 { font-size: 18px; margin: 28px 0 10px; color: var(--bj-navy); }
.content-section h3:first-child { margin-top: 0; }
@media (min-width: 768px) { .content-section { padding: 72px 0; } .content-section h2.sec-title { font-size: 26px; } .lead { font-size: 18px; } }
@media (min-width: 1024px) { .content-section { padding: 96px 0; } .content-section h2.sec-title { font-size: 30px; } .content-section h3 { font-size: 20px; } }

/* 정답 박스 (GEO: 첫 문장 결론) */
.key-answer { border-left: 3px solid var(--bj-navy); background: var(--bg-soft); padding: 16px 20px; margin: 18px 0; font-size: 16px; font-weight: 500; color: var(--text-strong); line-height: 1.75; }
.key-answer strong { color: var(--bj-navy); }

/* 표 (반드시 table 태그 — AI·검색엔진이 읽어야 함) */
.table-wrap { overflow-x: auto; margin: 20px 0; -webkit-overflow-scrolling: touch; }
.table { width: 100%; min-width: 520px; font-size: 14px; line-height: 1.6; }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table thead th { background: var(--bj-navy); color: #fff; font-weight: 600; border-bottom: 0; }
.table tbody th { background: var(--bg-soft); color: var(--bj-navy); font-weight: 600; white-space: nowrap; }
.table.compact { min-width: 0; }
.table .hl { background: #EEF5FB; }
.table caption { caption-side: bottom; text-align: left; font-size: 12px; color: var(--text-muted); padding-top: 8px; }
@media (min-width: 768px) { .table { font-size: 15px; } }

/* 목록 */
.check-list { display: grid; gap: 8px; margin: 16px 0; }
.check-list li { position: relative; padding: 10px 14px 10px 38px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); font-size: 15px; }
.check-list li::before { content: "✓"; position: absolute; left: 14px; top: 9px; color: var(--bj-navy); font-weight: 900; }
.dot-list { display: grid; gap: 6px; margin: 12px 0; }
.dot-list li { position: relative; padding-left: 18px; font-size: 15px; }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 2px; background: var(--bj-navy); }
.dot-list li::after { content: ""; position: absolute; left: 3px; top: 8px; width: 2px; height: 8px; background: var(--bj-steel); }
.num-list { counter-reset: n; display: grid; gap: 12px; margin: 16px 0; }
.num-list li { counter-increment: n; position: relative; padding-left: 44px; font-size: 15px; }
.num-list li::before { content: counter(n); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--bj-navy); color: #fff; font-family: var(--font-en); font-weight: 600; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.num-list li strong { display: block; color: var(--text-strong); }

/* 단계 (치료 과정 등) */
.steps { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
.step { background: #fff; border: 1px solid var(--line); padding: 24px 20px; text-align: center; position: relative; }
.step .num { font-family: var(--font-en); font-size: 34px; font-weight: 600; line-height: 1; color: var(--bj-steel); }
.step h3 { font-size: 17px; margin: 10px 0 6px; color: var(--text-strong); }
.step p { font-size: 14px; color: var(--text-sub); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; } .step:not(:last-child)::after { content: "›"; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); color: var(--bj-steel); font-size: 22px; } }

/* 카드 그리드 */
.grid-2, .grid-3, .grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
.info-card { background: #fff; border: 1px solid var(--line); padding: 28px 24px; }
.bg-soft .info-card { border-color: transparent; box-shadow: var(--shadow); }
.info-card .en { font-family: var(--font-en); font-size: 13px; letter-spacing: .2em; color: var(--bj-steel); text-transform: uppercase; }
.info-card h3 { font-family: var(--font-serif); font-size: 19px; margin: 6px 0 10px; color: var(--text-strong); }
.info-card p { font-size: 15px; color: var(--text-sub); }
.info-card .link-more { margin-top: 14px; font-size: 14px; }
.info-card.emph { border-top: 3px solid var(--bj-navy); }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-2, .grid-3, .grid-4 { gap: 24px; } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* 이미지형 카드 링크 (하위 페이지) */
.card-links { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
.card-link { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; color: #fff; background: var(--bj-navy); }
.card-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card-link:hover img { transform: scale(1.05); }
.card-link::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(29, 55, 82, .88), rgba(29, 55, 82, .05) 60%); }
.card-link .text { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; z-index: 1; }
.card-link .en { font-family: var(--font-en); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }
.card-link h3 { font-family: var(--font-serif); font-size: 20px; color: #fff; margin: 2px 0 4px; }
.card-link p { font-size: 13px; color: rgba(255, 255, 255, .85); }
@media (min-width: 768px) { .card-links { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-links { grid-template-columns: repeat(3, 1fr); gap: 20px; } .card-links.four { grid-template-columns: repeat(4, 1fr); } }

/* 2단 (텍스트 + 이미지) */
.two-col { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; margin-top: 24px; }
.two-col img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; } .two-col.rev > :first-child { order: 2; } }

/* 안내·주의 */
.note { font-size: 13px; color: var(--text-muted); margin-top: 10px; }
.caution { border: 1px solid var(--bj-sky-light); background: #F7FAFD; padding: 16px 20px; margin: 20px 0; font-size: 14px; color: var(--text-body); border-radius: var(--radius); }
.caution strong { color: var(--bj-navy); }
.source { font-size: 12px; color: var(--text-muted); }
.chip { display: inline-block; padding: 3px 10px; border-radius: 999px; background: #EEF5FB; color: var(--bj-blue); font-size: 12px; font-weight: 600; margin: 0 4px 6px 0; }

/* 의료진 */
.doctor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.doctor { background: #fff; border: 1px solid var(--line); overflow: hidden; }
.doctor img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; background: var(--bg-soft); }
.doctor .body { padding: 16px; }
.doctor .name { font-size: 17px; font-weight: 700; color: var(--text-strong); }
.doctor .name small { font-size: 13px; font-weight: 500; color: var(--bj-steel); margin-left: 6px; }
.doctor ul { margin-top: 8px; font-size: 13px; color: var(--text-sub); display: grid; gap: 2px; }
.doctor.lead-doctor { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; }
.doctor.lead-doctor img { aspect-ratio: 4 / 5; }
.doctor.lead-doctor .body { padding: 24px; }
.doctor.lead-doctor .name { font-size: 22px; }
.doctor.lead-doctor ul { font-size: 15px; gap: 4px; }
@media (min-width: 768px) { .doctor-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } .doctor.lead-doctor { grid-template-columns: 2fr 3fr; } .doctor .body { padding: 20px; } }
@media (min-width: 1024px) { .doctor-grid { grid-template-columns: repeat(4, 1fr); } .doctor.lead-doctor .body { padding: 40px; } }

/* FAQ (details.faq-item — 구조화 데이터 자동 추출 대상) */
.faq { border-top: 1px solid var(--bj-navy); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 18px 40px 18px 0; font-size: 16px; font-weight: 600; color: var(--text-strong); cursor: pointer; line-height: 1.6; }
.faq-item summary::before { content: "Q"; font-family: var(--font-en); font-weight: 600; color: var(--bj-steel); margin-right: 12px; font-size: 18px; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 300; color: var(--bj-steel); transition: transform .3s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--bj-navy); }
.faq-item .a { padding: 0 0 22px 30px; font-size: 15px; color: var(--text-body); line-height: 1.85; }
.faq-item .a p + p { margin-top: 8px; }
@media (min-width: 768px) { .faq-item summary { padding: 22px 48px 22px 0; font-size: 17px; } .faq-item .a { font-size: 16px; } }

/* 하단 CTA 배너 (카카오 | 전화) */
.page-cta { background: var(--bj-navy); color: #fff; text-align: center; padding: 48px 20px; margin-top: 56px; position: relative; overflow: hidden; }
.page-cta::before { content: ""; position: absolute; left: 50%; top: 50%; width: 520px; height: 520px; border: 1px solid rgba(99, 131, 156, .35); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.page-cta > * { position: relative; }
.page-cta h3 { font-family: var(--font-serif); font-size: 22px; color: #fff; }
.page-cta p { margin-top: 10px; color: var(--bj-mist); font-size: 15px; }
.page-cta .btns { margin-top: 24px; justify-content: center; }
.page-cta .btn-outline { background: transparent; border-color: rgba(255, 255, 255, .8); color: #fff; }
.page-cta .btn-outline:hover { background: #fff; color: var(--bj-navy); }
@media (min-width: 768px) { .page-cta { padding: 64px 32px; } .page-cta h3 { font-size: 26px; } }

/* 관련 원장칼럼 */
.related-posts { padding: 56px 0; }
.related-posts .sec-title { font-size: 22px; margin-bottom: 24px; }
.related-posts .sec-title .bar { display: block; margin: 0 0 14px; }
@media (min-width: 1024px) { .related-posts { padding: 80px 0; } }

/* ------------------------------------------------------------
   칼럼 목록 · 카드 · 필터 · 페이지네이션
   ------------------------------------------------------------ */
.post-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.post-filter button, .post-filter a { padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--text-sub); background: #fff; transition: all .2s; }
.post-filter .active, .post-filter button:hover, .post-filter a:hover { background: var(--bj-navy); border-color: var(--bj-navy); color: #fff; }
.post-list { display: grid; grid-template-columns: 1fr; gap: 24px; }
.post-list .filter-empty { grid-column: 1 / -1; text-align: center; padding: 40px 0; }
.post-card { display: block; background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.04); }
.post-card .body { padding: 20px 20px 22px; }
.post-card .cat { display: inline-block; font-size: 12px; font-weight: 700; color: var(--bj-sky); letter-spacing: .04em; }
.post-card h3 { font-size: 17px; line-height: 1.5; margin-top: 6px; color: var(--text-strong); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card p { margin-top: 8px; font-size: 14px; color: var(--text-sub); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card .meta { margin-top: 14px; display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); }
@media (min-width: 768px) { .post-list, .post-list.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-list, .post-list.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 28px; } .post-card h3 { font-size: 18px; } }
.pager { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 48px; flex-wrap: wrap; }
.pager a, .pager span { min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--text-sub); }
.pager a:hover { border-color: var(--bj-navy); color: var(--bj-navy); }
.pager .pg-cur { background: var(--bj-navy); border-color: var(--bj-navy); color: #fff; }

/* ------------------------------------------------------------
   칼럼 상세 (tools/column-render.js 가 생성)
   ------------------------------------------------------------ */
.page-column main { padding: 40px 0 0; }
.post { padding-bottom: 40px; }
.post-head .breadcrumb { margin-bottom: 20px; }
.post .cat { display: inline-block; font-size: 13px; font-weight: 700; color: var(--bj-sky); letter-spacing: .04em; }
.post h1 { font-family: var(--font-serif); font-size: 26px; line-height: 1.4; margin-top: 8px; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 18px; font-size: 13px; color: var(--text-muted); padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.post-meta .author { display: inline-flex; align-items: center; gap: 8px; color: var(--text-body); font-weight: 600; }
.post-meta .author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.post-hero { margin-top: 28px; }
.post-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.summary-box { margin-top: 32px; background: var(--bg-soft); border-top: 3px solid var(--bj-navy); padding: 24px 24px 22px; }
.summary-box h2 { font-size: 14px; letter-spacing: .12em; color: var(--bj-steel); text-transform: uppercase; font-family: var(--font-en); font-weight: 700; margin-bottom: 12px; }
.summary-box li { position: relative; padding-left: 20px; font-size: 15px; font-weight: 500; color: var(--text-strong); line-height: 1.7; }
.summary-box li + li { margin-top: 8px; }
.summary-box li::before { content: ""; position: absolute; left: 0; top: 11px; width: 10px; height: 2px; background: var(--bj-navy); }
.summary-box li::after { content: ""; position: absolute; left: 4px; top: 8px; width: 2px; height: 8px; background: var(--bj-steel); }
.toc { margin-top: 24px; border: 1px solid var(--line); padding: 18px 22px; font-size: 14px; }
.toc strong { display: block; margin-bottom: 8px; color: var(--bj-navy); }
.toc ol { counter-reset: t; display: grid; gap: 4px; }
.toc li { counter-increment: t; }
.toc li::before { content: counter(t, decimal-leading-zero) " "; font-family: var(--font-en); color: var(--bj-steel); font-weight: 600; }
.toc a:hover { color: var(--bj-blue); text-decoration: underline; }
.post-body { margin-top: 36px; font-size: 16px; line-height: 1.9; color: var(--text-body); }
.post-body > * + * { margin-top: 16px; }
.post-body h2 { font-family: var(--font-serif); font-size: 22px; margin-top: 48px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--text-strong); scroll-margin-top: calc(var(--header-h) + 16px); }
.post-body h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.post-body h3 { font-size: 18px; margin-top: 28px; color: var(--bj-navy); }
.post-body img { width: 100%; height: auto; border-radius: var(--radius); }
.post-body blockquote { border-left: 3px solid var(--bj-sky); background: var(--bg-soft); padding: 16px 20px; font-family: var(--font-serif); color: var(--text-body); }
.post-body ul:not(.check-list) { padding-left: 20px; list-style: disc; }
.post-body ol { padding-left: 22px; list-style: decimal; }
.post-body li + li { margin-top: 4px; }
.post-body table { width: 100%; font-size: 14px; }
.post-body th, .post-body td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.post-body th { background: var(--bg-soft); color: var(--bj-navy); }
.post-body a { color: var(--bj-blue); text-decoration: underline; text-underline-offset: 3px; }
.post-body .faq { margin-top: 12px; }
.video-embed { aspect-ratio: 16 / 9; background: #000; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.references { margin-top: 36px; font-size: 13px; color: var(--text-sub); }
.references h2 { font-size: 16px; border-top: 0; margin-top: 0; padding-top: 0; font-family: var(--font-sans); color: var(--bj-navy); }
.references ol { padding-left: 20px; list-style: decimal; margin-top: 8px; }
.references a { color: var(--bj-blue); }
.review-note { margin-top: 32px; padding: 12px 16px; border: 1px dashed var(--bj-sky-light); font-size: 13px; color: var(--text-sub); }
.author-box { margin-top: 24px; display: flex; gap: 18px; align-items: flex-start; background: var(--bg-soft); padding: 22px; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid var(--line); background: #fff; }
.author-box h3 { font-size: 16px; color: var(--text-strong); }
.author-box p { margin-top: 6px; font-size: 14px; color: var(--text-sub); }
.author-box a { color: var(--bj-blue); text-decoration: underline; }
.post .page-cta { margin-top: 32px; }
.post-nav { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 10px; }
.post-nav a { display: block; border: 1px solid var(--line); padding: 14px 18px; font-size: 14px; font-weight: 600; color: var(--text-body); }
.post-nav a span { display: block; font-size: 12px; color: var(--bj-steel); font-weight: 600; margin-bottom: 4px; }
.post-nav a:hover { border-color: var(--bj-navy); color: var(--bj-navy); }
.post-nav a.next { text-align: right; }
.post .related-posts { padding: 48px 0 0; }
.disclaimer { margin-top: 32px; font-size: 12px; color: var(--text-muted); }
@media (min-width: 768px) { .post h1 { font-size: 32px; } .post-body { font-size: 17px; } .post-body h2 { font-size: 26px; } .post-body h3 { font-size: 20px; } .post-nav { grid-template-columns: 1fr 1fr; } .page-column main { padding-top: 56px; } .author-box img { width: 96px; height: 96px; } }
@media (min-width: 1024px) { .post h1 { font-size: 34px; } }

/* 개인정보처리방침 등 문서형 페이지 */
.doc { font-size: 15px; line-height: 1.85; }
.doc h2 { font-size: 20px; margin: 36px 0 10px; color: var(--bj-navy); }
.doc h2:first-child { margin-top: 0; }
.doc p + p, .doc ul + p, .doc p + ul { margin-top: 10px; }
.doc ul { padding-left: 20px; list-style: disc; }
.doc ol { padding-left: 22px; list-style: decimal; }

/* ---------- 구안와사 FAQ (facial-palsy/faq) : 검색 · 분류 · 그룹 ---------- */
.faq-page .sec-head { margin-bottom: 28px; }
.faq-search { max-width: 860px; margin: 0 auto 18px; }
.faq-search-box { position: relative; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px 6px 18px; box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s; }
.faq-search-box:focus-within { border-color: var(--bj-sky); box-shadow: 0 0 0 4px rgba(100, 167, 221, .18); }
.faq-search-box .ico { color: var(--bj-steel); flex-shrink: 0; }
.faq-search-box input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; padding: 10px 0; color: var(--text-strong); }
.faq-search-box input::placeholder { color: var(--text-muted); }
.faq-search-box input::-webkit-search-cancel-button { display: none; }
.faq-search-box .clear { width: 30px; height: 30px; border-radius: 50%; border: 0; background: var(--bg-soft); color: var(--text-sub); font-size: 18px; line-height: 1; cursor: pointer; }
.faq-search-box .clear:hover { background: var(--bj-sky-light); color: var(--bj-navy); }
.faq-status { text-align: right; margin-top: 10px; font-size: 13px; color: var(--text-sub); }
.faq-status strong { color: var(--bj-navy); }
.faq-cats { margin-bottom: 18px; }
.faq-cats .cnt { font-weight: 500; opacity: .7; margin-left: 2px; font-size: 12px; }
.faq-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; border-top: 1px solid var(--bj-navy); padding-top: 12px; margin-bottom: 8px; }
.faq-toolbar .muted { font-size: 13px; color: var(--text-sub); margin: 0; }
.faq-toolbar .btns { display: flex; gap: 4px; }
.btn-text { border: 1px solid var(--line); background: #fff; border-radius: 4px; padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--bj-blue); cursor: pointer; }
.btn-text:hover { border-color: var(--bj-blue); background: #EEF5FB; }
.faq-group { margin-top: 28px; }
.faq-group-title { font-size: 18px; font-weight: 700; color: var(--bj-navy); margin-bottom: 4px; }
.faq-group-title .cnt { font-size: 13px; font-weight: 500; color: var(--bj-steel); margin-left: 4px; }
.faq-page .faq { border-top: 0; }
.faq-page .faq-item summary::before { display: none; }
.faq-page .faq-item summary { display: flex; gap: 10px; align-items: flex-start; }
.faq-page .q-no { flex-shrink: 0; min-width: 40px; font-size: 13px; font-weight: 700; color: var(--bj-steel); letter-spacing: .02em; padding-top: 3px; }
.faq-page .q-text mark { background: #FFF3B0; color: inherit; padding: 0 2px; border-radius: 2px; }
.faq-page .faq-item .a { padding-left: 50px; }
.faq-page .faq-item .a p + p, .faq-page .faq-item .a ul + p, .faq-page .faq-item .a p + ul { margin-top: 8px; }
.faq-page .faq-item .a ul { padding-left: 18px; }
.faq-page .faq-item .a li { list-style: disc; margin: 3px 0; }
.faq-page .faq-item .a a { color: var(--bj-blue); text-decoration: underline; text-underline-offset: 3px; }
.faq-tools { margin-top: 10px !important; font-size: 12px; }
.faq-tools .faq-link { color: var(--text-muted) !important; text-decoration: none !important; }
.faq-tools .faq-link:hover { color: var(--bj-blue) !important; }
.faq-empty { text-align: center; padding: 48px 16px; border: 1px dashed var(--line); border-radius: 8px; margin-top: 16px; }
.faq-empty p { font-size: 16px; color: var(--text-body); margin-bottom: 18px; }
.faq-empty .btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.faq-note { margin-top: 36px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-muted); line-height: 1.7; }
@media (min-width: 768px) {
  .faq-search-box input { font-size: 17px; padding: 12px 0; }
  .faq-page .faq-item .a { padding-left: 60px; }
  .faq-page .q-no { min-width: 48px; font-size: 14px; }
  .faq-group-title { font-size: 20px; }
}
