:root{
            --bg:#f2f2f2;
            --surface:#ffffff;
            --surface-2:#fafafa;
            --surface-3:#f6f7f8;
            --line:#e7e7e7;
            --line-2:#efefef;
            --text:#111111;
            --muted:#6b7280;
            --muted-2:#8a8f98;
            --accent:#1a73e8;
            --accent-soft:#eef5ff;
            --green:#16a34a;
            --green-soft:#eaf8ef;
            --orange:#d97706;
            --orange-soft:#fff4e8;
            --red:#dc2626;
            --red-soft:#fff1f1;
            --purple:#7c3aed;
            --purple-soft:#f4efff;
            --shadow:0 1px 2px rgba(0,0,0,.04), 0 12px 24px rgba(0,0,0,.04);
            --radius:18px;
            --radius-lg:24px;
            --container:1380px;
        }

        *{box-sizing:border-box}
        html{scroll-behavior:smooth}
        body{
            margin:0;
            font-family:'Inter', Arial, sans-serif;
            color:var(--text);
            background:var(--bg);
            -webkit-font-smoothing:antialiased;
            text-rendering:optimizeLegibility;
        }

        a{
            color:inherit;
            text-decoration:none;
        }

        img{
            max-width:100%;
            display:block;
        }

        .container{
            width:min(100% - 24px, var(--container));
            margin:0 auto;
        }

        .topbar{
            position:sticky;
            top:0;
            z-index:120;
            backdrop-filter:blur(14px);
            background:rgba(242,242,242,.92);
            border-bottom:1px solid rgba(231,231,231,.92);
        }

        .topbar-inner{
            min-height:64px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:20px;
        }

        .logo{
            display:flex;
            align-items:center;
            gap:12px;
            min-width:0;
        }

        .logo-mark{
            width:38px;
            height:38px;
            border-radius:12px;
            background:#111;
            position:relative;
            flex:0 0 38px;
        }

        .logo-mark::before{
            content:"V";
            position:absolute;
            inset:0;
            display:grid;
            place-items:center;
            color:#fff;
            font-size:16px;
            font-weight:900;
        }

        .logo-text{
            display:flex;
            flex-direction:column;
            line-height:1.05;
        }

        .logo-text strong{
            font-size:18px;
            font-weight:800;
            letter-spacing:-.03em;
        }

        .logo-text span{
            font-size:12px;
            color:var(--muted);
            font-weight:600;
        }

        .nav{
            display:flex;
            align-items:center;
            gap:6px;
            flex-wrap:wrap;
        }

        .nav a{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            min-height:38px;
            padding:0 14px;
            border-radius:12px;
            font-size:14px;
            font-weight:600;
            color:#242424;
            transition:.16s ease;
        }

        .nav a:hover{
            background:#fff;
        }

        .article-hero{
            padding:18px 0 0;
        }

        .article-hero__card{
            background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
            border:1px solid var(--line);
            border-radius:28px;
            box-shadow:var(--shadow);
            overflow:hidden;
        }

        .article-hero__top{
            padding:18px 22px 0;
        }

        .breadcrumbs{
            display:flex;
            align-items:center;
            gap:8px;
            flex-wrap:wrap;
            color:var(--muted);
            font-size:13px;
            line-height:1.6;
        }

        .breadcrumbs a{
            color:#4b5563;
        }

        .breadcrumbs a:hover{
            color:#111;
        }

        .sep{
            color:#b0b6bf;
        }

        .article-hero__main{
            padding:18px 22px 22px;
            display:grid;
            grid-template-columns:minmax(0,1fr) 320px;
            gap:18px;
            align-items:stretch;
        }

        .article-hero__content{
            min-width:0;
        }

        .meta-row{
            display:flex;
            flex-wrap:wrap;
            gap:8px;
            margin-bottom:16px;
        }

        .chip{
            display:inline-flex;
            align-items:center;
            min-height:32px;
            padding:0 12px;
            border-radius:999px;
            background:#f7f7f7;
            border:1px solid var(--line);
            color:#444;
            font-size:12px;
            font-weight:700;
        }

        .chip--category{
            background:var(--accent-soft);
            color:var(--accent);
            border-color:#d9e8ff;
        }

        .article-title{
            margin:0;
            font-size:clamp(34px,4.8vw,60px);
            line-height:1.02;
            letter-spacing:-.06em;
            font-weight:900;
            max-width:980px;
        }

        .article-lead{
            margin-top:16px;
            max-width:880px;
            color:#4b5563;
            font-size:18px;
            line-height:1.8;
        }

        .hero-highlights{
            margin-top:18px;
            display:flex;
            flex-wrap:wrap;
            gap:10px;
        }

        .hero-highlights .chip{
            min-height:36px;
            padding:0 14px;
            background:#fff;
        }

        .article-hero__side{
            background:linear-gradient(180deg,#f8f9fb 0%,#ffffff 100%);
            border:1px solid var(--line);
            border-radius:22px;
            padding:18px;
            display:flex;
            flex-direction:column;
            justify-content:space-between;
            gap:18px;
        }

        .hero-side__title{
            font-size:15px;
            font-weight:800;
            letter-spacing:-.02em;
            margin:0 0 10px;
        }

        .hero-side__list{
            display:grid;
            gap:10px;
        }

        .hero-side__item{
            background:#fff;
            border:1px solid var(--line);
            border-radius:16px;
            padding:12px 14px;
        }

        .hero-side__item strong{
            display:block;
            font-size:13px;
            margin-bottom:4px;
        }

        .hero-side__item span{
            display:block;
            color:var(--muted);
            font-size:13px;
            line-height:1.55;
        }

        .page{
            padding:18px 0 34px;
        }

        .layout{
            display:grid;
            grid-template-columns:240px minmax(0,1fr) 320px;
            gap:18px;
            align-items:start;
        }

        .left-rail,
        .side-stack{
            min-width:0;
        }

        .left-rail{
            position:sticky;
            top:84px;
        }

        .side-stack{
            position:sticky;
            top:84px;
        }

        .card{
            background:var(--surface);
            border:1px solid var(--line);
            border-radius:24px;
            box-shadow:var(--shadow);
        }

        .rail-card,
        .side-card{
            padding:18px;
        }

        .rail-card + .rail-card,
        .side-card + .side-card{
            margin-top:18px;
        }

        .rail-card h3,
        .side-card h3,
        .toc-card h2,
        .faq-card h2,
        .sources-card h3,
        .notice-card h3,
        .editorial-card h3,
        .related-wide h3{
            margin:0 0 14px;
            font-size:18px;
            letter-spacing:-.03em;
        }

        .toc-card{
            padding:20px;
            margin-bottom:18px;
        }

        .toc-list{
            display:grid;
            gap:8px;
        }

        .toc-list a{
            display:block;
            padding:11px 12px;
            border-radius:14px;
            background:#fafafa;
            border:1px solid var(--line);
            font-size:14px;
            font-weight:600;
            color:#222;
            transition:.16s ease;
        }

        .toc-list a:hover{
            background:#f2f4f7;
        }

        .article-card{
            overflow:hidden;
        }

        .article-inner{
            padding:26px;
        }

        .content{
            font-size:17px;
            line-height:1.9;
            color:#20252d;
        }

        .content > *:first-child{
            margin-top:0 !important;
        }

        .content > *:last-child{
            margin-bottom:0 !important;
        }

        .content h2{
            margin:42px 0 16px;
            font-size:34px;
            line-height:1.12;
            letter-spacing:-.05em;
            font-weight:900;
            color:#111;
            scroll-margin-top:90px;
        }

        .content h3{
            margin:30px 0 14px;
            font-size:25px;
            line-height:1.2;
            letter-spacing:-.03em;
            font-weight:800;
            color:#111;
        }

        .content h4{
            margin:24px 0 12px;
            font-size:20px;
            line-height:1.25;
            font-weight:800;
            color:#111;
        }

        .content p{
            margin:0 0 18px;
        }

        .content ul,
        .content ol{
            margin:0 0 22px;
            padding-left:24px;
        }

        .content li{
            margin:0 0 12px;
        }

        .content table{
            width:100%;
            border-collapse:collapse;
            margin:26px 0;
            overflow:hidden;
            border-radius:18px;
            background:#fff;
            border:1px solid var(--line);
            display:block;
            overflow-x:auto;
        }

        .content table tbody,
        .content table thead{
            width:100%;
        }

        .content table tr{
            border-bottom:1px solid var(--line);
        }

        .content table tr:last-child{
            border-bottom:0;
        }

        .content th,
        .content td{
            padding:14px 16px;
            text-align:left;
            font-size:15px;
            vertical-align:top;
            min-width:180px;
        }

        .content th{
            background:#fafafa;
            font-weight:800;
            color:#111;
        }

        .content blockquote{
            margin:26px 0;
            padding:18px 20px;
            border-left:4px solid var(--purple);
            background:var(--purple-soft);
            border-radius:16px;
            color:#2b1f52;
            font-weight:600;
        }

        .content .article-note,
        .content .article-tip,
        .content .article-danger,
        .content .article-summary{
            margin:26px 0;
            padding:18px 18px 16px;
            border-radius:18px;
            border:1px solid transparent;
        }

        .content .article-note{
            background:var(--accent-soft);
            border-color:#d6e7ff;
        }

        .content .article-tip{
            background:var(--green-soft);
            border-color:#caebd6;
        }

        .content .article-danger{
            background:var(--red-soft);
            border-color:#ffd7d7;
        }

        .content .article-summary{
            background:#f6f5ff;
            border-color:#e0dcff;
        }

        .content .article-note strong,
        .content .article-tip strong,
        .content .article-danger strong,
        .content .article-summary strong{
            display:block;
            margin-bottom:8px;
            font-size:15px;
            font-weight:800;
            color:#111;
        }

        .content .article-note p,
        .content .article-tip p,
        .content .article-danger p,
        .content .article-summary p{
            margin:0;
            font-size:15px;
            line-height:1.75;
            color:#27313f;
        }

        .content .article-emphasis{
            margin:22px 0;
            padding:0 0 0 16px;
            border-left:3px solid #111;
            color:#111;
            font-size:17px;
            font-weight:600;
        }

        .content .article-emphasis strong{
            font-weight:800;
        }

        .content a{
            color:var(--accent);
            text-decoration:underline;
            text-decoration-thickness:1px;
            text-underline-offset:2px;
        }

        .faq-card,
        .sources-card,
        .notice-card,
        .editorial-card,
        .related-wide{
            padding:20px;
            margin-top:18px;
        }

        .faq-list{
            display:grid;
            gap:12px;
        }

        .faq-item{
            background:#fafafa;
            border:1px solid var(--line);
            border-radius:18px;
            padding:16px;
        }

        .faq-item h3{
            margin:0 0 8px;
            font-size:17px;
            line-height:1.35;
            letter-spacing:-.02em;
        }

        .faq-item p{
            margin:0;
            color:#4b5563;
            line-height:1.75;
            font-size:15px;
        }

        .sources-list{
            list-style:none;
            margin:0;
            padding:0;
            display:grid;
            gap:10px;
        }

        .sources-list li{
            margin:0;
        }

        .source-link{
            display:block;
            padding:13px 14px;
            border-radius:16px;
            background:#fafafa;
            border:1px solid var(--line);
            font-size:14px;
            font-weight:600;
            color:#20252d;
            transition:.16s ease;
            word-break:break-word;
        }

        .source-link:hover{
            background:#f3f4f6;
        }

        .notice-card{
            background:linear-gradient(180deg,#fff9ec 0%,#fffdf7 100%);
            border-color:#f6e2b4;
        }

        .notice-card p{
            margin:0;
            color:#7a5a00;
            line-height:1.75;
            font-size:15px;
        }

        .editorial-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:12px;
        }

        .editorial-box{
            background:#fafafa;
            border:1px solid var(--line);
            border-radius:18px;
            padding:16px;
        }

        .editorial-label{
            display:block;
            margin-bottom:6px;
            font-size:12px;
            font-weight:700;
            text-transform:uppercase;
            letter-spacing:.06em;
            color:var(--muted);
        }

        .editorial-value{
            display:block;
            font-size:17px;
            font-weight:800;
            color:#111;
            line-height:1.35;
        }

        .editorial-desc{
            margin-top:14px;
            color:#4b5563;
            line-height:1.75;
            font-size:14px;
        }

        .side-list{
            list-style:none;
            margin:0;
            padding:0;
            display:grid;
            gap:10px;
        }

        .side-empty{
            color:var(--muted);
            font-size:14px;
            line-height:1.7;
        }

        .side-link{
            display:block;
            padding:14px;
            border-radius:16px;
            background:#fafafa;
            border:1px solid var(--line);
            transition:.16s ease;
        }

        .side-link:hover{
            background:#f4f5f6;
        }

        .side-link strong{
            display:block;
            font-size:15px;
            line-height:1.35;
            margin-bottom:8px;
            letter-spacing:-.02em;
        }

        .side-link p{
            margin:0 0 10px;
            color:#5a6270;
            font-size:13px;
            line-height:1.65;
        }

        .side-meta{
            display:inline-flex;
            align-items:center;
            min-height:28px;
            padding:0 10px;
            border-radius:999px;
            background:#fff;
            border:1px solid var(--line);
            color:#5b6472;
            font-size:12px;
            font-weight:700;
        }

        .rail-mini{
            display:grid;
            gap:10px;
        }

        .rail-mini__item{
            background:#fafafa;
            border:1px solid var(--line);
            border-radius:16px;
            padding:13px 14px;
        }

        .rail-mini__item strong{
            display:block;
            font-size:13px;
            margin-bottom:4px;
        }

        .rail-mini__item span{
            display:block;
            color:var(--muted);
            font-size:13px;
            line-height:1.55;
        }

        .footer{
            padding:0 0 34px;
        }

        .footer-shell{
            background:var(--surface);
            border:1px solid var(--line);
            border-radius:24px;
            box-shadow:var(--shadow);
            padding:24px;
        }

        .footer-grid{
            display:grid;
            grid-template-columns:1.15fr .85fr .85fr;
            gap:24px;
        }

        .footer h4{
            margin:0 0 12px;
            font-size:16px;
        }

        .footer p,
        .footer li,
        .footer a{
            color:#5b6472;
            font-size:14px;
            line-height:1.8;
        }

        .footer ul{
            list-style:none;
            margin:0;
            padding:0;
        }

        @media (max-width: 1280px){
            .layout{
                grid-template-columns:minmax(0,1fr) 300px;
            }

            .left-rail{
                display:none;
            }
        }

        @media (max-width: 1080px){
            .article-hero__main{
                grid-template-columns:1fr;
            }

            .layout{
                grid-template-columns:1fr;
            }

            .side-stack{
                position:static;
            }

            .editorial-grid,
            .footer-grid{
                grid-template-columns:1fr 1fr;
            }
        }

        @media (max-width: 760px){
            .topbar-inner{
                min-height:auto;
                padding:12px 0;
                flex-direction:column;
                align-items:flex-start;
            }

            .nav{
                width:100%;
            }

            .article-title{
                font-size:34px;
            }

            .article-lead{
                font-size:16px;
            }

            .article-inner{
                padding:18px;
            }

            .content{
                font-size:16px;
                line-height:1.85;
            }

            .content h2{
                font-size:28px;
            }

            .content h3{
                font-size:22px;
            }

            .editorial-grid,
            .footer-grid{
                grid-template-columns:1fr;
            }
        }

        @media (max-width: 560px){
            .container{
                width:min(100% - 16px, var(--container));
            }

            .article-hero__top{
                padding:16px 16px 0;
            }

            .article-hero__main{
                padding:16px;
            }

            .toc-card,
            .faq-card,
            .sources-card,
            .notice-card,
            .editorial-card,
            .side-card,
            .rail-card{
                padding:16px;
            }

            .content h2{
                font-size:25px;
            }
        }
        
        /* ===============================
   ARTICLE CONTENT SYSTEM
   =============================== */

:root{
    --article-bg:#ffffff;
    --article-surface:#ffffff;
    --article-surface-2:#fafafa;
    --article-surface-3:#f6f7f8;
    --article-line:#e7e7e7;
    --article-line-2:#efefef;
    --article-text:#111111;
    --article-text-soft:#4b5563;
    --article-muted:#6b7280;
    --article-accent:#1a73e8;
    --article-accent-soft:#eef5ff;
    --article-green:#16a34a;
    --article-green-soft:#eaf8ef;
    --article-orange:#d97706;
    --article-orange-soft:#fff4e8;
    --article-red:#dc2626;
    --article-red-soft:#fff1f1;
    --article-purple:#7c3aed;
    --article-purple-soft:#f4efff;
    --article-shadow:0 1px 2px rgba(0,0,0,.04), 0 12px 24px rgba(0,0,0,.04);
    --article-radius:18px;
    --article-radius-lg:24px;
}

/* основной контейнер с контентом */
.article-card{
    overflow:hidden;
    background:var(--article-surface);
    border:1px solid var(--article-line);
    border-radius:28px;
    box-shadow:var(--article-shadow);
}

.article-inner{
    padding:28px;
}

.content{
    color:var(--article-text);
    font-size:17px;
    line-height:1.9;
    word-wrap:break-word;
}

.content > *:first-child{
    margin-top:0 !important;
}

.content > *:last-child{
    margin-bottom:0 !important;
}

/* ===============================
   SECTION WRAPPERS
   =============================== */

.article-intro,
.article-section,
.article-takeaways,
.article-faq,
.article-warning,
.article-sources{
    margin:0 0 28px;
}

.article-intro:last-child,
.article-section:last-child,
.article-takeaways:last-child,
.article-faq:last-child,
.article-warning:last-child,
.article-sources:last-child{
    margin-bottom:0;
}

.article-block-head{
    margin-bottom:16px;
}

.article-block-head h2{
    margin:0;
    font-size:34px;
    line-height:1.08;
    letter-spacing:-.05em;
    font-weight:900;
    color:var(--article-text);
}

.article-block-head p{
    margin:10px 0 0;
    max-width:760px;
    color:var(--article-muted);
    font-size:15px;
    line-height:1.75;
}

.article-block-body{
    background:linear-gradient(180deg,#ffffff 0%,#fcfcfc 100%);
    border:1px solid var(--article-line);
    border-radius:22px;
    padding:22px;
}

/* ===============================
   TYPOGRAPHY
   =============================== */

.content h2{
    margin:40px 0 16px;
    font-size:34px;
    line-height:1.1;
    letter-spacing:-.05em;
    font-weight:900;
    color:var(--article-text);
    scroll-margin-top:100px;
}

.content h3{
    margin:28px 0 14px;
    font-size:25px;
    line-height:1.18;
    letter-spacing:-.03em;
    font-weight:800;
    color:var(--article-text);
}

.content h4{
    margin:22px 0 12px;
    font-size:20px;
    line-height:1.24;
    font-weight:800;
    color:var(--article-text);
}

.content p{
    margin:0 0 18px;
    color:#20252d;
}

.content strong{
    font-weight:800;
    color:#111;
}

.content ul,
.content ol{
    margin:0 0 22px;
    padding-left:24px;
}

.content li{
    margin:0 0 12px;
    color:#20252d;
}

.content hr{
    margin:28px 0;
    border:0;
    border-top:1px solid var(--article-line);
}

/* ссылки */
.content a{
    color:var(--article-accent);
    text-decoration:underline;
    text-decoration-thickness:1px;
    text-underline-offset:2px;
}

.content a:hover{
    color:#0f5fd4;
}

/* ===============================
   TABLES
   =============================== */

.content table{
    width:100%;
    border-collapse:collapse;
    margin:26px 0;
    border:1px solid var(--article-line);
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    display:block;
    overflow-x:auto;
}

.content thead{
    background:#fafafa;
}

.content tr{
    border-bottom:1px solid var(--article-line);
}

.content tr:last-child{
    border-bottom:0;
}

.content th,
.content td{
    padding:14px 16px;
    text-align:left;
    vertical-align:top;
    min-width:180px;
    font-size:15px;
    line-height:1.65;
}

.content th{
    font-weight:800;
    color:#111;
}

.content td{
    color:#2f3744;
}

/* ===============================
   GENERATED CALLOUTS
   =============================== */

.content .article-note,
.content .article-tip,
.content .article-danger,
.content .article-summary{
    margin:26px 0;
    padding:18px 18px 16px;
    border-radius:18px;
    border:1px solid transparent;
    position:relative;
    overflow:hidden;
}

.content .article-note::before,
.content .article-tip::before,
.content .article-danger::before,
.content .article-summary::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
}

.content .article-note{
    background:var(--article-accent-soft);
    border-color:#d6e7ff;
}

.content .article-note::before{
    background:var(--article-accent);
}

.content .article-tip{
    background:var(--article-green-soft);
    border-color:#caebd6;
}

.content .article-tip::before{
    background:var(--article-green);
}

.content .article-danger{
    background:var(--article-red-soft);
    border-color:#ffd7d7;
}

.content .article-danger::before{
    background:var(--article-red);
}

.content .article-summary{
    background:var(--article-purple-soft);
    border-color:#e0dcff;
}

.content .article-summary::before{
    background:var(--article-purple);
}

.content .article-note strong,
.content .article-tip strong,
.content .article-danger strong,
.content .article-summary strong{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    line-height:1.4;
    font-weight:800;
    color:#111;
}

.content .article-note p,
.content .article-tip p,
.content .article-danger p,
.content .article-summary p{
    margin:0;
    font-size:15px;
    line-height:1.75;
    color:#263241;
}

.content .article-emphasis{
    margin:22px 0;
    padding:0 0 0 16px;
    border-left:3px solid #111;
    color:#111;
    font-size:17px;
    line-height:1.8;
    font-weight:600;
}

.content .article-emphasis strong{
    font-weight:900;
}

.content blockquote,
.content .article-quote{
    margin:26px 0;
    padding:18px 20px;
    border-left:4px solid var(--article-purple);
    background:var(--article-purple-soft);
    border-radius:16px;
    color:#2b1f52;
    font-size:16px;
    line-height:1.8;
    font-weight:600;
}

/* ===============================
   TAKEAWAYS
   =============================== */

.article-takeaways{
    background:var(--article-surface);
    border:1px solid var(--article-line);
    border-radius:24px;
    box-shadow:var(--article-shadow);
    padding:22px;
}

.article-takeaways-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
}

