    .blog-detail-page {
        --blog-ink: var(--rp-green-950);
        --blog-muted: rgba(97, 112, 109, 0.96);
        --blog-surface: rgba(255, 253, 248, 0.96);
        --blog-border: rgba(13, 75, 68, 0.11);
        --blog-gold-soft: rgba(216, 193, 141, 0.2);
        --blog-card-shadow: 0 30px 80px rgba(8, 37, 31, 0.12);
    }

    .is-hidden {
        display: none;
    }
    .blog-detail-page .bg-soft-blue {
        position: relative;
        overflow: hidden;
        padding-top: clamp(52px, 6vw, 86px) !important;
        padding-bottom: clamp(64px, 7vw, 104px) !important;
        background:
            radial-gradient(circle at 10% 4%, rgba(216, 193, 141, 0.16), transparent 26%),
            radial-gradient(circle at 94% 18%, rgba(13, 91, 86, 0.1), transparent 24%),
            linear-gradient(180deg, #fbfaf3 0%, #f4f8f3 46%, #eef6f1 100%) !important;
    }
    .blog-detail-page .bg-soft-blue::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(13, 75, 68, 0.035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(13, 75, 68, 0.025) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
    }
    .blog-detail-page .bg-soft-blue > .container {
        position: relative;
        z-index: 1;
        max-width: min(1540px, calc(100% - 40px));
    }
    .blog-detail-page .page-hero {
        min-height: clamp(280px, 28vw, 380px) !important;
    }
    .blog-detail-page .page-hero .container {
        padding-top: clamp(42px, 5vw, 58px) !important;
        padding-bottom: clamp(42px, 5vw, 58px) !important;
    }
    .blog-detail-page .page-hero-content {
        max-width: 1080px !important;
    }
    .blog-detail-page .page-hero .hero-badge {
        margin-bottom: 14px !important;
    }
    .blog-detail-page .page-hero .hero-title {
        max-width: 30ch !important;
        font-size: clamp(2.15rem, 3.2vw, 3.75rem) !important;
        line-height: 1.04 !important;
        margin-bottom: 0 !important;
    }
    .meta-separator {
        display: inline-block;
        margin: 0 6px;
        color: #94a3b8;
    }
    .blog-article { max-width: 100%; margin: 0 auto; }
    .blog-article img { border-radius: 12px; margin-bottom: 24px; }
    .blog-article .meta {
        display: none;
    }
    .blog-article .content {
        line-height: 1.88;
        color: rgba(16, 43, 40, 0.86);
        font-size: clamp(16.5px, 1vw, 18px);
        word-break: break-word;
        letter-spacing: 0;
    }
    .blog-article .content p,
    .blog-article .content ul,
    .blog-article .content ol,
    .blog-article .content blockquote { margin-bottom: 18px; }
    .blog-article .content h2,
    .blog-article .content h3,
    .blog-article .content h4 {
        color: var(--blog-ink);
        font-family: var(--rp-font-heading);
        line-height: 1.12;
        font-weight: 800;
        letter-spacing: 0;
    }
    .blog-article .content h2 {
        position: relative;
        margin-top: 42px;
        margin-bottom: 18px;
        padding-top: 18px;
        font-size: clamp(29px, 3vw, 42px);
    }
    .blog-article .content h2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 58px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--rp-green-800), var(--rp-gold));
    }
    .blog-article .content h3 {
        margin-top: 32px;
        margin-bottom: 14px;
        font-size: clamp(22px, 2.2vw, 30px);
    }
    .blog-article .content h4 {
        margin-top: 22px;
        margin-bottom: 12px;
        font-size: 20px;
    }
    .blog-article .content strong { color: var(--blog-ink); font-weight: 800; }
    .blog-article .content a {
        color: var(--rp-green-800);
        text-decoration: underline;
        text-underline-offset: 3px;
        font-weight: 700;
    }
    .blog-article .content ul,
    .blog-article .content ol { padding-left: 1.35rem; }
    .blog-article .content li {
        margin-bottom: 9px;
        padding-left: 6px;
    }
    .blog-article .content li::marker {
        color: var(--rp-gold);
        font-weight: 800;
    }
    .blog-article .content figure {
        margin: 34px 0;
        padding: clamp(12px, 2vw, 18px);
        border: 1px solid rgba(13, 75, 68, 0.1);
        border-radius: 22px;
        background:
            radial-gradient(circle at top right, rgba(216, 193, 141, 0.16), transparent 30%),
            rgba(255, 253, 248, 0.88);
        box-shadow: 0 18px 48px rgba(8, 37, 31, 0.08);
    }
    .blog-article .content figure img,
    .blog-article .content > img {
        display: block;
        width: 100%;
        max-height: 470px;
        object-fit: contain;
        object-position: center;
        margin: 0 auto;
        border-radius: 16px;
        background: #eef6f1;
    }
    .blog-article .content table {
        display: block;
        width: 100%;
        min-width: min(760px, 100%);
        margin: 28px 0;
        overflow-x: auto;
        border-collapse: separate;
        border-spacing: 0;
        border: 1px solid rgba(13, 75, 68, 0.14);
        border-radius: 18px;
        background: #fffdf8;
        box-shadow: 0 18px 42px rgba(8, 37, 31, 0.07);
    }
    .blog-article .content tbody {
        display: table;
        width: 100%;
        min-width: 760px;
    }
    .blog-article .content th,
    .blog-article .content td {
        padding: 15px 16px;
        border-right: 1px solid rgba(13, 75, 68, 0.1);
        border-bottom: 1px solid rgba(13, 75, 68, 0.1);
        vertical-align: top;
        color: rgba(16, 43, 40, 0.86);
        line-height: 1.55;
    }
    .blog-article .content th:last-child,
    .blog-article .content td:last-child {
        border-right: 0;
    }
    .blog-article .content tr:last-child td {
        border-bottom: 0;
    }
    .blog-article .content th {
        background: rgba(13, 91, 86, 0.08);
        color: var(--blog-ink);
        font-weight: 800;
    }
    .blog-article .content tr:nth-child(even) td {
        background: rgba(13, 91, 86, 0.025);
    }
    .blog-article .content .content-block-note,
    .blog-article .content .content-block-faq,
    .blog-article .content .content-block-cta {
        margin: 30px 0;
        padding: clamp(18px, 2.5vw, 26px);
        border-radius: 20px;
        border: 1px solid rgba(13, 75, 68, 0.12);
        box-shadow: 0 18px 42px rgba(8, 37, 31, 0.07);
    }
    .blog-article .content .content-block-note,
    .blog-article .content .content-block-faq {
        background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(242, 247, 242, 0.86));
        border-left: 5px solid var(--rp-gold);
    }
    .blog-article .content .content-block-cta {
        background: linear-gradient(135deg, var(--rp-green-950), var(--rp-green-800));
        color: #fff8ea;
    }
    .blog-article .content .content-block-cta h3,
    .blog-article .content .content-block-cta p {
        color: #fff8ea;
    }
    .blog-article .content .content-block-cta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
        padding: 11px 18px;
        border-radius: 999px;
        background: #fff8ea;
        color: var(--rp-green-950);
        text-decoration: none;
        font-weight: 800;
    }
    .blog-article .content blockquote {
        padding: 20px 22px;
        border-left: 5px solid var(--rp-gold);
        background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(242, 234, 215, 0.58));
        border-radius: 0 18px 18px 0;
        color: var(--blog-ink);
        box-shadow: inset 0 0 0 1px rgba(216, 193, 141, 0.22);
    }
    .blog-layout {
        align-items: flex-start;
        --bs-gutter-x: clamp(22px, 2.4vw, 36px);
    }
    .blog-main-column { min-width: 0; }
    .article-shell {
        position: relative;
        overflow: hidden;
        background: var(--blog-surface);
        border: 1px solid var(--blog-border);
        border-radius: 26px;
        padding: clamp(22px, 3vw, 38px);
        box-shadow: var(--blog-card-shadow);
    }
    .article-shell::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 7px;
        background: linear-gradient(90deg, var(--rp-green-950), var(--rp-gold), var(--rp-green-800));
        opacity: 0.9;
    }
    .article-featured-image {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 8.8;
        object-fit: cover;
        border-radius: 22px;
        border: 1px solid rgba(13, 75, 68, 0.12);
        box-shadow: 0 22px 54px rgba(8, 37, 31, 0.14);
        margin-bottom: 24px;
    }
    .article-overview {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-bottom: 24px;
    }
    .overview-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 13px;
        border-radius: 999px;
        background: rgba(13, 91, 86, 0.065);
        color: var(--rp-green-800);
        font-size: 12.5px;
        font-weight: 800;
        border: 1px solid rgba(13, 75, 68, 0.1);
        box-shadow: 0 8px 20px rgba(8, 37, 31, 0.04);
    }
    .blog-side-card {
        position: relative;
        overflow: hidden;
        background: var(--blog-surface);
        border: 1px solid var(--blog-border);
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 20px 50px rgba(8, 37, 31, 0.08);
    }
    .sidebar-primary-card {
        box-shadow: 0 28px 68px rgba(8, 37, 31, 0.12);
    }
    .popular-card {
        padding: 0;
        overflow: hidden;
    }
    .popular-card__head {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 15px 16px 12px;
        background: linear-gradient(135deg, rgba(8, 60, 51, 0.98), rgba(13, 91, 86, 0.88));
    }
    .popular-card__head::after {
        content: "";
        height: 1px;
        flex: 1 1 auto;
        background: rgba(255, 248, 234, 0.75);
        opacity: 0.45;
    }
    .popular-card__label {
        display: inline-flex;
        align-items: center;
        padding: 9px 13px;
        background: rgba(255, 248, 234, 0.96);
        color: var(--rp-green-950);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border-radius: 999px;
    }
    .popular-list { padding: 0 16px 14px; }
    .popular-featured {
        display: block;
        text-decoration: none;
        color: inherit;
        padding: 16px;
    }
    .popular-featured__thumb {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 18px;
        margin-bottom: 14px;
        border: 1px solid rgba(13, 75, 68, 0.1);
    }
    .popular-featured__title {
        font-size: 16px;
        line-height: 1.4;
        font-weight: 700;
        color: var(--blog-ink);
        margin-bottom: 7px;
    }
    .popular-featured__desc {
        font-size: 12.5px;
        line-height: 1.65;
        color: var(--blog-muted);
        margin-bottom: 8px;
    }
    .popular-item {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
        text-decoration: none;
        color: inherit;
        padding: 14px 0;
        border-bottom: 1px solid rgba(13, 75, 68, 0.1);
    }
    .popular-item:last-child {
        border-bottom: 0;
    }
    .popular-thumb {
        width: 72px;
        height: 64px;
        object-fit: cover;
        border-radius: 14px;
        margin-bottom: 0;
    }
    .popular-title {
        font-size: 13.5px;
        line-height: 1.45;
        font-weight: 600;
        color: var(--blog-ink);
        margin-bottom: 6px;
    }
    .popular-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 10px;
        margin-bottom: 6px;
    }
    .popular-badge {
        display: inline-flex;
        align-items: center;
        padding: 4px 9px;
        border-radius: 999px;
        background: rgba(13, 91, 86, 0.08);
        color: var(--rp-green-800);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .popular-comments {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        color: #64748b;
        font-weight: 600;
    }
    .popular-date {
        font-size: 12px;
        color: #6b7280;
    }
    .popular-more { padding: 0 16px 16px; }
    .popular-more__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 11px 14px;
        border: 1px solid rgba(13, 75, 68, 0.16);
        background: linear-gradient(135deg, var(--rp-green-950), var(--rp-green-800));
        color: #fff8ea;
        text-decoration: none;
        font-weight: 800;
        border-radius: 999px;
        box-shadow: 0 16px 34px rgba(8, 37, 31, 0.18);
    }
    .blog-sidebar-stack {
        position: sticky;
        top: 96px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        align-content: start;
        margin-top: 0;
    }
    .side-card-kicker {
        display: inline-block;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--rp-green-700);
        margin-bottom: 10px;
    }
    .toc-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .toc-item {
        display: block;
        text-decoration: none;
        color: var(--blog-ink);
        font-size: 13px;
        line-height: 1.5;
        padding: 9px 11px;
        border-radius: 14px;
        background: rgba(13, 91, 86, 0.055);
        border: 1px solid transparent;
        transition: 0.2s ease;
    }
    .toc-item:hover {
        background: rgba(216, 193, 141, 0.18);
        border-color: rgba(216, 193, 141, 0.32);
        color: var(--blog-ink);
    }
    .side-post {
        display: block;
        text-decoration: none;
        color: inherit;
        padding: 15px 0;
        border-bottom: 1px solid rgba(13, 75, 68, 0.1);
    }
    .side-post:last-child { border-bottom: 0; padding-bottom: 0; }
    .side-post:first-child { padding-top: 0; }
    .side-post-title {
        font-weight: 600;
        color: var(--blog-ink);
        line-height: 1.45;
        font-size: 13.5px;
        margin-bottom: 6px;
    }
    .side-post-meta {
        font-size: 12px;
        color: #64748b;
    }
    .sidebar-heading {
        margin-bottom: 12px;
        font-size: 18px;
        line-height: 1.25;
        color: var(--blog-ink);
    }
    .article-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 34px;
        padding-top: 22px;
        border-top: 1px solid rgba(13, 75, 68, 0.09);
    }
    .article-tag {
        display: inline-flex;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(13, 91, 86, 0.08);
        color: var(--rp-green-800);
        font-size: 13px;
        font-weight: 600;
    }
    .share-card {
        margin-top: 28px;
        padding: 24px;
        border: 1px solid var(--blog-border);
        border-radius: 22px;
        background:
            radial-gradient(circle at 92% 20%, rgba(216, 193, 141, 0.18), transparent 30%),
            linear-gradient(180deg, rgba(255,253,248,0.98) 0%, rgba(242,247,242,0.96) 100%);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
    }
    .share-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 14px;
    }
    .share-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        color: var(--blog-ink);
        background: rgba(13, 91, 86, 0.075);
        font-weight: 800;
        transition: 0.2s ease;
    }
    .share-link:hover {
        background: rgba(216, 193, 141, 0.18);
        color: var(--blog-ink);
    }
    .comment-card {
        margin-top: 30px;
        padding: clamp(22px, 3vw, 30px);
        border: 1px solid var(--blog-border);
        border-radius: 24px;
        background: var(--blog-surface);
        box-shadow: 0 22px 54px rgba(8, 37, 31, 0.08);
    }
    .comment-card .form-control {
        min-height: 48px;
        border-radius: 14px;
        border-color: rgba(13, 75, 68, 0.14);
        background: rgba(255, 255, 255, 0.72);
        box-shadow: none;
    }
    .comment-card .form-control:focus {
        border-color: rgba(13, 91, 86, 0.52);
        box-shadow: 0 0 0 4px rgba(13, 91, 86, 0.08);
    }
    .comment-item + .comment-item {
        border-top: 1px solid rgba(13, 75, 68, 0.1);
        margin-top: 18px;
        padding-top: 18px;
    }
    .comment-meta {
        font-size: 13px;
        color: #64748b;
        margin-bottom: 8px;
    }
    .comment-replies {
        margin-top: 16px;
        margin-left: 24px;
        padding-left: 18px;
        border-left: 2px solid rgba(216, 193, 141, 0.75);
    }
    .comment-reply {
        background: rgba(13, 91, 86, 0.05);
        border: 1px solid rgba(13, 75, 68, 0.1);
        border-radius: 16px;
        padding: 14px 16px;
        margin-top: 12px;
    }
    .comment-honeypot {
        position: absolute !important;
        left: -9999px !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    .next-read-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 28px;
    }
    .next-read-card {
        display: block;
        text-decoration: none;
        color: inherit;
        background: var(--blog-surface);
        border: 1px solid var(--blog-border);
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 18px 42px rgba(8, 37, 31, 0.08);
        transition: 0.22s ease;
    }
    .next-read-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 62px rgba(8, 37, 31, 0.13);
    }
    .next-read-thumb {
        width: 100%;
        height: 205px;
        object-fit: cover;
        border-radius: 0;
        margin-bottom: 0;
    }
    .next-read-body {
        padding: 19px 20px 22px;
    }
    .next-read-meta {
        font-size: 12px;
        color: #64748b;
        margin-bottom: 8px;
    }
    .next-read-title {
        font-size: 18px;
        line-height: 1.45;
        font-weight: 700;
        color: var(--blog-ink);
        margin-bottom: 8px;
    }
    .next-read-desc {
        color: var(--blog-muted);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 0;
    }
    @media (max-width: 991.98px) {
        .blog-sidebar-stack {
            position: static;
            grid-template-columns: 1fr;
            margin-top: 28px;
        }
        .next-read-grid {
            grid-template-columns: 1fr;
        }
        .popular-featured__thumb {
            height: 190px;
        }
    }
    @media (max-width: 767.98px) {
        .blog-detail-page .page-hero {
            min-height: 300px !important;
        }
        .blog-detail-page .page-hero .container {
            padding-top: 42px !important;
            padding-bottom: 42px !important;
        }
        .blog-detail-page .page-hero .hero-title {
            font-size: clamp(2rem, 10vw, 2.85rem) !important;
        }
        .article-shell {
            padding: 18px;
            border-radius: 20px;
        }
        .blog-article .content table {
            border-radius: 14px;
        }
        .blog-article .content tbody {
            min-width: 680px;
        }
        .blog-article .content {
            font-size: 16px;
            line-height: 1.85;
        }
        .blog-side-card { padding: 18px; }
    }

