:root {
    --forest: #284b3d;
    --forest-dark: #1e392e;
    --sage: #dfe6d9;
    --ivory: #faf8f2;
    --cream: #f0ede3;
    --clay: #e7cdbd;
    --terra: #a54f35;
    --ink: #28372f;
    --text: #4d554e;
    --muted: #6c7067;
    --line: #d8d9cc;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: 'Segoe UI', Arial, sans-serif;
    --space: clamp(24px, 5vw, 80px);
    --max: 1320px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 28px;
}
body {
    margin: 0;
    background: var(--ivory);
    color: var(--text);
    font: 16px/1.65 var(--sans);
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--terra);
}
button,
input,
textarea {
    font: inherit;
}
button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
}
button,
.button {
    border: 1px solid var(--forest);
    background: var(--forest);
    color: #fff;
    padding: 15px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.18s;
}
button:hover,
.button:hover {
    background: var(--forest-dark);
    color: #fff;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
figure:focus-visible {
    outline: 3px solid var(--terra);
    outline-offset: 5px;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
figure {
    margin: 0;
}
h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--ink);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.035em;
}
h1 {
    font-size: clamp(44px, 5.5vw, 78px);
}
h2 {
    font-size: clamp(35px, 3.7vw, 51px);
}
h3 {
    font-size: 27px;
    line-height: 1.25;
}
em {
    font-weight: 400;
    color: var(--terra);
}
p {
    margin: 0 0 22px;
}
h2 + p,
h3 + p {
    margin-top: 23px;
}
.wrap {
    width: min(calc(100% - var(--space) * 2), var(--max));
    margin-inline: auto;
}
.section {
    padding-block: 90px;
}
.eyebrow {
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.17em;
    line-height: 1.6;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: var(--forest);
}
.fine {
    font-size: 13px;
    line-height: 1.6;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    color: var(--forest);
    font-weight: 600;
    border-bottom: 1px solid var(--forest);
    padding: 8px 0;
}
.text-link span {
    font-size: 19px;
}
.topline {
    background: var(--forest);
    color: #f8f8ed;
    padding: 8px var(--space);
    font-size: 11px;
    letter-spacing: 0.07em;
    display: flex;
    justify-content: space-between;
}
.topline span {
    opacity: 0.85;
}
.site-header {
    border-bottom: 1px solid var(--line);
}
.header-inner {
    min-height: 106px;
    max-width: calc(var(--max) + var(--space) * 2);
    padding-inline: var(--space);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}
.brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--forest);
}
.brand > span {
    font: 34px/0.95 var(--serif);
    letter-spacing: -1.5px;
}
.brand-small {
    display: block;
    font: 9px/1.5 var(--sans);
    letter-spacing: 2px;
    margin-top: 9px;
}
.header-inner nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    font-size: 13px;
    color: var(--ink);
}
.header-inner nav > a {
    padding-block: 14px;
}
.nav-group {
    position: relative;
}
.nav-group summary {
    padding-block: 14px;
    cursor: pointer;
    list-style: none;
}
.nav-group summary:after {
    content: '⌄';
    margin-left: 7px;
}
.nav-group summary::-webkit-details-marker {
    display: none;
}
.dropdown {
    position: absolute;
    z-index: 5;
    top: 100%;
    left: -20px;
    width: 260px;
    background: var(--ivory);
    border: 1px solid var(--line);
    padding: 15px;
    box-shadow: 0 14px 24px #20392b12;
}
.dropdown a {
    display: block;
    padding: 12px;
}
.dropdown a:hover {
    background: var(--cream);
}
.search-toggle {
    padding: 12px;
    border-left: 1px solid var(--line);
}
.menu-toggle {
    display: none;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-block: 64px 70px;
    align-items: center;
}
.hero .eyebrow {
    display: flex;
    gap: 12px;
    align-items: center;
}
.tiny-line {
    width: 26px;
    height: 1px;
    background: var(--terra);
}
.hero h1 {
    line-height: 1.02;
    letter-spacing: -0.055em;
}
.hero-description {
    max-width: 440px;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 28px;
}
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 25px;
    margin-top: 30px;
}
.hero-actions .text-link {
    font-size: 12px;
    border: 0;
    gap: 8px;
}
.hero-image {
    position: relative;
    padding-bottom: 49px;
}
.hero-image > img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: 59% center;
    border-radius: 46% 46% 0 0;
}
.hero-image figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font: italic 13px var(--serif);
}
.hero-image figcaption span:first-child {
    font: 9px var(--sans);
    letter-spacing: 0.14em;
}
.image-index {
    position: absolute;
    left: -28px;
    bottom: 130px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 9px;
    letter-spacing: 0.16em;
}
.intro-strip {
    background: var(--cream);
    border-block: 1px solid var(--line);
    padding: 27px 0;
}
.intro-strip > .wrap {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-strip p {
    margin: 0;
    font-size: 14px;
}
.intro-strip p:first-child {
    font: 21px/1.45 var(--serif);
    color: var(--forest);
}
.intro-strip p strong {
    font-weight: 400;
}
.intro-strip a {
    font-size: 12px;
    border-left: 1px solid #bdc5b5;
    padding-left: 34px;
    color: var(--forest);
}
.discover {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.discover > div > p:not(.eyebrow) {
    max-width: 450px;
    margin-top: 26px;
}
.principles > div {
    display: flex;
    gap: 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.principles > div:first-child {
    padding-top: 0;
}
.number {
    font: italic 15px var(--serif);
    color: var(--terra);
    padding-top: 5px;
}
.principles h3 {
    font-size: 25px;
}
.principles p {
    font-size: 14px;
    margin: 10px 0 0;
}
.learning {
    background: #eceee5;
}
.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 42px;
}
.section-heading > p,
.section-heading > div + div {
    max-width: 410px;
}
.section-heading > p {
    margin: 0;
}
.learning-layout {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 68px;
    align-items: center;
}
.learning-layout figure img {
    height: 445px;
    width: 100%;
    object-fit: cover;
}
.learning-layout figcaption {
    font-size: 11px;
    margin-top: 12px;
}
.learning-list > a {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 19px 0;
    border-bottom: 1px solid #c9cebf;
}
.learning-list > a:first-child {
    padding-top: 0;
}
.learning-list > a > span:last-child {
    margin-left: auto;
}
.learning-list h3 {
    font-size: 25px;
}
.learning-list p {
    font-size: 13px;
    margin: 6px 0 0;
}
.parent-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}
.comparison > p:not(.eyebrow) {
    margin-top: 26px;
    max-width: 500px;
}
.parent-note {
    background: var(--clay);
    padding: 46px;
    position: relative;
}
.parent-note h3 {
    font-size: 35px;
}
.parent-note .sun {
    float: right;
    color: var(--terra);
    font-size: 45px;
    line-height: 1;
}
.parent-note p:not(.eyebrow) {
    font-size: 14px;
}
.australia {
    background: var(--forest);
    color: #e6e9df;
}
.australia h2,
.australia .eyebrow {
    color: var(--ivory);
}
.australia em {
    color: #d8c5a7;
}
.australia .fine {
    color: #c0cfbd;
    margin-bottom: 0;
}
.state-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #698071;
    border-left: 1px solid #698071;
}
.state-grid a {
    padding: 27px 24px;
    border-right: 1px solid #698071;
    border-bottom: 1px solid #698071;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    font-size: 12px;
}
.state-grid a:hover {
    background: #355b48;
    color: #fff;
}
.state-code {
    grid-column: 1/-1;
    font: 35px var(--serif);
    color: #fff;
}
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.story-card img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
    margin-bottom: 23px;
}
.story-card .eyebrow {
    font-size: 9px;
    margin-bottom: 11px;
}
.story-card h3 {
    font-size: 27px;
    line-height: 1.25;
}
.story-card a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}
.framework {
    padding: 45px 50px;
    background: var(--sage);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}