.article-takeaway-card{
    position:relative;
    display:flex;
    gap:12px;
    align-items:flex-start;
    background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
    border:1px solid var(--article-line);
    border-radius:18px;
    padding:16px;
}

.article-takeaway-card__icon{
    width:28px;
    height:28px;
    border-radius:999px;
    background:#111;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:14px;
    font-weight:900;
    flex:0 0 28px;
    margin-top:1px;
}

.article-takeaway-card p{
    margin:0;
    color:#1e2937;
    font-size:15px;
    line-height:1.7;
    font-weight:600;
}

/* ===============================
   FAQ
   =============================== */

.article-faq{
    background:var(--article-surface);
    border:1px solid var(--article-line);
    border-radius:24px;
    box-shadow:var(--article-shadow);
    padding:22px;
}

.faq-list{
    display:grid;
    gap:12px;
}

.faq-item{
    background:#fafafa;
    border:1px solid var(--article-line);
    border-radius:18px;
    padding:16px;
}

.faq-item h3{
    margin:0 0 8px;
    font-size:17px;
    line-height:1.4;
    letter-spacing:-.02em;
    font-weight:800;
    color:#111;
}

.faq-item p{
    margin:0;
    color:#4b5563;
    line-height:1.75;
    font-size:15px;
}

/* ===============================
   SOURCES
   =============================== */

