/* ==============================================
   게시글 뷰 페이지
   ============================================== */

/* ── 이전·다음 글 (버튼형) ── */
.post-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.post-nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid #e2e5ea;
    background: linear-gradient(180deg, #f6f7f9 0%, #eef0f3 100%);
    color: var(--text);
    font-size: .85rem;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 1px 2px rgba(0,0,0,.05);
    transition: background .15s, border-color .15s, box-shadow .15s, transform .1s;
}
.post-nav-link:hover {
    background: linear-gradient(180deg, #eef1f5 0%, #e4e8ee 100%);
    border-color: #c5ced9;
    box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 2px 8px rgba(28, 111, 203, 0.12);
    text-decoration: none;
}
.post-nav-link:active {
    transform: translateY(1px);
    box-shadow: 0 0 1px rgba(0,0,0,.08) inset;
}
.post-nav-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.post-nav-link--next {
    text-align: right;
    align-items: flex-end;
}
.post-nav-link--next .post-nav-title {
    text-align: right;
}
.post-nav-label {
    display: block;
    color: #6b7280;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    text-transform: none;
}
.post-nav-title {
    display: -webkit-box;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.post-nav-link:hover .post-nav-title {
    color: var(--primary-h);
}
.post-nav-placeholder { min-height: 1px; }

.post-ad--bottom { margin-top: 24px; }

/* ── 뷰 레이아웃 (메인열 | 사이드바) ── */
.view-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
    grid-template-rows: auto;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: visible;
}
.view-layout > .view-main-column {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 100%;
    position: relative;
    z-index: 2;
    display: block;
}
.view-layout > .side-col {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    /* 본문 열과 같은 행 높이 → sticky가 문서 끝까지 올바른 구간에서 동작 */
    align-self: stretch;
    min-height: 0;
}
.post-article {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}
.post-article__lead {
    flex-shrink: 0;
}
/* 본문+플레이스홀더 광고만 — overflow/스택을 하단 UI와 분리 */
.post-article__prose {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 0;
}
.post-article__footer {
    flex-shrink: 0;
    width: 100%;
    min-width: 0;
}

/* ── Hero 영역 (썸네일 있을 때) ── */
.post-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #1f2937;
}
.post-hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.post-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    box-sizing: border-box;
}
.post-hero-overlay .cat-badge--hero {
    align-self: center;
    margin-bottom: 10px;
}
.post-hero h1 {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.4;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
    max-width: 100%;
}
.post-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    font-size: .82rem;
    color: rgba(255,255,255,.9);
    flex-wrap: wrap;
}

/* ── 제목 헤더 (썸네일 없을 때) ── */
.post-header {
    background: #fff;
    padding: 20px 20px 14px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 18px;
    text-align: center;
}
.post-header h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--text);
}
.post-header-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    font-size: .83rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* ── 출처 ── */
.post-source {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: #f7f7f7;
    border-left: 3px solid var(--primary);
    font-size: .82rem;
    color: var(--text-sub);
    margin-bottom: 18px;
}
.post-source a { color: var(--primary); text-decoration: underline; }

/* ── 본문 ── */
.post-content {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text);
    position: static;
    z-index: auto;
    overflow: visible;
    word-break: break-word;
    overflow-wrap: break-word;
    background: #fff;
    border:1px solid var(--border);
    padding: 20px 20px 24px;
}
/* 본문 블록: overflow-x clip/hidden 금지 → 세로 overflow-y가 auto로 바뀌며 모바일에서 애드센스 높이가 잘림 */
.post-body {
    min-width: 0;
    overflow: visible;
}
.post-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 28px 0 10px;
    color: var(--text-h2);
    background-color: #2b3a52;
    padding: 12px;
    border-radius: 7px 7px 0 0;
    border-bottom:3px solid #36619c;
    letter-spacing: -1px;
}
.post-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 8px;
    color: var(--text);
}
.post-content h4 {
    font-size: .97rem;
    font-weight: 700;
    margin: 16px 0 6px;
    color: var(--text);
}
.post-content p { margin-bottom: 14px; }
.post-content ul,
.post-content ol   { padding-left: 22px; margin-bottom: 14px; }
.post-content li   { margin-bottom: 5px; }
/* 본문(prose) 링크만 — .post-content a 로 두면 잘못된 닫힘 태그 시 이전/다음·관련글까지 밑줄 상속 */
.post-body a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(28, 111, 203, 0.4);
    text-underline-offset: 2px;
}
.post-body a:hover {
    color: var(--primary-h);
    text-decoration: underline;
    text-decoration-color: rgba(21, 88, 168, 0.55);
}
.post-body a:focus-visible {
    text-decoration: underline;
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
/* 깨진 HTML로 네비/관련글이 .post-body 안에 들어온 경우에도 prose 링크 스타일 제외 */
.post-body a.post-nav-link,
.post-body a.post-nav-link:hover,
.post-body a.post-nav-link:focus-visible,
.post-body a.related-item,
.post-body a.related-item:hover,
.post-body a.related-item:focus-visible {
    text-decoration: none;
}
.post-body a.tag,
.post-body a.tag:hover,
.post-body a.tag:focus-visible {
    text-decoration: none;
}
.post-content img  { margin: 14px auto; max-width: 100%; }
.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 10px 16px;
    margin: 14px 0;
    background: #f0f6ff;
    color: var(--text-sub);
    font-style: italic;
}
.post-content strong { font-weight: 700; }
.post-content em { font-style: italic; }
.post-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

