:root {
    --ink: #071013;
    --ink-2: #0d1b1e;
    --green: #00d084;
    --green-strong: #00a96f;
    --mint: #ddf7ee;
    --yellow: #ffd338;
    --paper: #ffffff;
    --paper-soft: #f5f7f4;
    --text: #15221f;
    --muted: #5b6c67;
    --line: rgba(7, 16, 19, 0.14);
    --container: 1240px;
    color: var(--text);
    background: var(--paper);
    font-family: "Inter", system-ui, sans-serif;
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 32px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 6px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.reading-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 90;
    width: 0;
    height: 4px;
    background: var(--green);
}

.site-header {
    position: relative;
    z-index: 20;
    padding: 20px 0;
    color: #f2fffa;
    background: var(--ink);
}

.header-inner,
.hero-inner,
.feature-figure,
.article-layout,
.blog-index,
.site-footer-inner {
    width: min(calc(100% - 64px), var(--container));
    margin: 0 auto;
}

.header-inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    min-height: 52px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.brand img {
    width: auto;
    height: 34px;
}

.header-label {
    justify-self: center;
    color: #9eb4ad;
    font-size: 14px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-link {
    color: #dce9e5;
    font-size: 14px;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 7px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--ink);
    background: var(--green);
}

.button-primary:hover {
    background: #20dfa1;
}

.button-outline {
    color: var(--ink);
    border: 1px solid var(--line);
    background: #fff;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid #3f8cff;
    outline-offset: 3px;
}

.article-hero {
    padding: 84px 0 56px;
    background: var(--paper-soft);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 800px) 1fr;
    gap: 80px;
    align-items: end;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: #61716c;
    font-size: 13px;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--green-strong);
}

.category {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 169, 111, 0.22);
    border-radius: 999px;
    padding: 5px 11px;
    color: #007d53;
    background: rgba(0, 208, 132, 0.08);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 800px;
    margin: 0;
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 66px;
    font-weight: 550;
    line-height: 1.02;
    letter-spacing: 0;
}

.article-deck {
    max-width: 720px;
    margin: 30px 0 0;
    color: #495b56;
    font-size: 20px;
    line-height: 1.55;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 30px;
    color: #6a7975;
    font-size: 13px;
}

.article-meta strong {
    color: #2e3c38;
}

.hero-aside {
    border-left: 1px solid var(--line);
    padding-left: 28px;
    padding-bottom: 8px;
}

.hero-aside span {
    display: block;
    margin-bottom: 12px;
    color: #71807c;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-aside strong {
    display: block;
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 30px;
    font-weight: 550;
    line-height: 1.12;
}

.feature-wrap {
    padding: 0 0 88px;
    background: var(--paper-soft);
}

.feature-figure {
    margin-top: 0;
}

.feature-figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center 46%;
    border-radius: 8px;
}

.feature-figure-bb {
    position: relative;
}

.feature-figure-bb .feature-logo-overlay {
    position: absolute;
    top: 12.8%;
    right: 4.8%;
    width: 22%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 8px;
}

.feature-figure figcaption {
    margin-top: 12px;
    color: #70807b;
    font-size: 12px;
    line-height: 1.5;
}

.article-layout {
    display: grid;
    grid-template-columns: 92px minmax(0, 720px) 250px;
    justify-content: center;
    gap: 48px;
    padding: 96px 0 120px;
}

.article-layout.article-layout-single {
    grid-template-columns: minmax(0, 720px);
}

.share-rail,
.toc {
    align-self: start;
    position: sticky;
    top: 28px;
}

.share-rail {
    display: grid;
    gap: 12px;
}

.share-rail span,
.toc-title {
    color: #71807c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    font-size: 16px;
    cursor: pointer;
}

.share-button:hover {
    border-color: var(--green-strong);
    color: #007d53;
}

.article-content {
    min-width: 0;
}

.article-content > p:first-child {
    margin-top: 0;
    color: #2e3d39;
    font-size: 22px;
    line-height: 1.7;
}

.article-content p,
.article-content li {
    color: #344641;
    font-size: 18px;
    line-height: 1.82;
}

.article-content p {
    margin: 0 0 26px;
}