.article-sources{
    background:var(--article-surface);
    border:1px solid var(--article-line);
    border-radius:24px;
    box-shadow:var(--article-shadow);
    padding:22px;
}

.article-sources-list{
    display:grid;
    gap:12px;
}

.article-source-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:15px 16px;
    border-radius:18px;
    background:#fafafa;
    border:1px solid var(--article-line);
    transition:.18s ease;
}

.article-source-card:hover{
    background:#f3f4f6;
    transform:translateY(-1px);
}

.article-source-card strong{
    display:block;
    color:#111;
    font-size:15px;
    line-height:1.5;
    font-weight:700;
}

.article-source-card span{
    color:var(--article-accent);
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
}

/* ===============================
   EXTRA RICH BLOCKS
   если модель отдаст такие структуры
   =============================== */

.article-grid-2{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
    margin:24px 0;
}

.article-grid-3{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:14px;
    margin:24px 0;
}

.article-mini-card{
    background:#fafafa;
    border:1px solid var(--article-line);
    border-radius:18px;
    padding:16px;
}

.article-mini-card h3,
.article-mini-card h4{
    margin-top:0;
}

.article-checklist{
    display:grid;
    gap:10px;
    margin:24px 0;
}

.article-checklist__item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    background:#fafafa;
    border:1px solid var(--article-line);
    border-radius:16px;
    padding:14px;
}