.framework h2 {
    font-size: 34px;
}
.framework p:not(.eyebrow) {
    font-size: 14px;
}
.latest {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
}
.latest > div > .text-link {
    margin-top: 25px;
}
.latest-list > a {
    display: grid;
    grid-template-columns: 90px 1fr 20px;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.latest-list > a:first-child {
    padding-top: 0;
}
.latest-list > a > span:first-child {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--muted);
}
.latest-list h3 {
    font-size: 25px;
}
.faq {
    background: var(--cream);
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 75px;
}
.faq h2 + p {
    margin-top: 25px;
}
.faq details {
    border-bottom: 1px solid #c7cdbc;
}
.faq summary {
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: var(--forest);
    list-style: none;
    gap: 15px;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary > span {
    font-size: 23px;
    font-weight: 300;
}
.faq details[open] summary > span {
    transform: rotate(45deg);
}
.faq details p {
    font-size: 14px;
    padding-right: 25px;
}
.faq details a,
.prose a {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--forest);
}
.search-band {
    padding-block: 64px;
}
.search-band form {
    display: flex;
    border-bottom: 1px solid var(--forest);
    gap: 20px;
    padding-bottom: 15px;
}
.search-band input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font: 27px var(--serif);
    color: var(--forest);
}
.search-band input::placeholder {
    color: #74766c;
}
.site-footer {
    background: #e9e8dd;
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 45px;
}
.footer-grid > div > p {
    font: 28px/1.2 var(--serif);
    color: var(--forest);
    margin-top: 26px;
}
.footer-grid .fine {
    font: 12px/1.7 var(--sans);
    color: var(--text);
}
.footer-grid h2 {
    font: 600 12px var(--sans);
    letter-spacing: 0.06em;
    margin: 10px 0 25px;
}
.footer-grid > div > a:not(.brand) {
    display: block;
    font-size: 12px;
    margin-bottom: 13px;
}
.footer-bottom {
    padding: 24px 0;
    margin-top: 38px;
    border-top: 1px solid #c9cbbc;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
}
.skip {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 100;
    background: white;
    padding: 15px;
}
.skip:focus {
    top: 10px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.breadcrumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    margin-bottom: 45px;
}
.breadcrumbs a {
    text-decoration: underline;
}
.article-top {
    padding-block: 35px 48px;
    border-bottom: 1px solid var(--line);
}
.article-top h1 {
    max-width: 1000px;
    font-size: clamp(40px, 5vw, 70px);
}
.article-meta {
    font-size: 12px;
    margin: 25px 0 0;
    display: flex;
    gap: 16px;
}
.article-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 740px);
    gap: 80px;
    justify-content: start;
    padding-block: 50px 70px;
}
.contents {
    font-size: 13px;
}
.contents details {
    position: sticky;
    top: 25px;
}
.contents summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--forest);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}
.contents nav a {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    padding: 9px 0;
}
.reading-note {
    margin-top: 30px;
    padding: 22px;
    background: var(--cream);
}
.reading-note .eyebrow {
    font-size: 9px;
}
.reading-note p:last-child {
    margin: 0;
}
.prose {
    font-size: 17px;
    line-height: 1.85;
    min-width: 0;
}
.prose p {
    margin-bottom: 23px;
}
.prose > p:first-of-type {
    font-size: 20px;
    color: var(--forest);
}
.prose h2 {
    font-size: 34px;
    margin: 45px 0 23px;
}
.prose h3 {
    font-size: 27px;
    margin: 30px 0 18px;
}
.prose h2 strong,
.prose h3 strong {
    font-weight: 400;
}
.prose hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 38px 0;
}
.prose figure {
    margin: 25px 0;
}
.prose figure img {
    width: 100%;
    height: auto;
}
.prose figcaption {
    font-size: 12px;
}
.prose ul,
.prose ol {
    padding-left: 25px;
}
.prose li {
    padding-left: 7px;
    margin: 9px 0;
}
.prose table {
    border-collapse: collapse;
    width: 100%;
    min-width: 500px;
    font-size: 14px;
    line-height: 1.6;
}
.prose td,
.prose th {
    padding: 16px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.prose th,
.prose tr:first-child {
    background: var(--sage);
    color: var(--forest);
}
.wp-block-table {
    overflow-x: auto;
    max-width: 100%;
}
.callout {
    background: var(--sage);
    border-left: 3px solid var(--forest);
    padding: 28px;
    margin: 35px 0;
}
.callout h2 {
    font-size: 28px;
    margin: 0 0 20px;
}
.callout p:last-child {
    margin: 0;
}
.related {
    border-top: 1px solid var(--line);
}
.related-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.library > p:not(.eyebrow) {
    margin-top: 24px;
}
.search-form {
    margin: 40px 0;
}
.search-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
}
.search-form > div {
    display: flex;
    max-width: 800px;
}
.search-form input {
    flex: 1;
    min-width: 0;
    padding: 15px;
    border: 1px solid #899a89;
    background: white;
}
.search-results {
    max-width: 900px;
}
.search-results article {
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}
.search-results article h2 {
    font-size: 31px;
}
.search-results article p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 15px;
}
.results-count {
    font-size: 13px;
}
.topic-links {
    margin-top: 60px;
    border-top: 1px solid var(--line);
    padding-top: 30px;
}
.topic-links h2 {
    margin-bottom: 20px;
}
.topic-links > a {
    display: inline-block;
    padding: 12px 20px;
    background: var(--cream);
    margin: 0 10px 10px 0;
    font-size: 14px;
}
.empty {
    padding-block: 100px;
    min-height: 60vh;
}
.empty p:not(.eyebrow) {
    margin: 25px 0;
    max-width: 600px;
}
.contact-form label {
    display: block;
    margin-top: 18px;
}
.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid #829181;
    background: #fff;
}
.contact-form .fine {
    margin-top: 20px;
}
.honeypot {
    position: absolute;
    left: -10000px;
}
.prose .wp-block-image:empty {
    display: none;
}
@media (min-width: 1600px) {
    .hero h1 {
        font-size: 83px;
    }
    .hero-image > img {
        height: 630px;
    }
}
@media (max-width: 1150px) {
    .header-inner {
        gap: 17px;
    }
    .header-inner nav {
        gap: 16px;
        font-size: 12px;
    }
    .brand > span {
        font-size: 29px;
    }
    .brand-small {
        font-size: 8px;
    }
    .hero {
        gap: 40px;
    }
    .hero-image > img {
        height: 520px;
    }
    .hero-actions {
        gap: 10px;
    }
    .discover,
    .parent-feature {
        gap: 55px;
    }
    .intro-strip > .wrap {
        gap: 30px;
    }
    .article-layout {
        gap: 40px;
        grid-template-columns: 210px minmax(0, 1fr);
    }
}
@media (max-width: 950px) {
    .header-inner {
        min-height: 90px;
        flex-wrap: wrap;
        position: relative;
    }
    .menu-toggle {
        display: flex;
        background: transparent;
        color: var(--forest);
        padding: 10px 12px;
        border: 0;
        margin-left: auto;
        gap: 12px;
    }
    .menu-toggle:hover {
        color: white;
    }
    .header-inner nav {
        display: none;
        order: 4;
        width: 100%;
        margin: 0;
        padding-bottom: 25px;
    }
    .header-inner nav.is-open {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }
    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 0;
        border-left: 1px solid var(--line);
    }
    .nav-group summary,
    .header-inner nav > a {
        font-size: 15px;
        padding: 13px 0;
    }
    .hero-image > img {
        height: 480px;
    }
    .hero h1 {
        font-size: 55px;
    }
    .hero .eyebrow {
        font-size: 9px;
    }
    .hero-image figcaption {
        display: block;
    }
    .hero-image figcaption span {
        display: block;
        margin-bottom: 6px;
    }
    .hero-image {
        padding-bottom: 60px;
    }
    .section {
        padding-block: 65px;
    }
    .intro-strip > .wrap {
        grid-template-columns: 1fr 2fr;
    }
    .intro-strip a {
        display: none;
    }
    .learning-layout {
        gap: 35px;
    }
    .framework {
        gap: 35px;
        padding: 35px;
    }
    .footer-grid {
        gap: 28px;
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .footer-grid > div:last-child {
        grid-column: 2/4;
    }
    .state-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .state-grid a {
        padding: 22px 17px;
    }
    .state-grid a > span:nth-child(2) {
        font-size: 10px;
    }
    .faq-layout {
        gap: 35px;
    }
    .latest {
        gap: 35px;
    }
    .latest-list > a {
        grid-template-columns: 1fr 20px;
        gap: 8px;
    }
    .latest-list > a > span:first-child {
        grid-column: 1/-1;
    }
    .article-layout {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 30px;
    }
    .article-meta {
        flex-wrap: wrap;
    }
}
@media (max-width: 760px) {
    :root {
        --space: 24px;
    }
    .topline {
        justify-content: center;
        font-size: 10px;
    }
    .topline > span {
        display: none;
    }
    .header-inner {
        gap: 10px;
        min-height: 82px;
    }
    .brand > span {
        font-size: 28px;
    }
    .brand img {
        width: 33px;
        height: 40px;
    }
    .brand-small {
        font-size: 7px;
        letter-spacing: 1.8px;
    }
    .search-toggle {
        padding: 10px 0 10px 12px;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-block: 42px;
        gap: 35px;
    }
    .hero h1 {
        font-size: clamp(48px, 10.5vw, 73px);
    }
    .desktop-break {
        display: none;
    }
    .hero-description {
        max-width: 540px;
        font-size: 15px;
        margin-top: 24px;
    }
    .hero-actions {
        gap: 20px;
    }
    .hero-actions .text-link {
        font-size: 12px;
    }
    .hero-image {
        max-width: 580px;
        width: 100%;
        margin: auto;
        padding-bottom: 55px;
    }
    .hero-image > img {
        height: 390px;
        object-position: center 45%;
        border-radius: 45% 45% 0 0;
    }
    .hero-image figcaption {
        display: flex;
    }
    .image-index {
        left: -17px;
        font-size: 8px;
    }
    .intro-strip > .wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .intro-strip p:first-child {
        font-size: 23px;
    }
    .intro-strip p:first-child br {
        display: none;
    }
    .intro-strip p:first-child strong {
        margin-left: 5px;
    }
    .discover,
    .learning-layout,
    .parent-feature,
    .framework,
    .latest,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .section {
        padding-block: 55px;
    }
    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }
    .section-heading > p,
    .section-heading > div + div {
        max-width: none;
    }
    .principles > div {
        padding: 21px 0;
    }
    .learning-layout figure img {
        height: 300px;
    }
    .parent-note {
        padding: 30px;
    }
    .state-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .state-grid a {
        padding: 22px;
    }
    .state-grid a > span:nth-child(2) {
        font-size: 11px;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .story-card {
        display: grid;
        grid-template-columns: 135px 1fr;
        column-gap: 22px;
        align-content: start;
    }
    .story-card img {
        grid-row: 1/3;
        height: 145px;
        aspect-ratio: auto;
        object-fit: cover;
        margin: 0;
    }
    .story-card .eyebrow {
        font-size: 8px;
        margin: 0 0 12px;
        align-self: end;
    }
    .story-card h3 {
        font-size: 23px;
    }
    .framework h2 {
        font-size: 32px;
    }
    .latest-list h3 {
        font-size: 25px;
    }
    .search-band {
        padding-block: 45px;
    }
    .search-band input {
        font-size: 20px;
    }
    .search-band form {
        gap: 10px;
    }
    .search-band button {
        padding: 12px;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-grid > div:first-child {
        grid-column: 1/-1;
    }
    .footer-grid > div:last-child {
        grid-column: auto;
    }
    .footer-bottom {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }
    .article-top {
        padding-bottom: 32px;
    }
    .breadcrumbs {
        margin-bottom: 30px;
        font-size: 10px;
    }
    .article-layout {
        display: flex;
        flex-direction: column;
        padding-block: 28px 45px;
        gap: 30px;
    }
    .contents details {
        position: static;
        background: var(--cream);
        padding: 18px;
    }
    .contents nav {
        padding-top: 10px;
    }
    .reading-note {
        display: none;
    }
    .prose {
        font-size: 16px;
        line-height: 1.85;
    }
    .prose > p:first-of-type {
        font-size: 18px;
    }
    .prose h2 {
        font-size: 29px;
    }
    .prose h3 {
        font-size: 25px;
    }
    .article-meta {
        font-size: 10px;
        gap: 9px;
    }
    .article-top h1 {
        font-size: 42px;
        overflow-wrap: anywhere;
    }
    .library h1 {
        font-size: 47px;
    }
    .related-links {
        flex-direction: column;
        gap: 18px;
        align-items: start;
    }
    .search-form button {
        padding-inline: 14px;
    }
    .search-form input {
        padding-inline: 12px;
    }
    .search-results article h2 {
        font-size: 27px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

.prose > p.editorial-date {
    font-size: 12px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 24px;
}
.card-excerpt {
    font-size: 14px;
    line-height: 1.7;
    margin: 15px 0 0;
}
.ad-slot {
    min-height: 280px;
    max-width: 970px;
    margin: 30px auto 60px;
    background: var(--cream);
    text-align: center;
    padding: 12px;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@media (max-width: 760px) {
    .story-card .card-excerpt {
        grid-column: 1/-1;
        font-size: 13px;
    }
}

@media (max-width: 950px) {
    html:not(.js) .header-inner nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    html:not(.js) .menu-toggle {
        display: none;
    }
}