.article-content h2 {
    margin: 68px 0 24px;
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.article-content h3 {
    margin: 44px 0 16px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.25;
}

.article-content ul {
    margin: 0 0 30px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.article-content li::marker {
    color: var(--green-strong);
}

.article-content a {
    color: #007d53;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.article-content blockquote {
    margin: 34px 0;
    border-left: 5px solid var(--yellow);
    padding: 22px 28px;
    background: #fff8d9;
}

.article-content blockquote p {
    margin: 0;
    color: #273732;
    font-family: "Newsreader", Georgia, serif;
    font-size: 24px;
    line-height: 1.45;
}

.article-table-wrap {
    width: 100%;
    margin: 30px 0 38px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
}

.article-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.55;
}

.article-table th,
.article-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.article-table th {
    color: var(--ink);
    background: var(--paper-soft);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

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

.editorial-note {
    margin: 52px 0 0;
    border-top: 1px solid var(--line);
    padding-top: 30px;
}

.editorial-note h2 {
    margin-top: 0;
    font-size: 26px;
}

.editorial-note p {
    color: var(--muted);
    font-size: 15px;
}

.intro-callout {
    margin: 34px 0 8px;
    border: 1px solid rgba(0, 169, 111, 0.22);
    border-radius: 8px;
    padding: 24px 26px;
    background: var(--mint);
}

.intro-callout strong {
    display: block;
    margin-bottom: 8px;
    color: #006e49;
    font-size: 14px;
    text-transform: uppercase;
}

.intro-callout p {
    margin: 0;
    color: #23443a;
    font-size: 17px;
    line-height: 1.65;
}

.article-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin: 56px 0;
    border-radius: 8px;
    padding: 30px;
    color: #f3fffb;
    background: var(--ink-2);
}

.article-cta p {
    max-width: 640px;
    margin: 18px 0 0;
    color: #d4e5df;
    font-size: 17px;
    line-height: 1.65;
}

.article-cta p a {
    color: #5fe8b7;
    font-weight: 800;
    text-decoration-thickness: 2px;
}

.article-cta-brand {
    display: block;
    width: 132px;
    height: auto;
    margin-bottom: 18px;
}

.article-cta small {
    display: block;
    margin-bottom: 7px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-cta strong {
    display: block;
    max-width: 430px;
    font-family: "Newsreader", Georgia, serif;
    font-size: 28px;
    font-weight: 550;
    line-height: 1.2;
}

.article-cta strong a {
    color: inherit;
}

.article-cta .button.button-primary {
    min-width: 220px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #06251d;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.18);
}

.data-figure {
    margin: 40px 0 46px;
}

.data-figure img {
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--paper-soft);
}

.data-figure figcaption {
    margin-top: 11px;
    color: #70807b;
    font-size: 13px;
    line-height: 1.55;
}

.article-cta-inline {
    margin: 44px 0;
    padding: 26px 28px;
}

.article-cta-inline .article-cta-brand {
    width: 116px;
    margin-bottom: 14px;
}

.article-cta-inline strong {
    max-width: 500px;
    font-size: 25px;
}

.article-cta-inline p {
    max-width: 520px;
    margin-top: 12px;
    font-size: 15px;
}

.checklist {
    display: grid;
    gap: 10px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid var(--line);
    padding: 13px 0 13px 34px;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 22px 42px 22px 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 17px;
    font-size: 26px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin-top: -6px;
    padding-right: 24px;
}

.source-list {
    margin-top: 32px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.related-reading {
    margin-top: 70px;
    border-top: 1px solid var(--line);
    padding-top: 36px;
}

.related-reading h2 {
    margin-top: 0;
}

.related-grid {
    display: grid;
    gap: 12px;
}

.related-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 18px;
    background: var(--paper-soft);
}

.related-item span {
    color: #007d53;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.related-item strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.35;
}

.toc {
    border-left: 1px solid var(--line);
    padding-left: 24px;
}

.toc nav {
    display: grid;
    gap: 0;
    margin-top: 16px;
}

.toc a {
    border-left: 2px solid transparent;
    padding: 8px 0 8px 13px;
    color: #6a7975;
    font-size: 13px;
    line-height: 1.35;
}

.toc a:hover,
.toc a.is-active {
    border-left-color: var(--green-strong);
    color: #007d53;
}

.site-footer {
    color: #dce9e5;
    background: var(--ink);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    padding: 52px 0;
}

.site-footer p {
    max-width: 580px;
    margin: 0;
    color: #a9bdb7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 18px;
    font-size: 13px;
    font-weight: 700;
}

.site-footer small {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    color: #748983;
}

.cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(calc(100% - 44px), 700px);
    border: 1px solid rgba(0, 208, 132, 0.28);
    border-radius: 8px;
    padding: 20px;
    color: #f2fffa;
    background: #0a1719;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    font-size: 15px;
}

.cookie-banner p {
    margin: 5px 0 0;
    color: #afc1bc;
    font-size: 13px;
    line-height: 1.45;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.cookie-actions .button {
    min-height: 40px;
    padding: 0 15px;
}

.blog-index {
    width: 100%;
    max-width: none;
    margin: 0;
    background: #fff;
}

.blog-shell {
    width: min(calc(100% - 64px), var(--container));
    margin: 0 auto;
}

.index-hero {
    border-bottom: 1px solid var(--line);
    padding: 82px 0 68px;
    background: #fff;
}

.index-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(320px, 1fr);
    gap: 96px;
    align-items: end;
}