.article-checklist__item::before{
    content:"✓";
    width:24px;
    height:24px;
    border-radius:999px;
    background:#111;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:12px;
    font-weight:900;
    flex:0 0 24px;
    margin-top:2px;
}

.article-steps{
    display:grid;
    gap:12px;
    margin:24px 0;
}

.article-step{
    position:relative;
    background:#fafafa;
    border:1px solid var(--article-line);
    border-radius:18px;
    padding:16px 16px 16px 58px;
}

.article-step::before{
    content:counter(step);
    counter-increment:step;
    position:absolute;
    left:16px;
    top:16px;
    width:30px;
    height:30px;
    border-radius:999px;
    background:#111;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:13px;
    font-weight:900;
}

.article-steps{
    counter-reset:step;
}

.article-compare{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
    margin:24px 0;
}

.article-compare__col{
    background:#fafafa;
    border:1px solid var(--article-line);
    border-radius:18px;
    padding:16px;
}

.article-compare__col h3,
.article-compare__col h4{
    margin-top:0;
}

/* ===============================
   WARNING / NOTICE SECTION
   =============================== */

.article-warning{
    background:linear-gradient(180deg,#fff9ec 0%,#fffdf7 100%);
    border:1px solid #f6e2b4;
    border-radius:24px;
    box-shadow:var(--article-shadow);
    padding:22px;
}

.article-warning .article-block-body{
    background:transparent;
    border:0;
    padding:0;
}

.article-warning p{
    color:#7a5a00;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 980px){
    .article-takeaways-grid,
    .article-grid-2,
    .article-grid-3,
    .article-compare{
        grid-template-columns:1fr;
    }
}

@media (max-width: 760px){
    .article-inner{
        padding:18px;
    }

    .content{
        font-size:16px;
        line-height:1.85;
    }

    .content h2,
    .article-block-head h2{
        font-size:28px;
    }

    .content h3{
        font-size:22px;
    }

    .article-block-body,
    .article-takeaways,
    .article-faq,
    .article-sources,
    .article-warning{
        padding:16px;
    }

    .article-source-card{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media (max-width: 560px){
    .content h2,
    .article-block-head h2{
        font-size:24px;
    }

    .content h3{
        font-size:20px;
    }

    .article-step{
        padding-left:16px;
        padding-top:56px;
    }

    .article-step::before{
        top:14px;
        left:14px;
    }
}
.article-cluster-links{
    margin-top:28px;
    display:grid;
    gap:18px;
}

.article-cluster-links__main,
.article-cluster-links__group{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:22px;
    padding:20px;
}

.article-cluster-links__main h2,
.article-cluster-links__group h2{
    margin:0 0 14px;
    font-size:22px;
    line-height:1.15;
    letter-spacing:-.03em;
}

.article-cluster-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:12px;
}

.article-cluster-card{
    display:block;
    padding:16px;
    border-radius:18px;
    background:#fafafa;
    border:1px solid #e7e7e7;
    transition:.18s ease;
}

.article-cluster-card:hover{
    background:#f3f4f6;
    transform:translateY(-1px);
}

.article-cluster-card strong{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    line-height:1.45;
    color:#111;
}

.article-cluster-card span{
    display:block;
    font-size:13px;
    color:#1a73e8;
    font-weight:700;
}

.article-cluster-card--main{
    background:#eef5ff;
    border-color:#dbe8ff;
}

@media (max-width: 760px){
    .article-cluster-grid{
        grid-template-columns:1fr;
    }
}

.article-native-ad{
    position:relative;
    margin:30px 0;
    border:1px solid #dbe8ff;
    border-radius:24px;
    overflow:hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(26,115,232,.14), transparent 30%),
        linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
    box-shadow:0 12px 28px rgba(26,115,232,.08);
}

.article-native-ad__label{
    position:absolute;
    top:14px;
    right:14px;
    z-index:3;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:26px;
    padding:0 10px;
    border-radius:999px;
    background:rgba(17,17,17,.86);
    color:#fff;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.article-native-ad__grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 220px;
    gap:18px;
    align-items:stretch;
    padding:22px;
}

.article-native-ad__content{
    min-width:0;
}

.article-native-ad__badge{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 11px;
    border-radius:999px;
    background:#111;
    color:#fff;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:12px;
}

.article-native-ad__content h3{
    margin:0 0 10px;
    font-size:28px;
    line-height:1.08;
    letter-spacing:-.04em;
    font-weight:900;
    color:#111;
}

.article-native-ad__content p{
    margin:0;
    color:#4f5b6b;
    font-size:15px;
    line-height:1.8;
}

.article-native-ad__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:16px;
    min-height:44px;
    padding:0 16px;
    border-radius:14px;
    background:linear-gradient(135deg,#111 0%,#2c2c2c 100%);
    color:#fff !important;
    text-decoration:none !important;
    font-size:13px;
    font-weight:800;
    box-shadow:0 8px 20px rgba(17,17,17,.12);
    transition:.18s ease;
}

.article-native-ad__button:hover{
    transform:translateY(-1px);
    box-shadow:0 12px 24px rgba(17,17,17,.18);
}

.article-native-ad__media{
    display:block;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #dbe8ff;
    background:#edf4ff;
    min-height:180px;
    text-decoration:none !important;
}

.article-native-ad__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media (max-width: 760px){
    .article-native-ad__grid{
        grid-template-columns:1fr;
        padding:16px;
    }

    .article-native-ad__content h3{
        font-size:23px;
    }

    .article-native-ad__media{
        min-height:160px;
    }
}
.article-best-answer{
    background:linear-gradient(180deg,#eef5ff 0%,#ffffff 100%);
    border:1px solid #dbe8ff;
    border-radius:24px;
    box-shadow:0 12px 28px rgba(26,115,232,.08);
    padding:22px;
    margin:0 0 28px;
    position:relative;
    overflow:hidden;
}

.article-best-answer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:#1a73e8;
}

.article-best-answer .article-block-head h2{
    font-size:30px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-.04em;
    margin:0;
}

.article-best-answer .article-block-head p{
    margin-top:8px;
    font-size:14px;
    color:#5b6472;
}

.article-best-answer .article-block-body{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:18px;
    padding:18px;
    margin-top:14px;
}

.article-best-answer p{
    margin:0 0 14px;
    font-size:16px;
    line-height:1.8;
    font-weight:600;
    color:#1a1f27;
}

.article-best-answer ul{
    margin:0;
    padding-left:20px;
}

.article-best-answer li{
    margin:0 0 10px;
    font-size:15px;
    line-height:1.7;
}
.article-definition{
    background:#ffffff;
    border:1px solid #e7e7e7;
    border-radius:24px;
    box-shadow:0 8px 22px rgba(0,0,0,.04);
    padding:22px;
    margin:0 0 28px;
}

.article-definition .article-block-head h2{
    font-size:28px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-.04em;
    margin:0;
}

.article-definition .article-block-head p{
    margin-top:8px;
    font-size:14px;
    color:#6b7280;
}

.article-definition .article-block-body{
    margin-top:14px;
}

.article-definition p{
    margin:0;
    font-size:16px;
    line-height:1.85;
    color:#20252d;
}

.article-definition strong{
    font-weight:800;
    color:#111;
}
/* ===============================
   SNIPPET / SEO BLOCKS
   =============================== */

.article-best-answer{
    background:linear-gradient(180deg,#eef5ff 0%,#ffffff 100%);
    border:1px solid #dbe8ff;
    border-radius:24px;
    box-shadow:0 12px 28px rgba(26,115,232,.08);
    padding:22px;
    margin:0 0 28px;
    position:relative;
    overflow:hidden;
}

.article-best-answer::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:4px;
    background:#1a73e8;
}

.article-definition{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:24px;
    box-shadow:0 8px 22px rgba(0,0,0,.04);
    padding:22px;
    margin:0 0 28px;
}

/* ===============================
   QUICK STEPS
   =============================== */

.article-quick-steps{
    background:linear-gradient(180deg,#f4efff 0%,#ffffff 100%);
    border:1px solid #e0dcff;
    border-radius:24px;
    box-shadow:0 10px 24px rgba(124,58,237,.08);
    padding:22px;
    margin:0 0 28px;
}

.article-steps-list{
    counter-reset:quick-step;
    list-style:none;
    margin:14px 0 0;
    padding:0;
    display:grid;
    gap:12px;
}

.article-steps-list li{
    position:relative;
    min-height:54px;
    padding:15px 16px 15px 58px;
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:18px;
    font-size:15px;
    line-height:1.7;
    color:#20252d;
    font-weight:600;
}

.article-steps-list li::before{
    counter-increment:quick-step;
    content:counter(quick-step);
    position:absolute;
    left:16px;
    top:15px;
    width:30px;
    height:30px;
    border-radius:999px;
    background:#111;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:13px;
    font-weight:900;
}

/* ===============================
   HOWTO
   =============================== */

.article-howto{
    background:linear-gradient(180deg,#f4efff 0%,#ffffff 100%);
    border:1px solid #e0dcff;
    border-radius:24px;
    box-shadow:0 10px 24px rgba(124,58,237,.08);
    padding:22px;
    margin:0 0 28px;
}

.article-steps{
    counter-reset:step;
    display:grid;
    gap:12px;
    margin-top:14px;
}

.article-step{
    position:relative;
    padding:16px 16px 16px 58px;
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:18px;
}

.article-step::before{
    counter-increment:step;
    content:counter(step);
    position:absolute;
    left:16px;
    top:16px;
    width:30px;
    height:30px;
    border-radius:999px;
    background:#111;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:13px;
    font-weight:900;
}

.article-step p{
    margin:0;
    font-size:15px;
    line-height:1.75;
    color:#20252d;
    font-weight:600;
}

/* ===============================
   SYMPTOMS GRID
   =============================== */

.article-symptoms{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:24px;
    box-shadow:0 8px 22px rgba(0,0,0,.04);
    padding:22px;
    margin:0 0 28px;
}

.article-symptoms-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-top:14px;
}

.article-symptom-card{
    background:#fafafa;
    border:1px solid #e7e7e7;
    border-radius:18px;
    padding:15px 16px;
    position:relative;
    overflow:hidden;
}

.article-symptom-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#1a73e8;
}

.article-symptom-card strong{
    display:block;
    margin-bottom:7px;
    font-size:15px;
    line-height:1.35;
    font-weight:900;
    color:#111;
}

.article-symptom-card span{
    display:block;
    font-size:14px;
    line-height:1.7;
    color:#4b5563;
}

/* ===============================
   STRONG WARNING
   =============================== */

.article-warning-strong{
    background:linear-gradient(180deg,#fff1f1 0%,#ffffff 100%);
    border:1px solid #ffd7d7;
    border-radius:24px;
    box-shadow:0 10px 22px rgba(220,38,38,.08);
    padding:22px;
    margin:0 0 28px;
    position:relative;
    overflow:hidden;
}

.article-warning-strong::before{
    content:"!";
    position:absolute;
    top:16px;
    right:16px;
    width:32px;
    height:32px;
    border-radius:999px;
    background:#dc2626;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:16px;
    font-weight:900;
}

.article-warning-strong h3{
    margin:0 48px 12px 0;
    font-size:24px;
    line-height:1.15;
    letter-spacing:-.03em;
    font-weight:900;
    color:#111;
}

.article-warning-strong p{
    margin:0 0 12px;
    font-size:15px;
    line-height:1.8;
    color:#7a1f1f;
    font-weight:600;
}

.article-warning-strong ul,
.article-warning-strong ol{
    margin:12px 0 0;
    padding-left:22px;
}

.article-warning-strong li{
    margin:0 0 8px;
    font-size:15px;
    line-height:1.7;
    color:#7a1f1f;
    font-weight:600;
}

/* ===============================
   SHARED NEW BLOCK HEAD FIX
   =============================== */

.article-best-answer .article-block-head,
.article-definition .article-block-head,
.article-quick-steps .article-block-head,
.article-howto .article-block-head,
.article-symptoms .article-block-head{
    margin-bottom:14px;
}

.article-best-answer .article-block-head h2,
.article-definition .article-block-head h2,
.article-quick-steps .article-block-head h2,
.article-howto .article-block-head h2,
.article-symptoms .article-block-head h2{
    margin:0;
    font-size:30px;
    line-height:1.1;
    letter-spacing:-.04em;
    font-weight:900;
    color:#111;
}

.article-best-answer .article-block-head p,
.article-definition .article-block-head p,
.article-quick-steps .article-block-head p,
.article-howto .article-block-head p,
.article-symptoms .article-block-head p{
    margin:8px 0 0;
    max-width:760px;
    font-size:14px;
    line-height:1.7;
    color:#6b7280;
}

.article-best-answer .article-block-body,
.article-definition .article-block-body{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:18px;
    padding:18px;
    margin-top:14px;
}

.article-best-answer .article-block-body p,
.article-definition .article-block-body p{
    margin:0 0 14px;
    font-size:16px;
    line-height:1.85;
    color:#20252d;
}

.article-best-answer .article-block-body p:last-child,
.article-definition .article-block-body p:last-child{
    margin-bottom:0;
}

.article-best-answer .article-block-body ul,
.article-definition .article-block-body ul{
    margin:0;
    padding-left:22px;
}

.article-best-answer .article-block-body li,
.article-definition .article-block-body li{
    margin:0 0 10px;
    font-size:15px;
    line-height:1.7;
    color:#20252d;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width:760px){
    .article-best-answer,
    .article-definition,
    .article-quick-steps,
    .article-howto,
    .article-symptoms,
    .article-warning-strong{
        padding:16px;
        border-radius:20px;
        margin-bottom:20px;
    }

    .article-best-answer .article-block-head h2,
    .article-definition .article-block-head h2,
    .article-quick-steps .article-block-head h2,
    .article-howto .article-block-head h2,
    .article-symptoms .article-block-head h2{
        font-size:24px;
    }

    .article-symptoms-grid{
        grid-template-columns:1fr;
    }

    .article-steps-list li,
    .article-step{
        padding-left:52px;
    }

    .article-warning-strong h3{
        font-size:21px;
    }
}
/* ===============================
   EMERGENCY CONTACT BLOCK
================================ */

.article-emergency{
    margin:0 0 28px;
}

.article-emergency__inner{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
    padding:20px;
}

.article-emergency__inner::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:4px;
    background:var(--red);
}

.article-emergency__head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:14px;
}