/* Dark article detail reference layout */
body:has(.blog-article-dark) { background: #020b11; }
body:has(.blog-article-dark) .site-shell-header { background: #020b11; box-shadow: none; }
body:has(.blog-article-dark) .site-shell-header .topbar { display: none !important; }
body:has(.blog-article-dark) .site-shell-header .branding {
    background: rgba(2, 11, 17, 0.96);
    border-bottom: 1px solid rgba(34, 215, 209, 0.14);
    min-height: 88px;
}
body:has(.blog-article-dark) .site-shell-header .logo img {
    filter: none;
}
body:has(.blog-article-dark) .site-shell-header .navmenu a {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Inter", sans-serif;
    font-size: 0.84rem;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: none;
}
body:has(.blog-article-dark) .site-shell-header .navmenu a.active,
body:has(.blog-article-dark) .site-shell-header .navmenu a:hover { color: #22d7d1; }
body:has(.blog-article-dark) .site-shell-header .navmenu a.active::after { background: #22d7d1; }
body:has(.blog-article-dark) .site-cta-btn {
    background: transparent;
    border: 1px solid rgba(34, 215, 209, 0.78);
    border-radius: 6px;
    box-shadow: none;
    color: #22d7d1;
    min-height: 42px;
    padding: 10px 22px;
}
body:has(.blog-article-dark) .site-search-link { display: none !important; }
body:has(.blog-article-dark) .site-shell-footer {
    background: radial-gradient(circle at 14% 0%, rgba(34, 215, 209, 0.08), transparent 26%), linear-gradient(180deg, #020b11, #02070b);
    border-top: 1px solid rgba(34, 215, 209, 0.12);
    margin-top: 0;
    padding-top: 34px;
}
.blog-article-dark {
    --article-panel: rgba(5, 27, 35, 0.88);
    --article-border: rgba(34, 215, 209, 0.23);
    --article-cyan: #22d7d1;
    --article-text: rgba(255, 255, 255, 0.93);
    --article-readable: rgba(221, 236, 236, 0.88);
    --article-readable-strong: rgba(238, 248, 247, 0.94);
    --article-heading: rgba(242, 250, 249, 0.96);
    --article-muted: rgba(219, 236, 236, 0.72);
    background: radial-gradient(circle at 78% 12%, rgba(34, 215, 209, 0.08), transparent 30%), linear-gradient(180deg, #020b11 0%, #01070d 100%);
    color: var(--article-text);
    overflow-x: hidden;
}
.blog-article-dark *,
.blog-article-dark *::before,
.blog-article-dark *::after {
    box-sizing: border-box;
}
.article-detail-shell {
    background:
        radial-gradient(circle at 82% 8%, rgba(34, 215, 209, 0.08), transparent 30%),
        radial-gradient(circle at 8% 42%, rgba(34, 215, 209, 0.05), transparent 26%),
        linear-gradient(180deg, #020b11 0%, #01070d 100%) !important;
    color: var(--article-text);
    padding: 24px 0 38px;
}
.blog-article-dark .container {
    max-width: min(1720px, calc(100% - 64px));
}
.article-breadcrumb {
    align-items: center;
    color: rgba(219, 236, 236, 0.58);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    gap: 8px;
    margin-bottom: 24px;
}
.article-breadcrumb a { color: var(--article-cyan); text-decoration: none; }
.article-page-grid {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 320px;
}
.article-main { min-width: 0; }
.article-title-block { margin-bottom: 20px; }
.article-category-pill {
    background: rgba(34, 215, 209, 0.1);
    border: 1px solid rgba(34, 215, 209, 0.42);
    border-radius: 4px;
    color: var(--article-cyan);
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 850;
    margin-bottom: 12px;
    padding: 5px 8px;
    text-transform: uppercase;
}
.article-title-block h1 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: clamp(2.5rem, 4vw, 4.1rem);
    font-weight: 600;
    line-height: 1.08;
    margin: 0 0 14px;
    max-width: 920px;
}
.article-title-block p {
    color: rgba(244, 252, 252, 0.82);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 720px;
}
.article-meta-row {
    align-items: center;
    color: rgba(219, 236, 236, 0.78);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.88rem;
    gap: 18px 28px;
}
.article-meta-row i { color: var(--article-cyan); margin-right: 8px; }
.article-share-inline { align-items: center; display: inline-flex; gap: 10px; margin-left: auto; }
.article-share-inline a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    text-decoration: none;
    width: 34px;
}
.article-review-strip {
    background: linear-gradient(180deg, rgba(5, 27, 35, 0.82), rgba(2, 15, 21, 0.92));
    border: 1px solid var(--article-border);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    margin-bottom: 20px;
    overflow: hidden;
}
.article-review-strip > div {
    align-items: center;
    border-right: 1px solid rgba(34, 215, 209, 0.18);
    display: grid;
    gap: 12px;
    grid-template-columns: 52px 1fr;
    min-height: 96px;
    padding: 16px 18px;
}
.article-review-strip > div:last-child { border-right: 0; }
.article-review-strip img {
    border-radius: 50%;
    height: 48px;
    margin: 0;
    object-fit: cover;
    width: 48px;
}
.article-review-strip i {
    align-items: center;
    border: 1px solid rgba(34, 215, 209, 0.38);
    border-radius: 50%;
    color: var(--article-cyan);
    display: inline-flex;
    font-size: 1.25rem;
    height: 44px;
    justify-content: center;
    width: 44px;
}
.article-review-strip small { color: var(--article-cyan); display: block; font-size: 0.72rem; font-weight: 800; }
.article-review-strip strong { color: #fff; display: block; font-size: 0.82rem; }
.article-review-strip em {
    color: var(--article-muted);
    display: block;
    font-size: 0.72rem;
    font-style: normal;
    line-height: 1.35;
}
.article-hero-image {
    aspect-ratio: auto;
    background: #03151c;
    border: 1px solid var(--article-border);
    border-radius: 8px;
    display: block;
    margin: 0 0 18px;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
    width: 100%;
}
.article-body-grid {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: 280px minmax(0, 1fr);
}
.article-left-rail,
.article-sidebar {
    background: linear-gradient(180deg, rgba(5, 27, 35, 0.52), rgba(2, 15, 21, 0.78));
    border: 1px solid rgba(34, 215, 209, 0.18);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    display: grid;
    gap: 16px;
    max-height: calc(100vh - 132px);
    overflow-y: auto;
    padding: 14px;
    position: sticky;
    scrollbar-width: none;
    top: 116px;
}
.article-sidebar { gap: 20px; padding: 16px; }
.article-sidebar {
    max-height: none;
    overflow: visible;
    position: static;
    top: auto;
}
.article-left-rail::-webkit-scrollbar,
.article-sidebar::-webkit-scrollbar,
.article-left-card ol::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
}
.article-left-card,
.side-panel,
.helpful-card,
.article-comments,
.you-may-like-card {
    background: linear-gradient(180deg, rgba(5, 27, 35, 0.88), rgba(2, 15, 21, 0.94));
    border: 1px solid var(--article-border);
    border-radius: 8px;
}
.article-left-card,
.side-panel { padding: 18px; }
.side-panel { padding: 24px; }
.article-left-card h2,
.side-panel h2,
.article-comments h2,
.you-may-like h2 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 850;
    margin: 0 0 14px;
}
.article-left-card ol {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    list-style: none;
    margin: 0;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    padding: 0 0 0 12px;
    scrollbar-width: none;
}
.article-left-card li { margin-bottom: 12px; position: relative; }
.article-left-card li::before {
    background: var(--article-cyan);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: -16px;
    position: absolute;
    top: 7px;
    width: 7px;
}
.article-left-card a {
    color: rgba(244, 252, 252, 0.9);
    font-size: 0.88rem;
    line-height: 1.35;
    text-decoration: none;
}
.article-left-card a:hover { color: var(--article-cyan); }
.article-left-card .toc-level-3 { padding-left: 12px; }
.article-left-card .toc-level-4 { padding-left: 22px; }
.article-left-card .toc-level-3 a,
.article-left-card .toc-level-4 a {
    color: rgba(219, 236, 236, 0.78);
    font-size: 0.8rem;
}
.cta-card { text-align: center; }
.cta-card > i {
    align-items: center;
    border: 1px solid rgba(34, 215, 209, 0.5);
    border-radius: 50%;
    color: var(--article-cyan);
    display: inline-flex;
    font-size: 1.6rem;
    height: 62px;
    justify-content: center;
    margin-bottom: 14px;
    width: 62px;
}
.cta-card h3 { color: #fff; font-size: 1rem; line-height: 1.3; }
.cta-card p { color: var(--article-muted); font-size: 0.82rem; }
.cta-card a {
    align-items: center;
    background: linear-gradient(180deg, rgba(34, 215, 209, 0.9), rgba(13, 145, 146, 0.95));
    border-radius: 5px;
    color: #fff;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    min-height: 40px;
}
.cta-card a.outline { background: transparent; border: 1px solid rgba(34, 215, 209, 0.45); }
.article-content-panel {
    background: linear-gradient(180deg, rgba(3, 24, 31, 0.42), rgba(1, 13, 19, 0.66));
    border: 1px solid rgba(34, 215, 209, 0.16);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    color: var(--article-readable);
    font-size: 1.08rem;
    font-weight: 430;
    line-height: 1.86;
    padding: 28px 34px 32px;
}
.article-content-panel p { color: var(--article-readable); margin: 0 0 20px; }
.article-content-panel h2,
.article-content-panel h3,
.article-content-panel h4 { scroll-margin-top: 122px; }
.article-content-panel h2 { color: var(--article-heading); font-size: 1.7rem; line-height: 1.28; margin: 34px 0 16px; }
.article-content-panel h3,
.article-content-panel h4 { color: var(--article-heading); line-height: 1.34; margin: 24px 0 12px; }
.article-content-panel h3 { font-size: 1.32rem; }
.article-content-panel h4 { font-size: 1.12rem; }
.article-content-panel strong { color: var(--article-readable-strong); font-weight: 780; }
.article-content-panel ul,
.article-content-panel ol { color: var(--article-readable); margin: 0 0 22px; padding-left: 28px; }
.article-content-panel > ul,
.article-content-panel > ol {
    background: rgba(8, 35, 43, 0.45);
    border: 1px solid rgba(86, 178, 205, 0.16);
    border-left: 3px solid rgba(86, 178, 205, 0.55);
    border-radius: 8px;
    padding: 18px 22px 18px 42px;
}
.article-content-panel li { color: var(--article-readable); margin-bottom: 10px; }
.article-content-panel li::marker { color: rgba(34, 215, 209, 0.68); }
.article-content-panel img {
    border: 1px solid var(--article-border);
    border-radius: 8px;
    height: auto;
    margin: 14px 0 18px;
    max-width: 100%;
}
.article-content-panel figure { margin: 18px 0 22px; }
.article-content-panel figure img { margin-bottom: 8px; }
.article-content-panel figcaption {
    color: var(--article-muted);
    font-size: 0.82rem;
    text-align: center;
}
.article-content-panel table {
    border-collapse: collapse;
    margin: 18px 0 22px;
    overflow: hidden;
    width: 100%;
}
.article-content-panel th,
.article-content-panel td {
    border: 1px solid var(--article-border);
    color: var(--article-readable);
    font-size: 0.98rem;
    line-height: 1.58;
    padding: 13px 14px;
    vertical-align: top;
}
.article-content-panel th {
    background: rgba(34, 215, 209, 0.1);
    color: var(--article-heading);
}
.article-content-panel .content-block-note,
.article-content-panel .content-block-faq,
.article-content-panel .content-block-keypoints,
.article-content-panel .content-block-checklist,
.article-content-panel .content-block-steps {
    border: 1px solid rgba(34, 215, 209, 0.2);
    border-left: 4px solid rgba(34, 215, 209, 0.72);
    border-radius: 8px;
    color: var(--article-readable);
    margin: 18px 0 22px;
    padding: 18px 22px;
}
.article-content-panel .content-block-note {
    background: rgba(12, 45, 56, 0.64);
    border-color: rgba(86, 178, 205, 0.28);
    border-left-color: #56b2cd;
}
.article-content-panel .content-block-faq,
.article-content-panel .content-block-keypoints {
    background: rgba(12, 55, 58, 0.62);
    border-color: rgba(45, 212, 191, 0.24);
    border-left-color: #2dd4bf;
}
.article-content-panel .content-block-checklist {
    background: rgba(14, 54, 39, 0.6);
    border-color: rgba(116, 181, 132, 0.26);
    border-left-color: #74b584;
}
.article-content-panel .content-block-steps {
    background: rgba(55, 50, 24, 0.58);
    border-color: rgba(199, 167, 86, 0.26);
    border-left-color: #c7a756;
}
.article-content-panel .content-block-note h3,
.article-content-panel .content-block-faq h3,
.article-content-panel .content-block-keypoints h3,
.article-content-panel .content-block-checklist h3,
.article-content-panel .content-block-steps h3,
.article-content-panel .content-block-tip h3,
.article-content-panel .content-block-warning h3 {
    color: var(--article-heading);
    margin-top: 0;
}
.article-content-panel .content-block-tip {
    background: rgba(12, 57, 42, 0.62);
    border: 1px solid rgba(79, 159, 117, 0.28);
    border-left: 4px solid #4f9f75;
    border-radius: 8px;
    margin: 18px 0 22px;
    padding: 18px 22px;
}
.article-content-panel .content-block-warning {
    background: rgba(68, 48, 16, 0.62);
    border: 1px solid rgba(207, 158, 55, 0.3);
    border-left: 4px solid #cf9e37;
    border-radius: 8px;
    margin: 18px 0 22px;
    padding: 18px 22px;
}
.article-content-panel .content-block-proscons {
    background: rgba(9, 39, 49, 0.6);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 22px;
    padding: 18px;
}
.article-content-panel .content-block-proscons > div {
    background: rgba(2, 16, 22, 0.46);
    border: 1px solid rgba(187, 212, 212, 0.12);
    border-radius: 8px;
    padding: 14px;
}
.article-content-panel .content-block-keypoints ul,
.article-content-panel .content-block-checklist ul,
.article-content-panel .content-block-steps ol,
.article-content-panel .content-block-proscons ul {
    margin-bottom: 0;
}
.article-content-panel .content-block-cta {
    background: linear-gradient(180deg, rgba(17, 115, 116, 0.78), rgba(7, 52, 62, 0.94));
    border: 1px solid rgba(34, 215, 209, 0.3);
    border-radius: 8px;
    color: var(--article-readable-strong);
    margin: 20px 0 24px;
    padding: 20px 22px;
}
.article-content-panel .content-block-cta h2,
.article-content-panel .content-block-cta h3,
.article-content-panel .content-block-cta p { color: var(--article-readable-strong); }
.article-content-panel .content-block-cta a { color: var(--article-readable-strong); font-weight: 800; }
@media (max-width: 767.98px) {
    .article-content-panel .content-block-proscons {
        grid-template-columns: 1fr;
    }
}
.rooted-icons {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 16px 0 22px;
}
.rooted-icons span {
    border-right: 1px solid rgba(34, 215, 209, 0.18);
    color: rgba(244, 252, 252, 0.78);
    display: grid;
    font-size: 0.72rem;
    gap: 8px;
    justify-items: center;
    line-height: 1.25;
    padding: 0 10px;
    text-align: center;
}
.rooted-icons i {
    align-items: center;
    border: 1px solid rgba(34, 215, 209, 0.48);
    border-radius: 50%;
    color: var(--article-cyan);
    display: inline-flex;
    font-size: 1.4rem;
    height: 48px;
    justify-content: center;
    width: 48px;
}
.article-content-panel blockquote {
    background: rgba(10, 40, 49, 0.62);
    border: 1px solid rgba(86, 178, 205, 0.22);
    border-left: 4px solid #56b2cd;
    border-radius: 8px;
    color: var(--article-readable);
    display: block;
    line-height: 1.78;
    margin: 22px 0 26px;
    padding: 20px 24px;
}
.article-content-panel blockquote i { color: var(--article-cyan); font-size: 2rem; }
.reference-list { color: rgba(244, 252, 252, 0.8); font-size: 0.9rem; padding-left: 20px; }
.reference-btn,
.load-comments {
    background: transparent;
    border: 1px solid rgba(34, 215, 209, 0.5);
    border-radius: 5px;
    color: var(--article-cyan);
    min-height: 38px;
    padding: 8px 14px;
}
.helpful-card {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) 260px;
    margin: 22px 0;
    padding: 18px;
}
.helpful-card h2 { font-size: 1.05rem; margin: 0 0 4px; }
.helpful-card p,
.helpful-card label { color: var(--article-muted); font-size: 0.82rem; }
.helpful-card button {
    background: rgba(1, 9, 14, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    color: #fff;
    margin: 5px 6px 0 0;
    padding: 8px 10px;
}
.helpful-card select {
    background: rgba(1, 9, 14, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    color: #fff;
    display: block;
    margin-top: 8px;
    min-height: 40px;
    padding: 0 12px;
    width: 100%;
}
.article-comments { margin-top: 18px; padding: 18px; }
.article-comments > p { color: var(--article-muted); font-size: 0.86rem; }
.article-comment-form {
    align-items: start;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin: 12px 0 18px;
}
.article-comment-form textarea { grid-column: 1 / -1; }
.article-comment-form input,
.article-comment-form textarea,
.side-panel input {
    background: rgba(1, 9, 14, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    color: #fff;
    min-height: 42px;
    padding: 0 12px;
}
.article-comment-form textarea { padding-top: 10px; }
.article-comment-form button,
.side-panel form button,
.subscribe-panel button {
    background: linear-gradient(180deg, rgba(34, 215, 209, 0.92), rgba(14, 148, 150, 0.98));
    border: 0;
    border-radius: 5px;
    color: #fff;
    min-height: 42px;
    padding: 0 18px;
}
.article-comment-form button {
    justify-self: start;
    min-height: 38px;
    padding: 0 16px;
}
.article-comment {
    display: grid;
    gap: 12px;
    grid-template-columns: 42px 1fr;
    margin-top: 14px;
}
.article-comment.is-reply { margin-left: 48px; }
.article-comment .avatar,
.article-comment img {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    object-fit: cover;
    width: 42px;
}
.article-comment strong { color: #fff; }
.article-comment em {
    background: rgba(34, 215, 209, 0.18);
    border-radius: 999px;
    color: var(--article-cyan);
    font-size: 0.7rem;
    font-style: normal;
    padding: 2px 6px;
}
.article-comment small { color: var(--article-muted); margin-left: 8px; }
.article-comment p { color: rgba(244, 252, 252, 0.8); font-size: 0.9rem; margin: 4px 0 0; }
.load-comments { display: block; margin: 16px auto 0; }
.you-may-like {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin-top: 34px;
    padding: 0 !important;
}
.you-may-like::before,
.you-may-like::after {
    display: none !important;
}
.you-may-like-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.you-may-like-card {
    color: #fff;
    display: block;
    overflow: hidden;
    text-decoration: none;
}
.you-may-like-card img {
    aspect-ratio: 1.55 / 1;
    border-radius: 0;
    display: block;
    margin: 0;
    object-fit: cover;
    width: 100%;
}
.you-may-like-card strong { display: block; font-size: 0.9rem; line-height: 1.25; padding: 12px 12px 2px; }
.you-may-like-card small { color: var(--article-muted); display: block; padding: 0 12px 12px; }
.search-panel form,
.subscribe-panel form { align-items: center; display: flex; gap: 0; }
.search-panel input,
.subscribe-panel input { flex: 1; min-width: 0; }
.search-panel button { border-radius: 0 5px 5px 0; width: 48px; }
.author-panel img {
    border-radius: 50%;
    display: block;
    height: 112px;
    margin: 8px auto 16px;
    object-fit: cover;
    width: 112px;
}
.author-panel h3 { color: #fff; font-size: 1.15rem; }
.author-panel h3 i { color: #4aa3ff; }
.author-panel p,
.subscribe-panel p,
.subscribe-panel small { color: var(--article-muted); font-size: 0.9rem; line-height: 1.55; }
.author-panel a,
.view-all-link {
    align-items: center;
    background: linear-gradient(180deg, rgba(34, 215, 209, 0.34), rgba(14, 137, 139, 0.78));
    border: 1px solid rgba(34, 215, 209, 0.55);
    border-radius: 5px;
    color: #fff;
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 850;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
    min-height: 42px;
    padding: 10px 15px;
    text-decoration: none;
}
.related-side-item {
    align-items: center;
    color: #fff;
    display: grid;
    gap: 13px;
    grid-template-columns: 78px 1fr;
    margin-bottom: 16px;
    text-decoration: none;
}
.related-side-item img {
    aspect-ratio: 1.1 / 1;
    border-radius: 5px;
    margin: 0;
    object-fit: cover;
    width: 78px;
}
.related-side-item strong { display: block; font-size: 0.9rem; line-height: 1.25; }
.related-side-item small { color: var(--article-muted); display: block; margin-top: 5px; }
.category-panel a {
    align-items: center;
    color: rgba(244, 252, 252, 0.86);
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    text-decoration: none;
}
.category-panel strong { color: #fff; }
.tag-panel div { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-panel span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    color: rgba(244, 252, 252, 0.8);
    font-size: 0.82rem;
    padding: 8px 12px;
}
.subscribe-panel > i {
    align-items: center;
    background: rgba(34, 215, 209, 0.12);
    border-radius: 50%;
    color: var(--article-cyan);
    display: inline-flex;
    font-size: 2rem;
    height: 70px;
    justify-content: center;
    margin-bottom: 14px;
    width: 70px;
}
.subscribe-panel form { display: grid; gap: 10px; }
.subscribe-panel button { width: 100%; }
.comment-honeypot { display: none !important; }
@media (max-width: 1199px) {
    body.mobile-nav-active:has(.blog-article-dark) .site-shell-header .navmenu > ul {
        background: #061923 !important;
        border-color: rgba(34, 215, 209, 0.24) !important;
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42) !important;
    }

    body.mobile-nav-active:has(.blog-article-dark) .site-shell-header .navmenu a,
    body.mobile-nav-active:has(.blog-article-dark) .site-shell-header .navmenu a:focus {
        color: rgba(255, 255, 255, 0.92) !important;
    }

    body.mobile-nav-active:has(.blog-article-dark) .site-shell-header .navmenu a.active,
    body.mobile-nav-active:has(.blog-article-dark) .site-shell-header .navmenu a:hover {
        color: #35eee6 !important;
    }

    .article-page-grid { grid-template-columns: 1fr; }
    .article-sidebar {
        max-height: none;
        overflow: visible;
        position: static;
    }
}
@media (max-width: 991px) {
    body:has(.blog-article-dark) .site-shell-header .branding { min-height: 68px; }
    body:has(.blog-article-dark) .site-shell-header .logo img { filter: none; }
    .blog-article-dark .container {
        max-width: min(100% - 28px, 720px);
    }
    .article-review-strip { grid-template-columns: 1fr 1fr; }
    .article-page-grid,
    .article-body-grid {
        gap: 18px;
        grid-template-columns: minmax(0, 1fr);
    }
    .article-left-rail {
        max-height: none;
        overflow: visible;
        position: static;
        width: 100%;
    }
    .article-content-panel,
    .article-left-card,
    .side-panel,
    .article-comments {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }
    .article-content-panel {
        overflow: hidden;
    }
    .rooted-icons,
    .you-may-like-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .article-detail-shell {
        padding-top: 12px;
        padding-bottom: 86px;
    }
    .blog-article-dark .container {
        max-width: calc(100% - 20px);
        padding-left: 0;
        padding-right: 0;
    }
    .article-breadcrumb {
        font-size: 0.68rem;
        gap: 6px;
        margin-bottom: 16px;
    }
    .article-page-grid { gap: 20px; }
    .article-title-block { margin-bottom: 16px; }
    .article-title-block h1 {
        font-size: clamp(2rem, 9.5vw, 2.72rem);
        line-height: 1.02;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .article-title-block p {
        font-size: 0.9rem;
        line-height: 1.55;
        max-width: 100%;
    }
    .article-meta-row {
        font-size: 0.72rem;
        gap: 12px 16px;
    }
    .article-share-inline { margin-left: 0; width: 100%; }
    .article-review-strip { grid-template-columns: 1fr; }
    .article-review-strip > div {
        border-right: 0;
        border-bottom: 1px solid rgba(34, 215, 209, 0.18);
        min-height: 76px;
        padding: 12px 14px;
    }
    .article-hero-image { aspect-ratio: 1.4 / 1; }
    .article-left-rail {
        gap: 12px;
        padding: 10px;
    }
    .article-left-card,
    .side-panel {
        padding: 16px;
    }
    .article-left-card ol {
        max-height: 360px;
    }
    .article-left-card a {
        font-size: 0.78rem;
        line-height: 1.42;
    }
    .article-left-card .toc-level-3 a,
    .article-left-card .toc-level-4 a {
        font-size: 0.72rem;
    }
    .cta-card > i {
        font-size: 1.25rem;
        height: 48px;
        margin-bottom: 10px;
        width: 48px;
    }
    .cta-card h3 {
        font-size: 0.92rem;
        overflow-wrap: anywhere;
    }
    .cta-card a {
        min-height: 36px;
    }
    .article-content-panel {
        font-size: 0.92rem;
        line-height: 1.72;
        padding: 20px 16px 24px;
        width: 100%;
    }
    .article-content-panel h2 {
        font-size: clamp(1.45rem, 7.2vw, 1.95rem);
        line-height: 1.16;
        margin: 26px 0 12px;
        overflow-wrap: anywhere;
    }
    .article-content-panel h3 {
        font-size: 1.12rem;
    }
    .article-content-panel p {
        margin-bottom: 16px;
    }
    .article-content-panel > ul,
    .article-content-panel > ol {
        padding: 14px 16px 14px 32px;
    }
    .article-content-panel table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .helpful-card,
    .article-comment-form,
    .rooted-icons,
    .you-may-like-grid { grid-template-columns: 1fr; }
    .article-comment-form textarea { grid-column: auto; }
    .article-comment-form button {
        justify-self: start;
        min-height: 38px;
        width: auto;
    }
    .article-comment.is-reply { margin-left: 20px; }
    .side-panel { padding: 20px; }
}