/* 기본 table */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.post-content th, .post-content td {
    padding: 9px 12px;
    border: 1px solid #d8d8d8;
    color: var(--text);
    vertical-align: middle;
    line-height: 1.5;
    word-break: break-word;
}
.post-content th {
    background: #f0f4f8;
    color: var(--text);
    font-weight: 700;
    text-align: center;
}
.post-content tbody tr:nth-child(even) td { background: #fafafa; }
.post-content tbody tr:hover td { background: #f0f6ff; }

/* 코드 */
.post-content pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 14px 16px;
    overflow-x: auto;
    font-size: .84rem;
    margin-bottom: 14px;
    line-height: 1.6;
}
.post-content code {
    background: #f0f0f0;
    padding: 1px 5px;
    font-size: .88em;
    color: #c0392b;
}
.post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* ── 광고 ── (flex 세로열 안에서도 가로 폭 유지 · 자식 .ad-container가 애드센스 기준 폭) */
.post-article > .post-ad--slot {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.post-ad {
    margin: 20px 0;
    text-align: center;
    position: relative;
    z-index: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.post-ad .ad-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
/* 슬롯 광고: overflow-x 클립 시 세로가 auto로 바뀌어 iframe 높이가 잘려 보일 수 있음 */
.post-ad--slot {
    overflow: visible;
    min-width: 0;
}
.post-body .ad-container ins.adsbygoogle {
    display: block;
    position: relative;
    z-index: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 18px auto;
    text-align: center;
}
.post-body .ad-container ins.adsbygoogle iframe {
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

/* ── 해시태그 ── */
.post-tags {
    margin-top: 20px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}
.post-tags strong {
    font-size: .83rem;
    color: var(--text-sub);
    display: block;
    margin-bottom: 6px;
}

/* ── 헤더 인라인 공유 버튼 (제목 아래) ── */
.post-header-share {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.share-btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-family: inherit;
    transition: opacity .15s, transform .1s;
    white-space: nowrap;
}
.share-btn-inline:hover { opacity: .82; transform: translateY(-1px); text-decoration: none; }
.share-btn-inline:active { transform: translateY(0); }
.share-btn-inline.share-copy     { background: #4b5563; color: #fff; }
.share-btn-inline.share-threads  { background: #000; color: #fff; }
.share-btn-inline.share-facebook { background: #1877f2; color: #fff; }
.share-btn-inline.share-x        { background: #000; color: #fff; }

/* 히어로 오버레이 위의 공유 버튼은 반투명 처리 */
.post-hero-overlay .share-btn-inline.share-copy     { background: rgba(75,85,99,.85); }
.post-hero-overlay .share-btn-inline.share-threads  { background: rgba(0,0,0,.75); }
.post-hero-overlay .share-btn-inline.share-facebook { background: rgba(24,119,242,.85); }
.post-hero-overlay .share-btn-inline.share-x        { background: rgba(0,0,0,.75); }

/* ── 하단 공유 버튼 ── */
.share-btns { display: flex; gap: 6px; flex-wrap: wrap; margin: 16px 0; }
.share-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 14px;
    font-size: .83rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
    font-family: inherit;
}
.share-btn:hover { opacity: .8; }
.share-copy { background: #555; color: #fff; }

/* ── 목차 ── */
.post-toc {
    background: #f9f9f9;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0 28px;
}
.post-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
}
.post-toc-title { font-size: .93rem; font-weight: 700; color: var(--primary); }
.post-toc-toggle { font-size: .78rem; color: var(--text-muted); }
/* 번호·불릿 없이 제목 텍스트만 (계층은 들여쓰기로) */
.post-toc-body ol,
.post-toc-body ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.post-toc-body ol > li { margin-bottom: 8px; }
.post-toc-body ul {
    padding-left: 14px;
    margin: 6px 0 0;
    border-left: 2px solid #e8ecf0;
}
.post-toc-body li { margin-bottom: 4px; line-height: 1.5; }
.post-toc-body ul li:last-child { margin-bottom: 0; }
/* 목차 링크: 본문 .post-body a 보다 우선 (.post-body 안에 삽입될 때 덮어씀) */
.post-toc-body a,
.post-body .post-toc-body a {
    font-size: .85rem;
    color: var(--text-sub);
    text-decoration: none;
    line-height: 1.5;
}
.post-toc-body a:hover,
.post-body .post-toc-body a:hover {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(28, 111, 203, 0.45);
}
.post-toc-body a:focus-visible,
.post-body .post-toc-body a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    text-decoration: none;
}

/* ── 관련글 ── */
.related-posts { margin-top: 28px; }
.related-title {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 14px;
    padding:15px;
    background-color: #f0f6ff;
    border-bottom: 2px solid var(--primary);
}
.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.related-item {
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow .18s, border-color .15s;
    background: #fff;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}
.related-item:visited,
.related-item:focus-visible {
    text-decoration: none;
}
.related-item .related-item-title,
.related-item .related-meta {
    text-decoration: none;
}
.related-item:hover {
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
    border-color: #d0d5dd;
}
.related-thumb {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    min-height: 180px;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8eaed 0%, #dfe3e8 100%);
    line-height: 0;
}
.related-thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
    object-position: center;
    max-width: none;
    display: block;
    transition: transform .35s ease;
}
.related-item:hover .related-thumb img { transform: scale(1.03); }
.related-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 14px 14px;
    background: #fafbfc;
    border-top: 1px solid #f0f1f3;
    min-height: 0;
}
.related-item-title {
    margin: 0;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    transition: color .15s;
}
.related-item:hover .related-item-title { color: var(--primary); }
.related-meta {
    display: block;
    margin-top: 8px;
    font-size: .74rem;
    color: #6b7280;
    font-weight: 500;
}
.related-meta::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    opacity: .35;
    border-radius: 1px;
    margin-bottom: 8px;
}

/* ── 반응형 (모바일 글자: 현재 설정값 × 1.15) ── */
@media (max-width: 900px) {
    .view-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
    }
    .view-layout > .view-main-column,
    .view-layout > .side-col {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .post-hero { height: 220px; }
    .post-hero h1 { font-size: calc(1.2rem * 1.15); }
    .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    /* 슬롯·푸터 래퍼: 컨테이너 폭=이미 뷰와 동일 → 100vw 브레이크아웃 생략(스크롤바·vw 비대칭 방지) */
    .post-ad--slot > .ad-container,
    .ad-wrap > .ad-container,
    .widget-ad > .ad-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: env(safe-area-inset-left, 0px);
        padding-right: env(safe-area-inset-right, 0px);
        box-sizing: border-box;
    }
    /*
     * 본문 광고: .ad-container에 calc(50% - 50vw)를 주면 래퍼·구글 인라인(margin-left:-16px 등)과 겹쳐 좌로 밀림.
     * 풀블리드 대신 부모(.post-body) 폭에 맞추고, ins 쪽 음수 마진은 !important로 덮음.
     */
    .post-content .post-body .ad-container {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        text-align: center;
    }
    .post-content .post-body .ad-container ins.adsbygoogle {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
    .post-header h1 { font-size: calc(1.5rem * 1.15); }
    .post-content {
        font-size: calc(17px * 1.15);
    }
    .post-content h1 { font-size: calc(1.75rem * 1.15); }
    .post-content h2 { font-size: calc(24px * 1.15); }
    .post-content h3 { font-size: calc(1.05rem * 1.15); }
    .post-content ul,
    .post-content ol,
    .post-content li { font-size: inherit; }
    .post-section { font-size: calc(15px * 1.15); }
    .post-toc-title { font-size: calc(.93rem * 1.15); }
    .post-toc-body a { font-size: calc(.85rem * 1.15); }
    .post-toc-body li { font-size: inherit; }
}
@media (max-width: 600px) {
    .post-hero {
        height: 250px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .post-hero-overlay { padding: 14px 16px; }
    .post-hero h1 { font-size: calc(1.1rem * 1.15); }
    .post-header { padding: 14px 0 12px; }
    .post-header h1 { font-size: calc(1.2rem * 1.15); }
    .post-content h2 { font-size: calc(1.1rem * 1.15); }
    .post-content h3 { font-size: calc(1rem * 1.15); }
    .post-content th, .post-content td { padding: 7px 8px; font-size: calc(.82rem * 1.15); }
    .post-content {
        font-size: calc(17px * 1.15);
        padding-left: 16px;
        padding-right: 16px;
    }
    .related-grid { grid-template-columns: 1fr; padding:15px; }
    .post-toc { padding: 12px 14px; }
}

/* ==============================================
   AI 생성 글 템플릿 컴포넌트
   ============================================== */

.post-section {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size:17px;
    color: #333;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.spacer-br { height: 18px; }

/* ── 핵심 요약 박스 ── */
.summary-container {
    border: 2px solid var(--primary);
    background: #fff;
    overflow: hidden;
    margin: 26px 0;
}
.summary-header {
    background: var(--primary);
    color: #fff;
    padding: 11px 18px;
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
}
.summary-body { padding: 0; }
.summary-table { width: 100%; border-collapse: collapse; }
.summary-table tr { border-bottom: 1px dashed #e5e5e5; }
.summary-table tr:last-child { border-bottom: none; }
.summary-label {
    color: #444;
    font-weight: 700;
    width: 32%;
    background: #f4f8ff;
    padding: 11px 14px;
    vertical-align: top;
    font-size: .88rem;
    border-right: 1px solid #e5e5e5;
}
.summary-value {
    color: #333;
    padding: 11px 14px;
    vertical-align: top;
    font-size: .88rem;
    line-height: 1.7;
}

/* ── 데이터 표 ── */
.data-table-wrapper {
    margin: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.data-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    border: 1px solid #ddd;
    text-align: center;
    font-size: .88rem;
}
.data-table thead tr { background: #2d3436; }
.data-table th { color: var(--text); padding: 10px 12px; border: 1px solid #444; }
.data-table td { padding: 10px 12px; border: 1px solid #ddd; color: var(--text); }
.data-table tbody tr:nth-child(even) { background: #f9f9f9; }
.data-table tbody tr:hover { background: #f0f6ff; }

/* ── 박스 ── */
.box-reference {
    background: #f1f2f6;
    padding: 14px 18px;
    margin: 18px 0;
    border-left: 5px solid #00b894;
    line-height: 1.8;
    font-size: 15px;
}
.box-gray-light {
    background: #f9f9fb;
    border: 1px solid #ddd;
    font-size:15px;
    padding: 10px;
    margin: 24px 0;
}
.box-gray-simple {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    margin: 14px 0;
    font-size: 15px;
    line-height: 1.8;
}
.box-warning {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 5px solid #d9534f;
    padding: 16px 20px;
    margin-bottom: 14px;
}
.text-warning-title { color: #d9534f; margin: 0 0 6px; font-size: .97rem; font-weight: 700; }
.text-highlight { color: var(--primary); font-weight: 700; }
.title-block { display: block; margin-bottom: 6px; }
.list-none { list-style: none; padding-left: 0; margin: 0; }
.list-none li { padding: 4px 0; line-height: 1.8; }
.list-ol { padding-left: 18px; margin: 6px 0 0; }
.list-ol li { margin-bottom: 5px; line-height: 1.8; }

/* ── FAQ ── */
.faq-container {
    background: #fff;
    padding: 20px 22px;
    border: 1px solid #ddd;
}
.faq-item {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-question {
    display: block;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 17px;
}
.faq-answer {
    display: block;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
    padding-left: 12px;
    border-left: 3px solid #e0e0e0;
}

/* ── 면책 ── */
.text-disclaimer {
    color: #999;
    margin-top: 36px;
    border-top: 1px dashed #ddd;
    padding-top: 16px;
    font-size: .8rem;
    line-height: 1.9;
}

/* ── 모바일 템플릿 반응형 (현재값 × 1.15) ── */
@media (max-width: 600px) {
    .summary-label { width: 38%; font-size: calc(.82rem * 1.15); padding: 9px 10px; }
    .summary-value { font-size: calc(.82rem * 1.15); padding: 9px 10px; }
    .data-table th, .data-table td { padding: 8px; font-size: calc(.8rem * 1.15); }
    .box-reference, .box-gray-light, .box-gray-simple, .box-warning { padding: 12px 14px; }
    .faq-container { padding: 14px 16px; }
    .faq-question { font-size: calc(17px * 1.15); }
    .faq-answer { font-size: calc(15px * 1.15); }
    .post-toc { padding: 12px 14px; }
}