.index-hero-copy h1 {
    max-width: 760px;
    margin: 22px 0 24px;
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 68px;
    font-weight: 550;
    line-height: 0.98;
}

.index-hero-copy p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.index-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.index-hero-stats div {
    display: flex;
    min-height: 112px;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 7px;
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}

.index-hero-stats div:last-child {
    border-right: 0;
}

.index-hero-stats dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.index-hero-stats dd {
    margin: 0;
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
}

.editorial-toolbar {
    border-bottom: 1px solid var(--line);
    background: #f2f6f3;
}

.editorial-toolbar-inner {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) minmax(300px, 360px);
    gap: 28px;
    align-items: center;
    padding: 26px 0;
}

.editorial-toolbar-heading {
    display: grid;
    gap: 4px;
}

.editorial-toolbar-heading strong {
    color: var(--ink);
    font-size: 15px;
}

.editorial-toolbar-heading span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.editorial-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.editorial-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    border: 1px solid rgba(7, 16, 19, 0.13);
    border-radius: 7px;
    padding: 0 13px;
    color: #344641;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.editorial-filter span {
    color: #71807c;
    font-size: 10px;
}

.editorial-filter:hover {
    border-color: rgba(0, 169, 111, 0.55);
    color: #007d53;
}

.editorial-filter.is-active {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
}

.editorial-filter.is-active span {
    color: #9ddbc5;
}

.blog-search label {
    display: block;
    margin-bottom: 7px;
    color: #41524d;
    font-size: 11px;
    font-weight: 800;
}

.blog-search-control {
    position: relative;
}

.blog-search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(7, 16, 19, 0.18);
    border-radius: 7px;
    padding: 0 44px 0 14px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-size: 13px;
    outline: none;
}

.blog-search input:focus {
    border-color: var(--green-strong);
    box-shadow: 0 0 0 3px rgba(0, 169, 111, 0.12);
}

.blog-search-control button {
    position: absolute;
    top: 50%;
    right: 6px;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #5b6c67;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    transform: translateY(-50%);
}

.blog-search p {
    margin: 7px 0 0;
    color: #71807c;
    font-size: 11px;
}

.blog-sections {
    padding: 22px 0 124px;
}

.editorial-section {
    padding: 74px 0 80px;
    border-bottom: 1px solid var(--line);
}

.editorial-section:last-of-type {
    border-bottom: 0;
}

.editorial-section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 80px;
    align-items: end;
    margin-bottom: 32px;
}

.section-kicker {
    display: block;
    margin-bottom: 10px;
    color: #007d53;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.editorial-section-header h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.editorial-section-header p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-index .article-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(7, 16, 19, 0.14);
    border-radius: 7px;
    background: #f7f9f7;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.blog-index .article-card:hover {
    border-color: rgba(0, 169, 111, 0.5);
    box-shadow: 0 16px 32px rgba(7, 16, 19, 0.08);
    transform: translateY(-3px);
}

.blog-index .article-card[hidden],
.editorial-section[hidden] {
    display: none;
}

.article-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e9eeeb;
}

.article-card-media > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.article-card:hover .article-card-media > img:first-child {
    transform: scale(1.018);
}

.article-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 25px 26px;
}

.article-card h3 {
    margin: 15px 0 13px;
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.08;
}

.article-card p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.article-card .article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #007d53;
    font-size: 13px;
    font-weight: 800;
}

.article-card .article-link span {
    transition: transform 160ms ease;
}

.article-card:hover .article-link span {
    transform: translateX(3px);
}

.article-card-lead {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: 360px !important;
    margin-bottom: 22px;
}

.article-card-lead .article-card-media {
    height: 100%;
    aspect-ratio: auto;
}

.article-card-lead .article-card-content {
    justify-content: center;
    padding: 42px 46px;
}

.article-card-lead h3 {
    max-width: 560px;
    margin: 17px 0 16px;
    font-size: 45px;
}

.article-card-lead p {
    max-width: 560px;
    font-size: 16px;
}

.article-card-image-bb .article-card-logo-overlay {
    position: absolute;
    top: 12.8%;
    right: 4.8%;
    width: 22%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 6px;
}

.blog-empty {
    margin: 74px 0 0;
    border: 1px solid var(--line);
    padding: 54px 24px;
    text-align: center;
    background: #f7f9f7;
}

.blog-empty strong {
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: 32px;
}

.blog-empty p {
    margin: 10px 0 22px;
    color: var(--muted);
}

