:root {
    --bg: #ffffff;
    --bg-secondary: #f7f8fa;
    --bg-card: #ffffff;
    --accent: #ffdd2d;
    --accent-hover: #fcc521;
    --accent-text: #1a1a1a;
    --text: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --container: 1140px;
    --green: #10b981;
    --green-bg: #ecfdf5;
    --blue: #3b82f6;
    --blue-bg: #eff6ff;
    --orange: #f59e0b;
    --orange-bg: #fffbeb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* overflow-x: clip, а не hidden — hidden ломает position: sticky у вложенных блоков (оглавление статьи) */
html { scroll-behavior: smooth; overflow-x: clip; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.logo-desc {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover { color: var(--text); }
.nav a.active { color: var(--text); }

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-text);
    box-shadow: 0 2px 12px rgba(255,221,45,0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px rgba(255,221,45,0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text);
    background: var(--bg-secondary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

/* ====== HEADER RIGHT ====== */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta-mobile {
    display: none;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 8px;
    white-space: nowrap;
}

/* ====== BURGER ====== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 56px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo {
    margin-bottom: 4px;
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.footer-social-link:hover {
    border-color: var(--accent);
    background: #fffbeb;
}

.footer-social-link img {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text); }

/* ====== ANIMATIONS ====== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== QUIZ ====== */
.quiz-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
}
.quiz-overlay.active { display: flex; }
.quiz-modal {
    background: var(--bg);
    border-radius: var(--radius);
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.quiz-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 1;
}
.quiz-progress { display: flex; gap: 8px; padding: 32px 32px 0; }
.quiz-progress-step { flex: 1; height: 4px; border-radius: 2px; background: var(--border-light); transition: background 0.3s; }
.quiz-progress-step.done { background: var(--accent); }
.quiz-progress-step.current { background: var(--accent); }
.quiz-step { display: none; padding: 32px; }
.quiz-step.active { display: block; }
.quiz-step h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.quiz-step p { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; }
.quiz-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; margin-top: 12px; }
.quiz-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.quiz-input:focus { border-color: var(--accent); }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.quiz-option {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s;
}
.quiz-option:hover { border-color: var(--accent); }
.quiz-option.selected { border-color: var(--accent); background: #fffbeb; font-weight: 500; }
.quiz-buttons { display: flex; gap: 12px; margin-top: 24px; }
.quiz-btn {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.quiz-btn-back { background: var(--bg-secondary); color: var(--text-secondary); }
.quiz-btn-next { background: var(--accent); color: var(--accent-text); }
.quiz-btn-next:hover { background: var(--accent-hover); }
.quiz-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.quiz-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; font-size: 13px; color: var(--text-secondary); }
.quiz-consent a { color: var(--text-secondary); text-decoration: underline; }
.quiz-consent a:hover { color: var(--text); }
.quiz-consent input { margin-top: 2px; }
.quiz-success { text-align: center; padding: 48px 32px; }
.quiz-success h3 { margin-bottom: 12px; }
.quiz-success p { margin-bottom: 0; }

/* ====== RESPONSIVE: HEADER, FOOTER, NAV ====== */
@media (max-width: 960px) {
    .nav { display: none; }
    .burger { display: flex; }
    .header-cta-mobile { display: inline-flex; }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ====== BREADCRUMBS ====== */
.breadcrumbs { padding: 88px 0 0; }
.breadcrumbs-list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 13px; flex-wrap: wrap; }
.breadcrumbs-list a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumbs-list a:hover { color: var(--text); }
.breadcrumbs-list span { color: var(--text-muted); }
.breadcrumbs-list li:last-child span { color: var(--text-secondary); }

/* ====== ARTICLE LAYOUT ====== */
.article-layout { display: grid; grid-template-columns: 1fr 260px; gap: 64px; padding: 32px 0 0; min-width: 0; }

/* ====== ARTICLE ====== */
.article { max-width: 760px; min-width: 0; overflow-wrap: break-word; word-wrap: break-word; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.article-tag { display: inline-flex; padding: 4px 12px; border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--accent-text); background: var(--accent); text-decoration: none; }
.article-date { font-size: 13px; color: var(--text-muted); }
.article-reading { font-size: 13px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 4px; }
.article-reading svg { width: 14px; height: 14px; }
.article h1 { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.02em; }
.article-lead { font-size: 20px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 48px; border-left: 3px solid var(--accent); padding-left: 20px; }

/* ====== ARTICLE BODY ====== */
.article-body h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 700; margin-top: 56px; margin-bottom: 20px; line-height: 1.3; scroll-margin-top: 88px; }
.article-body h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; margin-top: 40px; margin-bottom: 16px; line-height: 1.3; }
.article-body p { font-size: 18px; line-height: 1.8; margin-bottom: 24px; color: var(--text); }
.article-body ul, .article-body ol { font-size: 18px; line-height: 1.8; margin-bottom: 24px; padding-left: 28px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { font-weight: 600; }
.article-body a { color: var(--text); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 2px; transition: text-decoration-color 0.2s; }
.article-body a:hover { text-decoration-color: var(--text); }
.article-body blockquote { margin: 32px 0; padding: 24px 28px; background: var(--bg-secondary); border-left: 4px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 18px; line-height: 1.7; color: var(--text-secondary); }
.article-body .highlight-box { margin: 32px 0; padding: 28px; background: #fffbeb; border: 1px solid #fef3c7; border-radius: var(--radius); }
.article-body .highlight-box p { margin-bottom: 0; font-size: 17px; }
.article-body .highlight-box strong { color: var(--text); }

/* ====== ARTICLE: SOURCE SUMMARY ====== */
.article-body .source-summary { margin: 32px 0; padding: 20px 24px; background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: var(--radius); }
.article-body .source-summary-title { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-muted); margin-bottom: 14px; }
/* grid auto/1fr — ярлыки в одну колонку, значения выравниваются по общей вертикали */
.article-body .source-summary dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 14px; }
.article-body .source-summary dt { color: var(--text-muted); font-size: 16px; line-height: 1.55; }
.article-body .source-summary dd { margin: 0; color: var(--text); font-size: 16px; line-height: 1.55; }

/* ====== ARTICLE COVER ====== */
.article-cover { width: 100%; border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.article-cover img { width: 100%; height: auto; display: block; }
.article-cover-placeholder { width: 100%; height: 360px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); }

/* ====== ARTICLE IMAGES ====== */
.article-body figure { margin: 32px 0; }
/* max-height не даёт вертикальным скриншотам занимать весь экран; полный размер — по клику (лайтбокс) */
.article-body figure img { width: auto; max-width: 100%; max-height: 520px; height: auto; border-radius: var(--radius-sm); border: 1px solid var(--border-light); display: block; margin: 0 auto; cursor: zoom-in; transition: opacity 0.2s; }
.article-body figure img:hover { opacity: 0.88; }

/* ====== LIGHTBOX ====== */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(17,17,17,0.92); display: flex; align-items: center; justify-content: center; padding: 32px; cursor: zoom-out; opacity: 0; transition: opacity 0.2s; }
.lightbox.is-open { opacity: 1; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.28); }
.lightbox-hint { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }
@media (max-width: 600px) { .lightbox { padding: 16px; } .lightbox-hint { display: none; } }

