/** @format */

@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url("/landing/fonts/inter-v20-latin-regular.woff2")
        format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url("/landing/fonts/inter-v20-latin-500.woff2")
        format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url("/landing/fonts/inter-v20-latin-600.woff2")
        format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url("/landing/fonts/inter-v20-latin-700.woff2")
        format("woff2");
}

/* merriweather-regular - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/merriweather-v33-latin-regular.woff2")
        format("woff2");
}

/* merriweather-italic - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/merriweather-v33-latin-italic.woff2")
        format("woff2");
}

/* merriweather-500 - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/merriweather-v33-latin-500.woff2")
        format("woff2");
}

/* merriweather-500italic - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: italic;
    font-weight: 500;
    src: url("../fonts/merriweather-v33-latin-500italic.woff2")
        format("woff2");
}

/* merriweather-600 - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/merriweather-v33-latin-600.woff2")
        format("woff2");
}

/* merriweather-600italic - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: italic;
    font-weight: 600;
    src: url("../fonts/merriweather-v33-latin-600italic.woff2")
        format("woff2");
}

/* merriweather-700 - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/merriweather-v33-latin-700.woff2")
        format("woff2");
}

/* merriweather-700italic - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: italic;
    font-weight: 700;
    src: url("../fonts/merriweather-v33-latin-700italic.woff2")
        format("woff2");
}

/* merriweather-800 - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/merriweather-v33-latin-800.woff2")
        format("woff2");
}

/* merriweather-800italic - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: italic;
    font-weight: 800;
    src: url("../fonts/merriweather-v33-latin-800italic.woff2")
        format("woff2");
}

/* merriweather-900 - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/merriweather-v33-latin-900.woff2")
        format("woff2");
}

/* merriweather-900italic - latin */
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-style: italic;
    font-weight: 900;
    src: url("../fonts/merriweather-v33-latin-900italic.woff2")
        format("woff2");
}

:root {
    --bg: #fafafa;
    --bg-soft: #f5f5f5;
    --surface: #ffffff;
    --text-strong: #0d0d0d;
    --text-body: #0d0d0d;
    --text-soft: #0d0d0d;
    --accent: #31cf85;
    --accent-hover: #28b674;
    --border: #e6e6eb;
    --border-strong: #d7d7d7;
    --radius-xl: 16px;
    --radius-lg: 12px;
    --radius-md: 10px;
    --container: 1160px;
    --content: 780px;
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 20px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;
    --space-8: 56px;
    --space-9: 72px;
    --space-10: 96px;
    --nav-h: 72px;
    --nav-top-offset: 8px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.content-container {
    width: min(calc(100% - 2rem), var(--content));
    margin: 0 auto;
}

.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    height: calc(var(--nav-h) + var(--nav-top-offset));
    padding-top: var(--nav-top-offset);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(250, 250, 250, 0.82);
    transition:
        background-color var(--transition),
        border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(250, 250, 250, 0.94);
    border-bottom-color: var(--border);
}

.nav-wrap {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: var(--space-4);
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(52px, 6vw, 64px);
    height: clamp(52px, 6vw, 64px);
    flex: 0 0 auto;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: none;
}

.nav-actions {
    display: none;
}

.nav-blog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.nav-blog-logo {
    width: 40px;
    height: auto;
    display: block;
    transform: translateY(2px);
}

.nav-toggle {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--text-strong);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform-origin: center;
    transition:
        transform 220ms ease,
        opacity 220ms ease,
        width 220ms ease;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    width: 100%;
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    width: 100%;
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: calc(var(--nav-h) + var(--nav-top-offset) + 8px);
    right: max(12px, env(safe-area-inset-right));
    display: none;
    width: max-content;
    min-width: 260px;
    max-width: min(360px, calc(100vw - 24px));
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    padding: 14px;
    z-index: 60;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-links,
.mobile-menu-actions {
    display: grid;
    gap: 10px;
    text-align: center;
}

.mobile-menu-links a {
    color: var(--text-strong);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.25;
}