.article-emergency__title{
    margin:0;
    font-size:22px;
    line-height:1.15;
    letter-spacing:-.03em;
    font-weight:900;
    color:var(--text);
}

.article-emergency__text{
    margin:7px 0 0;
    max-width:760px;
    color:var(--muted);
    font-size:14px;
    line-height:1.65;
}

.article-emergency__badge{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:0 11px;
    border-radius:999px;
    background:var(--red-soft);
    border:1px solid #ffd7d7;
    color:var(--red);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.article-emergency__grid{
    display:grid;
    grid-template-columns:1.1fr .9fr 1.1fr;
    gap:12px;
}

.article-emergency__card{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:78px;
    padding:14px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--line);
}

.article-emergency__card--main{
    background:linear-gradient(180deg,#fff5f5 0%,#ffffff 100%);
    border-color:#ffd7d7;
}

.article-emergency__card--blue{
    background:linear-gradient(180deg,#eef5ff 0%,#ffffff 100%);
    border-color:#d9e8ff;
}

.article-emergency__number{
    flex:0 0 58px;
    width:58px;
    height:58px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:#111;
    color:#fff;
    font-size:25px;
    line-height:1;
    font-weight:900;
    letter-spacing:-.04em;
}

.article-emergency__card--main .article-emergency__number{
    background:var(--red);
}

.article-emergency__card--blue .article-emergency__number{
    background:var(--accent);
}

.article-emergency__info{
    min-width:0;
}

.article-emergency__info strong{
    display:block;
    margin-bottom:4px;
    color:var(--text);
    font-size:14px;
    line-height:1.25;
    font-weight:900;
}

.article-emergency__info span{
    display:block;
    color:var(--muted);
    font-size:12px;
    line-height:1.45;
    font-weight:600;
}

.article-emergency__note{
    margin-top:12px;
    padding:12px 14px;
    border-radius:16px;
    background:var(--surface-3);
    border:1px solid var(--line);
    color:#4b5563;
    font-size:13px;
    line-height:1.65;
    font-weight:600;
}

.article-emergency__note strong{
    color:var(--text);
    font-weight:900;
}

@media (max-width:980px){
    .article-emergency__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:560px){
    .article-emergency__inner{
        padding:16px;
        border-radius:20px;
    }

    .article-emergency__head{
        flex-direction:column;
        gap:10px;
    }

    .article-emergency__card{
        min-height:auto;
    }

    .article-emergency__number{
        width:52px;
        height:52px;
        flex-basis:52px;
        border-radius:16px;
        font-size:22px;
    }
}
.article-emergency__inner{
    padding:16px 18px;
}

.article-emergency__title{
    font-size:19px;
}

.article-emergency__text{
    max-width:680px;
    font-size:13px;
    line-height:1.55;
}

.article-emergency__card{
    min-height:68px;
    padding:12px;
}

.article-emergency__number{
    width:48px;
    height:48px;
    flex-basis:48px;
    font-size:22px;
    border-radius:15px;
}

.article-emergency__note{
    padding:10px 12px;
    font-size:12px;
}
.editorial-card--pro{
    padding:22px;
    overflow:hidden;
    position:relative;
    background:
        radial-gradient(circle at 100% 0%, rgba(26,115,232,.10), transparent 34%),
        linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
    border:1px solid #dbe8ff;
}

.editorial-card--pro::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:4px;
    background:var(--accent);
}

.editorial-card__top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:16px;
}