@media (max-width: 1080px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-aside {
        max-width: 600px;
    }

    .article-layout {
        grid-template-columns: 62px minmax(0, 720px);
    }

    .toc {
        display: none;
    }
}

@media (max-width: 760px) {
    .header-inner,
    .hero-inner,
    .feature-figure,
    .article-layout,
    .blog-index,
    .site-footer-inner {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .header-label,
    .back-link {
        display: none;
    }

    .brand img {
        height: 29px;
    }

    .button {
        min-height: 42px;
        padding: 0 15px;
        font-size: 13px;
    }

    .article-hero {
        padding: 58px 0 42px;
    }

    .breadcrumbs {
        margin-bottom: 26px;
    }

    .article-hero h1,
    .index-intro h1 {
        font-size: 46px;
        line-height: 1.03;
    }

    .article-deck {
        font-size: 18px;
    }

    .hero-aside {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 24px 0 0;
    }

    .feature-wrap {
        padding-bottom: 60px;
    }

    .feature-figure img {
        aspect-ratio: 16 / 9;
    }

    .feature-figure-bb > img:first-child {
        aspect-ratio: 16 / 7;
    }

    .article-layout {
        display: block;
        padding: 64px 0 84px;
    }

    .share-rail {
        position: static;
        display: flex;
        align-items: center;
        margin-bottom: 38px;
    }

    .article-content > p:first-child {
        font-size: 20px;
    }

    .article-content p,
    .article-content li {
        font-size: 17px;
        line-height: 1.75;
    }

    .article-content h2 {
        margin-top: 54px;
        font-size: 36px;
    }

    .article-content h3 {
        font-size: 22px;
    }

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

    .article-cta .button {
        width: 100%;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer small {
        grid-column: auto;
    }

    .cookie-banner {
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: stretch;
        width: calc(100% - 24px);
    }

    .cookie-actions .button {
        flex: 1;
    }

    .index-intro,
    .article-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-index {
        display: block;
    }

    .index-intro {
        margin-bottom: 46px;
    }

    .article-card {
        margin-bottom: 20px;
    }

    .article-card-featured > a {
        height: 210px;
    }

    .article-card-featured > div {
        min-height: 0;
        padding: 26px;
    }

    .article-card-featured h2 {
        font-size: 36px;
    }

    .article-card:not(.article-card-featured) img {
        height: 180px;
    }

    .article-card h2 {
        font-size: 34px;
    }
}

@media (max-width: 1100px) {
    .index-hero-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .index-hero-stats {
        max-width: 620px;
    }

    .editorial-toolbar-inner {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .blog-search {
        grid-column: 1 / -1;
        max-width: 560px;
    }

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

    .editorial-section-header {
        gap: 48px;
    }
}

@media (max-width: 760px) {
    .blog-index {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .blog-shell {
        width: min(calc(100% - 32px), var(--container));
    }

    .index-hero {
        padding: 56px 0 46px;
    }

    .index-hero-inner {
        gap: 34px;
    }

    .index-hero-copy h1 {
        margin-top: 18px;
        font-size: 48px;
        line-height: 1;
    }

    .index-hero-copy p {
        font-size: 17px;
    }

    .index-hero-stats {
        width: 100%;
    }

    .index-hero-stats div {
        min-height: 92px;
        padding: 14px 10px;
    }

    .index-hero-stats dt {
        font-size: 9px;
    }

    .index-hero-stats dd {
        font-size: 31px;
    }

    .editorial-toolbar-inner {
        display: block;
        padding: 22px 0 24px;
    }

    .editorial-toolbar-heading {
        margin-bottom: 16px;
    }

    .editorial-filters {
        flex-wrap: nowrap;
        margin-right: -16px;
        padding: 0 16px 5px 0;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .editorial-filter {
        flex: 0 0 auto;
    }

    .blog-search {
        max-width: none;
        margin-top: 18px;
    }

    .blog-sections {
        padding-top: 0;
        padding-bottom: 84px;
    }

    .editorial-section {
        padding: 56px 0 62px;
    }

    .editorial-section-header {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 26px;
    }

    .editorial-section-header h2 {
        font-size: 40px;
    }

    .article-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-index .article-card {
        margin-bottom: 0;
    }

    .article-card-lead {
        grid-template-columns: 1fr;
        min-height: 0 !important;
        margin-bottom: 18px;
    }

    .article-card-lead .article-card-media {
        aspect-ratio: 16 / 9;
    }

    .article-card-lead .article-card-content {
        padding: 26px;
    }

    .article-card-lead h3,
    .article-card h3 {
        font-size: 30px;
    }

    .article-card-lead p {
        font-size: 14px;
    }

    .article-card-content {
        padding: 22px 22px 24px;
    }

    .blog-empty {
        margin-top: 54px;
        padding: 42px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