/* подсказка у картинок, которые ужаты по высоте */
.zoom-hint { display: block; font-size: 13px; color: var(--text-muted); opacity: 0.75; margin-top: 4px; }
@media (max-width: 600px) { .article-body figure img, .content figure img { max-height: 440px; } }
.article-body figcaption { font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.article-body .screenshot-placeholder { width: 100%; height: 280px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); background: var(--bg-secondary); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.article-body .screenshot-placeholder svg { width: 40px; height: 40px; stroke: var(--text-muted); opacity: 0.5; }
.article-body .screenshot-placeholder span { font-size: 13px; color: var(--text-muted); }

/* ====== RESULTS BANNER ====== */
.results-banner { margin-bottom: 48px; padding: 32px; background: linear-gradient(135deg, var(--green-bg) 0%, #d1fae5 100%); border-radius: var(--radius); border: 1px solid #a7f3d0; box-sizing: border-box; overflow: hidden; }
.results-banner-title { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.result-item { text-align: center; }
.result-value { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; color: var(--text); line-height: 1.2; }
.result-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* ====== BEFORE-AFTER TABLE ====== */
.before-after { margin: 32px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-light); }
.before-after table { width: 100%; border-collapse: collapse; }
.before-after th { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; padding: 14px 20px; text-align: left; }
.before-after th:first-child { background: var(--bg-secondary); color: var(--text-secondary); }
.before-after th:nth-child(2) { background: #fee2e2; color: #dc2626; }
.before-after th:nth-child(3) { background: var(--green-bg); color: var(--green); }
.before-after td { padding: 12px 20px; font-size: 15px; border-top: 1px solid var(--border-light); }
.before-after td:first-child { color: var(--text-secondary); font-weight: 500; }
.before-after td:nth-child(2) { color: var(--text-muted); }
.before-after td:nth-child(3) { color: var(--text); font-weight: 600; }

/* ====== TOC ====== */
.toc { position: sticky; top: 88px; align-self: start; }
.toc-mobile { display: none; }
.toc-title { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 16px; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.toc-list a { font-size: 14px; color: var(--text-secondary); text-decoration: none; line-height: 1.4; transition: color 0.2s; display: block; padding-left: 12px; border-left: 2px solid transparent; }
.toc-list a:hover { color: var(--text); }
.toc-list a.active { color: var(--text); border-left-color: var(--accent); font-weight: 500; }

/* ====== SHARE ====== */
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border-light); }
.article-share-label { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg); color: var(--text-secondary); text-decoration: none; transition: all 0.2s; }
.share-btn:hover { border-color: var(--text); color: var(--text); }
.share-btn svg { width: 18px; height: 18px; }

/* ====== AUTHOR BOX ====== */
.author-box { margin-top: 48px; padding: 16px 24px; background: var(--bg-secondary); border-radius: var(--radius); display: flex; gap: 16px; align-items: center; }
.author-box-photo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box-info { flex: 1; }
.author-box-name { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; line-height: 1.2; }
.author-box-role { font-size: 13px; color: var(--text-secondary); }
.author-box-actions { margin-top: 16px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.author-box-socials { display: flex; gap: 8px; }
.subscribe-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; text-decoration: none; border: 1px solid var(--border); color: var(--text-secondary); background: var(--bg); transition: all 0.2s; }
.subscribe-btn:hover { border-color: var(--text); color: var(--text); }
.subscribe-btn svg, .subscribe-btn img { width: 16px; height: 16px; }

/* ====== ARTICLE CTA ====== */
.article-cta { margin-top: 48px; padding: 40px; background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); border-radius: var(--radius); text-align: center; }
.article-cta h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.article-cta p { font-size: 16px; color: var(--text-secondary); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.article-cta .btn { font-size: 16px; padding: 14px 32px; }

/* ====== RELATED ====== */
.related { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border-light); }
.related-title { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { display: flex; flex-direction: column; border-radius: var(--radius); border: 1px solid var(--border-light); overflow: hidden; text-decoration: none; color: var(--text); transition: all 0.3s; }
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-card-img { width: 100%; height: 140px; object-fit: cover; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; }
.related-card-body { padding: 20px; }
.related-card-tag { font-size: 12px; font-weight: 600; color: var(--accent-text); background: #fffbeb; padding: 3px 10px; border-radius: 100px; border: 1px solid #fef3c7; display: inline-block; margin-bottom: 8px; }
.related-card-title { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.3; }

/* ====== RESPONSIVE: ARTICLE ====== */
@media (max-width: 960px) {
    .article-layout { grid-template-columns: 1fr; gap: 0; }
    .toc { display: none; }
    .toc-mobile { display: block; margin-bottom: 32px; padding: 24px; background: var(--bg-secondary); border-radius: var(--radius); }
    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .article h1 { font-size: 26px; }
    .article-lead { font-size: 16px; padding-left: 16px; }
    .article-body h2 { font-size: 22px; }
    .article-body p, .article-body ul, .article-body ol { font-size: 17px; }
    .article-body blockquote { font-size: 16px; padding: 20px; }
    .article-body .source-summary { padding: 18px 20px; }
    .article-body .source-summary dl { grid-template-columns: 1fr; gap: 2px; }
    .article-body .source-summary dt { font-size: 15px; }
    .article-body .source-summary dd { font-size: 15px; margin-bottom: 8px; }
    .article-body .source-summary dd:last-child { margin-bottom: 0; }
    .results-banner { padding: 20px; }
    .results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .result-value { font-size: 22px; }
    .before-after { overflow-x: auto; }
    .before-after table { min-width: 480px; }
    .related-grid { grid-template-columns: 1fr; }
    .author-box { flex-wrap: wrap; }
    .author-box-socials { width: 100%; justify-content: center; }
    .article-cta { padding: 28px 20px; }
    .article-cta .cta-buttons { flex-direction: column; align-items: center; }
}