.mobile-menu-actions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.mobile-menu-actions .nav-login {
    font-size: 1.1rem;
    line-height: 1.25;
    font-weight: 600;
}

.mobile-menu-actions .btn {
    justify-self: center;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 10px;
}

.nav-links a,
.nav-login,
.footer-links a,
.footer-bottom {
    white-space: nowrap;
    color: var(--text-strong);
    font-family: "Inter", sans-serif;
}

.nav-login {
    font-weight: 500;
    color: var(--text-strong);
    white-space: nowrap;
}

.nav-login:hover {
    color: #212121;
}

.footer-links a:hover {
    color: #212121;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    white-space: nowrap;
    transition:
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
    cursor: pointer;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-login:focus-visible,
.footer-links a:focus-visible,
.cluster-link:focus-visible,
.article-card h3 a:focus-visible,
.article-content a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn:active {
    transform: scale(0.985);
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.nav-cta {
    display: none;
    font-size: 0.96rem;
    padding: 9px 16px;
}

main {
    padding: var(--space-6) 0 var(--space-9);
}

.hero {
    padding: var(--space-4) 0 var(--space-8);
}

.hero-shell {
    display: grid;
    gap: var(--space-6);
}

.hero-brand {
    color: var(--text-strong);
    font-size: clamp(1.62rem, 4.9vw, 3.18rem);
    line-height: 1;
    letter-spacing: -0.06em;
    text-align: center;
}

.hero-brand-sans {
    font-family: "Inter", sans-serif;
    font-weight: 700;
}

.hero-brand-serif {
    font-family: "Merriweather", serif;
    font-weight: 700;
    margin-left: 6px;
}

.hero-layout {
    display: grid;
    gap: var(--space-5);
}

.hero-feature {
    display: grid;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    background: #f0f0f0;
}

.hero-copy {
    display: grid;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-4) var(--space-5);
}

.hero-title {
    color: var(--text-strong);
    font-family: "Merriweather", serif;
    font-size: clamp(1.05rem, 1.85vw, 1.45rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    max-width: none;
    font-weight: 700;
}

.hero-subtitle {
    max-width: none;
    font-family: "Merriweather", serif;
    font-size: 0.93rem;
    line-height: 1.72;
    color: var(--text-body);
}

.popular-card {
    display: grid;
    gap: var(--space-3);
    align-content: start;
    padding: 0;
}

.popular-card-title {
    color: var(--text-strong);
    font-family: "Merriweather", serif;
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: var(--space-3);
    border-bottom: 3px solid var(--accent);
}

.popular-list {
    display: grid;
    gap: var(--space-4);
}

.popular-link {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: var(--space-4);
    row-gap: var(--space-2);
    align-items: start;
    padding: 0 0 var(--space-4);
    transition: opacity var(--transition);
}

.popular-link:hover {
    opacity: 0.84;
}

.popular-link-image {
    width: 140px;
    grid-row: 1 / span 3;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 0;
}

.popular-link-title {
    color: var(--text-strong);
    font-family: "Merriweather", serif;
    grid-column: 2;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 1px;
    display: block;
}

.popular-link-meta {
    grid-column: 2;
    justify-self: end;
    align-self: end;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-family: "Merriweather", serif;
}

.popular-link::after {
    content: "";
    grid-column: 2;
    height: 1px;
    background: #d7d7d7;
    align-self: end;
    margin-top: var(--space-2);
}

.section-header {
    margin-bottom: var(--space-5);
}

.section-header h2 {
    color: var(--text-strong);
    font-family: "Merriweather", serif;
    font-size: clamp(1.65rem, 3.2vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.articles-grid {
    display: grid;
    gap: var(--space-4);
}

.articles-grid.is-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 780px;
}

.articles-loading,
.articles-empty {
    color: var(--text-body);
    font-family: "Merriweather", serif;
    font-size: 1rem;
    line-height: 1.7;
}

.article-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: var(--space-4);
    row-gap: var(--space-2);
    align-items: start;
    padding: 0 0 var(--space-4);
    background: transparent;
    border: 0;
    border-radius: 0;
}

.article-card-image {
    grid-row: 1 / span 4;
    width: 140px;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 0;
}

.article-card-excerpt {
    grid-column: 2;
    font-size: 0.95rem;
    line-height: 1.72;
}

.article-meta {
    grid-column: 2;
    justify-self: end;
    align-self: end;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-family: "Merriweather", serif;
}

.article-card h3,
.article-content h2,
.article-content h3,
.article-hero h1 {
    color: var(--text-strong);
    font-family: "Merriweather", serif;
}

.article-card h3 {
    grid-column: 2;
    font-size: 1.06rem;
    line-height: 1.4;
    font-weight: 700;
}

.article-card h3 a {
    display: block;
}

.article-card time {
    grid-column: 2;
}

.article-card::after {
    content: "";
    grid-column: 2;
    height: 1px;
    background: #d7d7d7;
    align-self: end;
    margin-top: var(--space-2);
}

.article-card-status {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    row-gap: 0;
}

.article-card-status-copy {
    display: grid;
    gap: var(--space-2);
    width: 100%;
    max-width: 620px;
}

.article-card-status::after {
    grid-column: 1;
}

.article-card-no-date .article-card-image {
    grid-row: 1 / span 3;
}

.article-card h3 a:hover,
.article-content a:hover {
    color: #222222;
}

.article-card p,
.article-content p,
.article-content li,
.article-content blockquote {
    color: var(--text-body);
    font-family: "Merriweather", serif;
    line-height: 1.8;
}

.section {
    padding: var(--space-6) 0 0;
}

.site-footer {
    background: #f8f8f8;
    border-top: 1px solid var(--border);
    padding: var(--space-8) 0 var(--space-5);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    gap: var(--space-4);
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-bottom {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    white-space: normal;
    overflow-wrap: anywhere;
}

.article-main {
    padding-top: var(--space-6);
}

.article-hero {
    padding: var(--space-4) 0 var(--space-7);
}

.article-hero .content-container {
    display: grid;
    gap: var(--space-4);
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #0d0d0d;
    font-size: 0.92rem;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.article-breadcrumb a {
    color: #0d0d0d;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #0d0d0d;
    text-underline-offset: 0.14em;
}

.article-breadcrumb-current {
    color: #0d0d0d;
}

.article-hero h1 {
    color: #2f2f2f;
    font-size: clamp(1.85rem, 4.1vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.article-date-centered {
    color: var(--text-strong);
    font-family: "Merriweather", serif;
    font-size: 1.14rem;
    line-height: 1.2;
    text-align: center;
}

.article-hero p {
    max-width: 58ch;
    color: #0d0d0d;
    font-family: "Merriweather", serif;
    font-size: clamp(1.06rem, 1.45vw, 1.2rem);
    line-height: 1.8;
}

.article-content {
    display: grid;
    gap: var(--space-6);
}

.article-content h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    line-height: 1.15;
    margin-top: var(--space-2);
}

.article-content h3 {
    font-size: 1.28rem;
    line-height: 1.3;
}

.article-content a {
    color: #0d0d0d;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #0d0d0d;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.article-content ul,
.article-content ol {
    padding-left: 1.3rem;
    display: grid;
    gap: 0.55rem;
}

.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: var(--space-4);
    font-style: italic;
}

.article-content hr {
    border: 0;
    border-top: 1px solid var(--border);
}

.article-content p,
.article-content li,
.article-content blockquote {
    font-size: 1.08rem;
    color: #0d0d0d;
}

.article-cover {
    display: grid;
    gap: 10px;
}

.article-cover img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 0;
    background: #f0f0f0;
}

.source-note {
    color: #0d0d0d;
    font-size: 0.9rem;
    font-family: "Inter", sans-serif;
}

.article-toc,
.article-highlight {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.article-highlight {
    border-left: 8px solid var(--accent);
    box-shadow: 0 10px 28px rgba(13, 13, 13, 0.08);
}

.toc-title,
.highlight-title {
    color: var(--text-strong);
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-toc ul,
.article-highlight ul {
    margin-top: 12px;
}

.article-toc {
    width: fit-content;
    max-width: 100%;
}

.article-toc ul {
    padding-left: 1rem;
}

.article-toc a {
    color: #0d0d0d;
    text-decoration: underline;
    text-decoration-color: #0d0d0d;
    text-underline-offset: 0.16em;
    font-size: 0.96rem;
}

.highlight-title {
    margin-bottom: 10px;
}

.inline-image {
    display: grid;
    gap: 10px;
}

.inline-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 0;
    background: #f0f0f0;
}

.editorial-box {
    background: #fcfcfc;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.editorial-box-title {
    color: var(--text-strong);
    font-family: "Inter", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(
        auto-fit,
        minmax(180px, 1fr)
    );
}

.stat-card,
.cta-box,
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-card {
    padding: var(--space-4);
}

.stat-value {
    display: block;
    color: var(--text-strong);
    font-family: "Merriweather", serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.05;
}

.stat-label,
.faq-item summary {
    color: var(--text-strong);
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.stat-note {
    display: block;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-family: "Inter", sans-serif;
}

.key-takeaway {
    border-left: 3px solid var(--accent);
    padding: var(--space-3) var(--space-4);
    background: #fcfcfc;
}

.cta-box {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-5);
    justify-items: center;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.2;
}

.cta-box .btn {
    width: fit-content;
    padding: 14px 22px;
    font-size: 1.04rem;
    color: #ffffff;
}

.article-content a.btn,
.article-content a.btn:hover,
.article-content a.btn:visited {
    color: #ffffff;
    text-decoration: none;
}

.cluster-link-line {
    font-family: "Inter", sans-serif;
    font-size: 0.98rem;
}

.article-content figure {
    margin: 0;
}

.faq-list {
    display: grid;
    gap: var(--space-3);
}

.faq-item {
    padding: var(--space-3) var(--space-4);
}

.faq-item summary {
    cursor: pointer;
}

.faq-item p {
    margin-top: 10px;
}

@media (min-width: 760px) {
    .nav-wrap {
        grid-template-columns: 120px 1fr auto;
        gap: var(--space-5);
    }

    .nav-actions {
        display: inline-flex;
        align-items: center;
        gap: var(--space-3);
    }

    .nav-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-4);
    }

    .nav-links a {
        font-weight: 500;
        color: var(--text-strong);
    }

    .nav-links a:hover {
        color: #212121;
    }

    .nav-links .nav-blog-link:hover,
    .mobile-menu-links .nav-blog-link:hover {
        opacity: 0.82;
    }

    .nav-toggle,
    .mobile-menu {
        display: none !important;
    }

    .nav-cta {
        display: inline-flex;
    }

    main {
        padding-top: var(--space-7);
    }

    .hero-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: var(--space-6);
    }

    .hero-feature {
        max-width: none;
    }

    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 180px 1fr 1fr;
        align-items: start;
    }

    .cta-box {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .article-cover img,
    .inline-image img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .article-content p,
    .article-content ul,
    .article-content ol,
    .article-content blockquote,
    .article-content h2,
    .source-note {
        padding-left: 16px;
        padding-right: 16px;
    }

    .article-content ul,
    .article-content ol {
        padding-left: calc(16px + 1rem);
        padding-right: 16px;
    }

    .stat-grid {
        display: flex;
        flex-direction: column;
    }

    .article-toc {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 16px;
    }

    .article-toc ul {
        padding-left: 1rem;
        padding-right: 0;
    }

    .article-toc li {
        margin-left: 0;
    }

    .cta-box .btn {
        display: flex;
        width: 100%;
        min-height: 48px;
        justify-content: center;
        text-align: center;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .article-highlight,
    .key-takeaway,
    .editorial-box,
    .cta-box,
    .faq-item,
    .article-toc,
    .stat-card,
    .article-content blockquote {
        max-width: 100%;
        overflow-x: hidden;
    }
}
