:root {
            --article-orange: #ff6600;
            --article-ink: #17191d;
            --article-muted: rgba(23, 25, 29, 0.62);
            --article-line: rgba(20, 24, 30, 0.1);
            --article-bg: #f3f5f7;
            --article-card: #ffffff;
        }

        body.article-page {
            margin: 0;
            background: var(--article-bg);
            color: var(--article-ink);
        }

        .article-page-main {
            overflow-x: hidden;
            background:
                radial-gradient(circle at 78% 8%, rgba(255, 102, 0, 0.1), transparent 34%),
                linear-gradient(180deg, #fff 0%, var(--article-bg) 420px);
        }

        .article-shell {
            width: min(1180px, calc(100% - 48px));
            margin: 0 auto;
        }

        .article-hero {
            padding: 124px 0 48px;
        }

        .article-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--article-orange);
            font-size: 12px;
            font-weight: 760;
            letter-spacing: 0.18em;
        }

        .article-kicker::before {
            content: "";
            width: 38px;
            height: 1px;
            background: currentColor;
        }

        .article-hero h1 {
            max-width: 860px;
            margin: 22px 0 0;
            font-size: clamp(34px, 4.4vw, 58px);
            line-height: 1.12;
            font-weight: 780;
            letter-spacing: 0.02em;
        }

        .article-hero p {
            max-width: 760px;
            margin: 22px 0 0;
            color: var(--article-muted);
            font-size: 16px;
            line-height: 1.9;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 28px;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
            padding: 0 12px;
            border: 1px solid rgba(20, 24, 30, 0.08);
            border-radius: 4px;
            color: rgba(23, 25, 29, 0.7);
            background: rgba(255, 255, 255, 0.72);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        .article-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 330px;
            gap: 34px;
            align-items: start;
            padding: 0 0 86px;
        }

        .article-card {
            border: 1px solid var(--article-line);
            border-radius: 8px;
            background: var(--article-card);
            box-shadow: 0 22px 58px rgba(20, 24, 32, 0.08);
        }

        .article-content-card {
            padding: clamp(28px, 4vw, 52px);
        }

        .article-body {
            color: rgba(23, 25, 29, 0.76);
            font-size: 16px;
            line-height: 1.9;
        }

        .article-body h2,
        .article-body h3,
        .article-body h4 {
            color: var(--article-ink);
            line-height: 1.28;
            font-weight: 760;
            letter-spacing: 0.02em;
        }

        .article-body h2 {
            margin: 42px 0 18px;
            font-size: clamp(26px, 2.4vw, 34px);
        }

        .article-body h3 {
            margin: 34px 0 14px;
            font-size: clamp(21px, 1.9vw, 26px);
        }

        .article-body h4 {
            margin: 26px 0 12px;
            font-size: 18px;
        }

        .article-body p {
            margin: 0 0 18px;
            color: rgba(23, 25, 29, 0.7);
        }

        .article-body strong {
            color: var(--article-ink);
            font-weight: 760;
        }

        .article-body em {
            color: rgba(23, 25, 29, 0.78);
            font-style: italic;
        }

        .article-body a {
            color: var(--article-orange);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 102, 0, 0.32);
        }

        .article-body a:hover {
            border-bottom-color: var(--article-orange);
        }

        .article-body ul,
        .article-body ol {
            margin: 0 0 22px;
            padding-left: 1.35em;
            color: rgba(23, 25, 29, 0.7);
        }

        .article-body li {
            margin: 8px 0;
            padding-left: 4px;
        }

        .article-body blockquote {
            margin: 28px 0;
            padding: 20px 24px;
            border-left: 3px solid var(--article-orange);
            border-radius: 0 8px 8px 0;
            background: rgba(255, 102, 0, 0.06);
            color: rgba(23, 25, 29, 0.72);
        }

        .article-body img {
            display: block;
            width: 100%;
            height: auto;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 18px 42px rgba(20, 24, 32, 0.12);
        }

        .article-body hr {
            height: 1px;
            margin: 38px 0;
            border: 0;
            background: var(--article-line);
        }

        .article-body table {
            width: 100%;
            margin: 26px 0 34px;
            border-collapse: separate;
            border-spacing: 0;
            overflow: hidden;
            border: 1px solid rgba(20, 24, 30, 0.1);
            border-radius: 8px;
            font-size: 14px;
            line-height: 1.75;
        }

        .article-body th,
        .article-body td {
            padding: 15px 16px;
            border-right: 1px solid rgba(20, 24, 30, 0.08);
            border-bottom: 1px solid rgba(20, 24, 30, 0.08);
            vertical-align: top;
            text-align: left;
        }

        .article-body th {
            color: #fff;
            background: #1d222a;
            font-weight: 720;
            white-space: nowrap;
        }

        .article-body td {
            color: rgba(23, 25, 29, 0.72);
            background: #fff;
        }

        .article-body tr:nth-child(even) td {
            background: #f8fafc;
        }

        .article-body th:last-child,
        .article-body td:last-child {
            border-right: 0;
        }

        .article-body tr:last-child td {
            border-bottom: 0;
        }

        .article-related {
            margin-top: 42px;
        }

        .article-related h2 {
            margin: 0 0 16px;
            color: var(--article-ink);
            font-size: 22px;
            line-height: 1.3;
            font-weight: 760;
        }

        .article-related ul {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .article-related a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            min-height: 48px;
            padding: 0 16px;
            border: 1px solid rgba(20, 24, 30, 0.08);
            border-radius: 6px;
            color: rgba(23, 25, 29, 0.76);
            background: rgba(23, 25, 29, 0.025);
            font-size: 14px;
            font-weight: 650;
            text-decoration: none;
            transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .article-related a::after {
            content: "›";
            color: var(--article-orange);
            font-size: 20px;
        }

        .article-related a:hover {
            transform: translateY(-1px);
            color: var(--article-orange);
            border-color: rgba(255, 102, 0, 0.26);
            background: rgba(255, 102, 0, 0.06);
        }

        .article-sidebar {
            position: sticky;
            top: 88px;
            display: grid;
            gap: 18px;
        }

        .sidebar-panel {
            padding: 22px;
        }

        .sidebar-title {
            margin: 0 0 16px;
            color: var(--article-ink);
            font-size: 16px;
            line-height: 1.3;
            font-weight: 780;
            letter-spacing: 0.04em;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-list a {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
            padding: 0 11px;
            border: 1px solid rgba(255, 102, 0, 0.16);
            border-radius: 4px;
            color: var(--article-orange);
            background: rgba(255, 102, 0, 0.07);
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
        }

        .news-list {
            display: grid;
            gap: 16px;
        }

        .news-item {
            display: grid;
            gap: 8px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(20, 24, 30, 0.08);
        }

        .news-item:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .news-meta {
            display: flex;
            gap: 8px;
            align-items: center;
            color: rgba(23, 25, 29, 0.46);
            font-size: 11px;
            font-weight: 720;
            letter-spacing: 0.08em;
        }

        .news-type {
            color: var(--article-orange);
        }

        .news-item h3 {
            margin: 0;
            color: var(--article-ink);
            font-size: 15px;
            line-height: 1.45;
            font-weight: 760;
        }

        .news-item p {
            margin: 0;
            color: rgba(23, 25, 29, 0.58);
            font-size: 13px;
            line-height: 1.7;
        }

        .news-more {
            display: inline-flex;
            align-items: center;
            justify-self: end;
            gap: 6px;
            color: var(--article-orange);
            font-size: 12px;
            font-weight: 760;
            text-decoration: none;
        }

        .social-grid {
            display: grid;
            gap: 8px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 12px;
            min-height: 46px;
            padding: 0 12px;
            border: 1px solid rgba(20, 24, 30, 0.08);
            border-radius: 6px;
            color: rgba(23, 25, 29, 0.74);
            background: rgba(23, 25, 29, 0.025);
            font-size: 13px;
            font-weight: 760;
            text-decoration: none;
            transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .social-link svg {
            width: 21px;
            height: 21px;
            flex: 0 0 auto;
            color: var(--article-orange);
        }

        .social-link:hover {
            transform: translateY(-2px);
            color: var(--article-orange);
            border-color: rgba(255, 102, 0, 0.26);
            background: rgba(255, 102, 0, 0.06);
        }

        .article-page #site-cta {
            position: relative;
            z-index: 2;
        }

        .article-page #section-footer {
            margin-top: 0;
        }

        @media (max-width: 1020px) {
            .article-layout {
                grid-template-columns: 1fr;
            }

            .article-sidebar {
                position: static;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .article-sidebar .sidebar-panel:nth-child(2) {
                grid-row: span 2;
            }
        }

        @media (max-width: 720px) {
            .article-shell {
                width: min(100% - 32px, 1180px);
            }

            .article-hero {
                padding: 104px 0 36px;
            }

            .article-layout {
                padding-bottom: 66px;
            }

            .article-content-card,
            .sidebar-panel {
                padding: 22px;
            }

            .article-sidebar {
                grid-template-columns: 1fr;
            }

            .article-body {
                font-size: 15px;
            }

            .article-body table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }

            .article-body th,
            .article-body td {
                min-width: 160px;
                white-space: normal;
            }
        }


#section-footer .footer-layout-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}
#section-footer .footer-main,
#section-footer .footer-bottom,
#section-footer .footer-copyright {
    position: relative;
    z-index: 1;
}
#section-footer .footer-divider {
    margin-top: clamp(24px, 3vh, 36px);
    margin-bottom: clamp(16px, 2vh, 24px);
}
#section-footer .footer-bottom {
    margin-bottom: clamp(12px, 2vh, 24px);
}