.editorial-kicker{
    display:inline-flex;
    margin-bottom:8px;
    color:var(--accent);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.editorial-card--pro h3{
    margin:0;
    font-size:24px;
    line-height:1.12;
    letter-spacing:-.04em;
    font-weight:900;
}

.editorial-status{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 11px;
    border-radius:999px;
    background:var(--green-soft);
    border:1px solid #caebd6;
    color:var(--green);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.editorial-pro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.editorial-person{
    display:flex;
    gap:14px;
    align-items:flex-start;
    padding:16px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--line);
}

.editorial-avatar{
    flex:0 0 48px;
    width:48px;
    height:48px;
    border-radius:16px;
    background:#111;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:18px;
    font-weight:900;
}

.editorial-avatar--doctor{
    background:var(--accent);
    font-size:24px;
}

.editorial-person .editorial-label{
    display:block;
    margin-bottom:4px;
    color:var(--muted);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.editorial-person strong{
    display:block;
    color:var(--text);
    font-size:17px;
    line-height:1.3;
    font-weight:900;
}

.editorial-person p{
    margin:6px 0 0;
    color:var(--muted);
    font-size:13px;
    line-height:1.55;
}

.editorial-note{
    margin-top:12px;
    padding:13px 14px;
    border-radius:16px;
    background:#fff;
    border:1px solid var(--line);
    color:#4b5563;
    font-size:13px;
    line-height:1.7;
    font-weight:600;
}

@media (max-width:760px){
    .editorial-pro-grid{
        grid-template-columns:1fr;
    }

    .editorial-card__top{
        flex-direction:column;
    }
}
.editorial-meta{
    display:flex;
    flex-direction:column;
}

.editorial-role{
    display:block;
    margin-bottom:6px;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:var(--muted);
}

.editorial-extra{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    align-items:center;
    margin-top:6px;
    font-size:13px;
    color:#374151;
    font-weight:600;
}

.editorial-extra span:nth-child(2){
    color:#c0c4cc;
}

.editorial-person--doctor{
    background:linear-gradient(180deg,#eef5ff 0%,#ffffff 100%);
    border-color:#dbe8ff;
}

.editorial-person--doctor strong{
    color:#0f172a;
}
/* ===============================
   ACCESSIBILITY PRO PANEL
================================ */

.a11y-open{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 14px;
    border-radius:12px;
    border:1px solid var(--line);
    background:#fff;
    color:#111;
    font-family:inherit;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
    transition:.16s ease;
}

.a11y-open:hover{
    background:#f3f4f6;
}

.a11y-panel{
    position:fixed;
    top:78px;
    right:18px;
    z-index:9999;
    width:min(360px, calc(100vw - 24px));
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:0 18px 44px rgba(0,0,0,.14);
    padding:16px;
}

.a11y-panel__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:14px;
}

.a11y-panel__head strong{
    font-size:17px;
    font-weight:900;
    letter-spacing:-.03em;
}

.a11y-panel__head button{
    width:34px;
    height:34px;
    border:0;
    border-radius:12px;
    background:#f3f4f6;
    font-size:22px;
    line-height:1;
    cursor:pointer;
}

.a11y-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.a11y-options button{
    min-height:42px;
    padding:0 12px;
    border-radius:13px;
    border:1px solid var(--line);
    background:#fafafa;
    color:#111;
    font-family:inherit;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
    transition:.16s ease;
}

.a11y-options button:hover,
.a11y-options button.is-active{
    background:#111;
    color:#fff;
    border-color:#111;
}

.a11y-options .a11y-reset{
    grid-column:1 / -1;
    background:#fff1f1;
    border-color:#ffd7d7;
    color:#dc2626;
}

.a11y-options .a11y-reset:hover{
    background:#dc2626;
    color:#fff;
}

/* ===============================
   ACTIVE ACCESSIBILITY MODES
================================ */

html.a11y-font-large body{
    font-size:18px;
}

html.a11y-font-large .content,
html.a11y-font-large .content p,
html.a11y-font-large .content li,
html.a11y-font-large .article-lead{
    font-size:19px;
    line-height:2;
}

html.a11y-font-xlarge body{
    font-size:20px;
}

html.a11y-font-xlarge .content,
html.a11y-font-xlarge .content p,
html.a11y-font-xlarge .content li,
html.a11y-font-xlarge .article-lead{
    font-size:22px;
    line-height:2.1;
}

html.a11y-font-large .article-title{
    font-size:clamp(40px,5vw,68px);
}

html.a11y-font-xlarge .article-title{
    font-size:clamp(44px,5.5vw,76px);
}

html.a11y-spacing-wide body{
    letter-spacing:.035em;
}

html.a11y-spacing-wide .content,
html.a11y-spacing-wide p,
html.a11y-spacing-wide li{
    line-height:2.15;
}

html.a11y-theme-light body{
    --bg:#ffffff;
    --surface:#ffffff;
    --surface-2:#ffffff;
    --surface-3:#ffffff;
    --text:#000000;
    --muted:#1f2937;
    --line:#111111;
}

html.a11y-theme-dark body{
    --bg:#000000;
    --surface:#111111;
    --surface-2:#161616;
    --surface-3:#1d1d1d;
    --text:#ffffff;
    --muted:#e5e7eb;
    --line:#ffffff;
    background:#000;
    color:#fff;
}

html.a11y-theme-dark .card,
html.a11y-theme-dark .article-hero__card,
html.a11y-theme-dark .article-block-body,
html.a11y-theme-dark .topbar,
html.a11y-theme-dark .side-link,
html.a11y-theme-dark .faq-item,
html.a11y-theme-dark .article-source-card,
html.a11y-theme-dark .article-emergency__inner,
html.a11y-theme-dark .editorial-card--pro{
    background:#111 !important;
    color:#fff !important;
    border-color:#fff !important;
}

html.a11y-theme-dark p,
html.a11y-theme-dark span,
html.a11y-theme-dark li,
html.a11y-theme-dark .article-lead,
html.a11y-theme-dark .breadcrumbs,
html.a11y-theme-dark .side-link p{
    color:#e5e7eb !important;
}

html.a11y-theme-contrast body{
    --bg:#000000;
    --surface:#000000;
    --surface-2:#000000;
    --surface-3:#000000;
    --text:#ffff00;
    --muted:#ffff00;
    --line:#ffff00;
    background:#000;
    color:#ffff00;
}

html.a11y-theme-contrast *{
    box-shadow:none !important;
}

html.a11y-theme-contrast .card,
html.a11y-theme-contrast .article-hero__card,
html.a11y-theme-contrast .article-block-body,
html.a11y-theme-contrast .topbar,
html.a11y-theme-contrast .side-link,
html.a11y-theme-contrast .faq-item,
html.a11y-theme-contrast .article-source-card,
html.a11y-theme-contrast .article-emergency__inner,
html.a11y-theme-contrast .editorial-card--pro{
    background:#000 !important;
    color:#ffff00 !important;
    border:2px solid #ffff00 !important;
}

html.a11y-theme-contrast a,
html.a11y-theme-contrast p,
html.a11y-theme-contrast span,
html.a11y-theme-contrast li,
html.a11y-theme-contrast strong,
html.a11y-theme-contrast h1,
html.a11y-theme-contrast h2,
html.a11y-theme-contrast h3{
    color:#ffff00 !important;
}

html.a11y-theme-contrast a{
    text-decoration:underline !important;
}

html.a11y-images-off img,
html.a11y-images-off picture,
html.a11y-images-off video{
    display:none !important;
}

html.a11y-font-large *,
html.a11y-font-xlarge *,
html.a11y-theme-light *,
html.a11y-theme-dark *,
html.a11y-theme-contrast *{
    text-shadow:none !important;
}

@media (max-width:760px){
    .a11y-panel{
        top:12px;
        right:12px;
        left:12px;
        width:auto;
    }

    .a11y-options{
        grid-template-columns:1fr;
    }
}
.article-pdf-pro{
    margin:32px 0 0;
}

.article-pdf-pro__inner{
    display:grid;
    grid-template-columns:64px minmax(0,1fr) auto;
    gap:18px;
    align-items:center;
    padding:22px;
    border-radius:24px;
    border:1px solid #dbe8ff;
    background:
        radial-gradient(circle at 0 0, rgba(26,115,232,.12), transparent 34%),
        linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
    box-shadow:0 12px 28px rgba(26,115,232,.08);
}

.article-pdf-pro__icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#111;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:15px;
    font-weight:900;
    letter-spacing:.04em;
}

.article-pdf-pro__content span{
    display:block;
    margin-bottom:5px;
    color:#1a73e8;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.article-pdf-pro__content h3{
    margin:0 0 6px;
    font-size:24px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:-.04em;
}

.article-pdf-pro__content p{
    margin:0;
    color:#4b5563;
    font-size:14px;
    line-height:1.65;
}

.article-pdf-pro__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border-radius:14px;
    background:#111;
    color:#fff !important;
    font-size:13px;
    font-weight:900;
    text-decoration:none !important;
    transition:.18s ease;
}

.article-pdf-pro__button:hover{
    transform:translateY(-1px);
    box-shadow:0 12px 24px rgba(17,17,17,.18);
}

@media(max-width:760px){
    .article-pdf-pro__inner{
        grid-template-columns:1fr;
    }

    .article-pdf-pro__button{
        width:100%;
    }
}