#section-footer .footer-layout-shell {
    justify-content: flex-start;
    padding-top: clamp(350px, 28vh, 350px);
    padding-bottom: clamp(28px, 4vh, 44px);
}
#section-footer.fullscreen-section {
    min-height: auto !important;
    height: auto !important;
    position: relative;
    z-index: 1;
}
#section-footer .footer-main {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}
#section-footer .footer-logo-wrap {
    display: flex;
    align-items: center;
}
#section-footer .footer-logo {
    height: clamp(34px, 3.2vw, 42px);
    width: auto;
    display: block;
}
#section-footer .footer-brand .section-lead {
    margin: 18px 0 0;
    text-align: left;
    color: rgba(255,255,255,0.58);
    line-height: 1.8;
    max-width: 420px;
}
#section-footer .footer-contact-form {
    margin-top: 18px;
    max-width: 420px;
    display: grid;
    gap: 10px;
}
#section-footer .footer-contact-form input,
#section-footer .footer-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.32);
    color: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
}
#section-footer .footer-contact-form textarea { resize: vertical; min-height: 64px; }
#section-footer .footer-contact-form button {
    width: 124px;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #ff6a00;
    cursor: pointer;
}
#section-footer .footer-nav .footer-columns {
    display: grid;
    grid-template-columns: repeat(5, minmax(90px, 1fr));
    gap: clamp(20px, 2.5vw, 48px);
    justify-content: start;
}
@media (max-width: 1024px) {
    #section-footer .footer-layout-shell {
        padding-top: clamp(160px, 18vh, 210px);
    }
    #section-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    #section-footer .footer-contact-form {
        max-width: 100%;
    }
    #section-footer .footer-nav .footer-columns {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}
@media (max-width: 768px) {
    #section-footer .footer-layout-shell {
        padding-top: 72px;
    }
}
