:root {
    --bg: #f4f8f2;
    --bg-ridge: #e8f2ee;
    --surface: rgba(255, 255, 250, 0.94);
    --surface-solid: #fffffb;
    --surface-tint: #edf6f1;
    --ink: #10231f;
    --ink-soft: #233832;
    --muted: #5f706a;
    --line: rgba(16, 35, 31, 0.13);
    --line-strong: rgba(16, 35, 31, 0.22);
    --teal: #0b5a4d;
    --teal-deep: #12302a;
    --mint: #7ce0be;
    --cyan: #2f7ea1;
    --gold: #f2b84b;
    --coral: #d76266;
    --plum: #705b8f;
    --shadow: 0 18px 48px rgba(18, 48, 42, 0.12);
    --shadow-soft: 0 10px 28px rgba(18, 48, 42, 0.08);
    --radius: 8px;
    --radius-sm: 5px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(124, 224, 190, 0.13) 0 18%, transparent 18% 100%),
        radial-gradient(circle at 92% 10%, rgba(47, 126, 161, 0.16), transparent 28%),
        radial-gradient(circle at 14% 16%, rgba(242, 184, 75, 0.18), transparent 24%),
        linear-gradient(180deg, #fbfff9 0%, var(--bg) 52%, #edf5ef 100%);
    font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(16, 35, 31, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 35, 31, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 72%);
}

body::after {
    content: "";
    position: fixed;
    right: -120px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    background: conic-gradient(from 160deg, rgba(11, 90, 77, 0.10), rgba(47, 126, 161, 0.11), rgba(124, 224, 190, 0.08), rgba(11, 90, 77, 0.10));
    border-radius: 50%;
    filter: blur(4px);
}

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

a:hover {
    color: var(--teal);
}

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

code {
    padding: 0.08rem 0.28rem;
    border-radius: 4px;
    background: rgba(11, 90, 77, 0.08);
    color: var(--teal-deep);
    font-size: 0.88em;
}

::selection {
    background: rgba(124, 224, 190, 0.45);
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--surface-solid);
    background: var(--teal-deep);
    border-radius: var(--radius);
    transition: top 0.18s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.container {
    width: min(100% - 36px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(16, 35, 31, 0.10);
    background: rgba(251, 255, 249, 0.88);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.4fr);
    gap: 24px;
    align-items: center;
    min-height: 92px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.site-brand__mark {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    filter: drop-shadow(0 12px 22px rgba(18, 48, 42, 0.18));
}

.site-brand__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.site-brand__wordmark {
    color: var(--teal-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.48rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.95;
    white-space: nowrap;
}

.site-brand__tagline {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.25;
}

.site-header__navs {
    min-width: 0;
}

.site-nav .nav,
.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 10px;
    border-bottom: 2px solid transparent;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
}

.site-nav a:hover {
    border-color: var(--gold);
    color: var(--teal);
}

.site-main {
    padding: 26px 0 0;
}

.trust-strip,
.hero,
.section,
.content-shell {
    margin-bottom: 38px;
}

.trust-strip {
    padding-top: 2px;
}

.trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-left: 5px solid var(--gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 251, 0.76);
    box-shadow: var(--shadow-soft);
}

.trust-strip__label,
.eyebrow,
.panel__label,
.hub-card__eyebrow {
    margin: 0 0 8px;
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.25;
    text-transform: uppercase;
}

.trust-strip__copy {
    max-width: 56ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.trust-links,
.hub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-links a,
.hub-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(16, 35, 31, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 251, 0.78);
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 700;
}

.trust-links a:hover,
.hub-links a:hover {
    border-color: rgba(11, 90, 77, 0.30);
    background: rgba(124, 224, 190, 0.15);
    color: var(--teal);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.75fr);
    gap: 22px;
    align-items: stretch;
}

.hero__copy,
.hero__panel,
.content-hero,
.content-prose,
.sidebar-card,
.footer-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero__copy {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: clamp(30px, 5vw, 58px);
}

.hero__copy::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(11, 90, 77, 0.10), transparent 42%),
        radial-gradient(circle at 88% 24%, rgba(124, 224, 190, 0.24), transparent 28%),
        linear-gradient(135deg, transparent 0 62%, rgba(47, 126, 161, 0.10) 62% 100%);
}

.hero__copy > * {
    position: relative;
}

.hero__panel {
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(18, 48, 42, 0.97), rgba(11, 90, 77, 0.95)),
        var(--teal-deep);
    color: #f8fff9;
}

.hero__panel .panel__label {
    color: var(--mint);
}

h1,
h2,
h3,
.site-brand__wordmark {
    font-family: "Cormorant Garamond", Georgia, serif;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

h1 {
    max-width: 11ch;
    margin: 0 0 20px;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.88;
}

h2 {
    margin: 0 0 14px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.98;
}

h3 {
    margin: 0 0 8px;
    font-size: 1.58rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.04;
}

.hero__lede {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.content-hero .hero__lede {
    max-width: 72ch;
}

.hero__actions,
.section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button--primary {
    background: var(--teal);
    color: #f9fff9;
}

.button--primary:hover {
    background: var(--teal-deep);
    color: #f9fff9;
}

.button--secondary {
    border-color: rgba(11, 90, 77, 0.22);
    background: rgba(124, 224, 190, 0.16);
    color: var(--teal-deep);
}

.route-list {
    display: grid;
    gap: 12px;
}

.route-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px 12px;
    align-items: baseline;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.route-card:hover {
    border-color: rgba(124, 224, 190, 0.56);
    color: #fff;
}

.route-card span {
    grid-row: span 2;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.route-card strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    line-height: 1;
}

.route-card em {
    color: rgba(248, 255, 249, 0.72);
    font-size: 0.88rem;
    font-style: normal;
}

.route-card--featured {
    background:
        linear-gradient(135deg, rgba(124, 224, 190, 0.23), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.08);
}

.section {
    padding-top: 10px;
}

.section--soft,
.section--image-led {
    padding: 48px 0;
    border-top: 1px solid rgba(16, 35, 31, 0.08);
    border-bottom: 1px solid rgba(16, 35, 31, 0.08);
    background:
        linear-gradient(90deg, rgba(255, 255, 251, 0.72), rgba(237, 246, 241, 0.82)),
        repeating-linear-gradient(90deg, transparent 0 88px, rgba(16, 35, 31, 0.035) 88px 89px);
}

.section--image-led {
    background:
        linear-gradient(135deg, rgba(18, 48, 42, 0.95), rgba(11, 90, 77, 0.92)),
        var(--teal-deep);
    color: #f7fff9;
}

.section--image-led .section__heading p,
.section--image-led .post-card p,
.section--image-led .post-card__meta {
    color: rgba(247, 255, 249, 0.74);
}

.section--image-led .eyebrow,
.section--image-led .panel__label {
    color: var(--mint);
}

.section--image-led .post-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #f7fff9;
}

.section__heading {
    max-width: 72ch;
    margin-bottom: 24px;
}

.section__heading p:last-child {
    margin-bottom: 0;
}

.section__heading--split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: 22px;
    align-items: end;
    max-width: none;
}

.section__heading--split > p {
    color: var(--muted);
}

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

.post-grid--strain {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-card,
.post-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hub-card:hover,
.post-card:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 90, 77, 0.32);
    box-shadow: 0 22px 56px rgba(18, 48, 42, 0.16);
}

.hub-card {
    display: grid;
    align-content: start;
    min-height: 214px;
    padding: 22px;
}

.hub-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--teal);
}

.hub-card--access::before {
    background: var(--cyan);
}

.hub-card--safety::before {
    background: var(--coral);
}

.hub-card--conditions::before {
    background: var(--plum);
}

.hub-card--education::before {
    background: var(--teal);
}

.hub-card--cannabinoids::before {
    background: var(--gold);
}

.hub-card--strains::before {
    background: var(--mint);
}

.hub-card p,
.post-card p,
.content-hero p,
.sidebar-card p,
.footer-card p {
    color: var(--muted);
}

.post-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.post-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(11, 90, 77, 0.13), rgba(47, 126, 161, 0.14)),
        var(--surface-tint);
}

.post-grid:not(.post-grid--strain) .post-card__media {
    aspect-ratio: 16 / 10;
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.post-card:hover .post-card__media img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03);
}

.post-card__media--placeholder {
    display: grid;
    place-items: center;
}

.post-card__media--placeholder span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(11, 90, 77, 0.26);
    border-radius: 50%;
    color: var(--teal);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0;
}

.post-card__body {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.post-card__body p {
    margin: 0;
}

.post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-self: end;
    padding-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.content-shell {
    padding-top: 8px;
}

.content-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 4.6vw, 48px);
    margin-bottom: 20px;
}

.content-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(360px, 46%);
    height: 10px;
    background: linear-gradient(90deg, var(--mint), var(--cyan), var(--gold));
}

.content-hero h1 {
    max-width: 14ch;
}

.content-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--teal);
}

.breadcrumb span[aria-current="page"] {
    max-width: 42ch;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.68fr);
    gap: 20px;
    align-items: start;
}

.content-prose,
.content-sidebar {
    min-width: 0;
}

.content-prose {
    padding: clamp(22px, 3.2vw, 38px);
    background: rgba(255, 255, 251, 0.86);
}

.content-prose > :first-child {
    margin-top: 0;
}

.content-prose > :last-child {
    margin-bottom: 0;
}

.content-prose h2,
.content-prose h3 {
    margin-top: 1.55em;
}

.content-prose p,
.content-prose ul,
.content-prose ol {
    max-width: 78ch;
}

.content-prose p,
.content-prose ul,
.content-prose ol,
.content-prose blockquote,
.content-prose table,
.content-prose figure {
    margin-top: 0;
}

.content-prose a {
    color: var(--teal);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

.content-prose ul,
.content-prose ol {
    padding-left: 1.25rem;
}

.content-prose li + li {
    margin-top: 0.48rem;
}

.content-prose blockquote {
    max-width: 76ch;
    padding: 0.3rem 0 0.3rem 1rem;
    border-left: 4px solid var(--gold);
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.content-prose table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.content-prose th,
.content-prose td {
    padding: 0.76rem 0.8rem;
    vertical-align: top;
    border-top: 1px solid rgba(16, 35, 31, 0.10);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.content-prose th,
.content-prose td:first-child,
.content-prose .acf-data td:first-child,
.content-prose .acf-data th:first-child {
    width: 30%;
    color: var(--ink);
    font-weight: 800;
}

.content-prose iframe,
.content-prose video {
    max-width: 100%;
}

.content-prose img {
    border-radius: var(--radius);
}

.feature-figure {
    margin: 0 0 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-tint);
    box-shadow: var(--shadow-soft);
}

.feature-figure img {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}

.strain-gallery {
    margin: 2.2rem 0;
    padding-top: 1.45rem;
    border-top: 1px solid var(--line);
}

.strain-gallery h2 {
    margin-top: 0;
}

.strain-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.strain-gallery figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
}

.strain-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.strain-gallery figcaption {
    padding: 0.62rem 0.72rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.kg-image-card,
.kg-gallery-card,
.kg-embed-card,
.kg-bookmark-card {
    margin: 2rem 0;
}

.kg-width-wide {
    width: min(100%, 980px);
    max-width: 100%;
}

.kg-width-full {
    width: calc(100% + clamp(0px, 4vw, 48px));
    max-width: calc(100% + clamp(0px, 4vw, 48px));
    margin-left: calc(clamp(0px, 2vw, 24px) * -1);
}

.kg-image,
.kg-gallery-image img {
    width: 100%;
}

.kg-gallery-container {
    display: grid;
    gap: 10px;
}

.kg-gallery-row {
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
}

.kg-bookmark-container {
    display: grid;
    grid-template-columns: 1fr minmax(140px, 0.32fr);
    gap: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
}

.kg-bookmark-content {
    padding: 16px;
}

.kg-bookmark-title {
    color: var(--ink);
    font-weight: 800;
}

.kg-bookmark-description,
.kg-bookmark-metadata,
.kg-bookmark-author,
.kg-bookmark-publisher {
    color: var(--muted);
    font-size: 0.9rem;
}

.kg-bookmark-icon {
    width: 18px;
    height: 18px;
    border-radius: 3px;
}

.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 14px;
}

.sidebar-card,
.footer-card {
    padding: 20px;
}

.sidebar-card--accent {
    border-color: rgba(11, 90, 77, 0.22);
    background:
        linear-gradient(135deg, rgba(124, 224, 190, 0.18), rgba(255, 255, 251, 0.88)),
        var(--surface-solid);
}

.content-sidebar .hub-links,
.content-sidebar .trust-links,
.site-footer .hub-links,
.site-footer .trust-links {
    justify-content: flex-start;
}

.pagination-wrap {
    margin-top: 28px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.site-footer {
    padding: 36px 0 58px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.8fr));
    gap: 16px;
}

.footer-card {
    background: rgba(255, 255, 251, 0.78);
}

.footer-card--intro {
    background:
        linear-gradient(135deg, rgba(18, 48, 42, 0.96), rgba(11, 90, 77, 0.92)),
        var(--teal-deep);
    color: #f8fff9;
}

.footer-card--intro p {
    color: rgba(248, 255, 249, 0.74);
}

.footer-card--intro .eyebrow {
    color: var(--mint);
}

.footer-card--intro h2 {
    margin-top: 0;
}

.footer-card__mark {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
}

@media (max-width: 1120px) {
    .site-header__inner,
    .hero,
    .content-layout,
    .site-footer__inner,
    .section__heading--split {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        padding: 14px 0;
    }

    .site-nav .nav,
    .site-nav ul {
        justify-content: flex-start;
    }

    .hub-grid,
    .post-grid,
    .post-grid--strain,
    .hub-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-header__inner {
        min-height: auto;
    }

    .site-brand {
        gap: 10px;
    }

    .site-brand__mark {
        width: 48px;
        height: 48px;
    }

    .site-brand__wordmark {
        font-size: 1.16rem;
    }

    .site-brand__tagline {
        display: none;
    }

    .site-header__navs {
        margin-inline: -12px;
        overflow-x: auto;
        padding: 0 12px 2px;
    }

    .site-nav .nav,
    .site-nav ul {
        width: max-content;
        flex-wrap: nowrap;
        gap: 4px;
        padding-right: 12px;
    }

    .site-nav a {
        min-height: 34px;
        padding: 0 9px;
        font-size: 0.86rem;
        white-space: nowrap;
    }

    .site-main {
        padding-top: 18px;
    }

    .trust-strip,
    .hero,
    .section,
    .content-shell {
        margin-bottom: 28px;
    }

    .hero__copy {
        min-height: 0;
        padding: 24px;
    }

    .hero__panel,
    .content-hero,
    .content-prose,
    .sidebar-card,
    .footer-card {
        padding: 18px;
    }

    h1 {
        max-width: 12ch;
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.36rem;
    }

    .hero__lede {
        font-size: 1.02rem;
    }

    .hero__actions,
    .section__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .trust-strip__inner,
    .hub-grid,
    .post-grid,
    .post-grid--strain,
    .hub-grid--compact,
    .strain-gallery__grid {
        grid-template-columns: 1fr;
    }

    .hub-grid,
    .post-grid {
        display: grid;
    }

    .hub-card {
        min-height: auto;
    }

    .post-card__media,
    .post-grid:not(.post-grid--strain) .post-card__media {
        aspect-ratio: 16 / 10;
    }

    .content-prose {
        overflow: hidden;
    }

    .content-prose table {
        display: block;
        overflow-x: auto;
        table-layout: auto;
        white-space: normal;
    }

    .content-prose th,
    .content-prose td,
    .content-prose th:first-child,
    .content-prose td:first-child,
    .content-prose .acf-data td:first-child,
    .content-prose .acf-data th:first-child {
        min-width: 150px;
        width: auto;
    }

    .kg-gallery-row,
    .kg-bookmark-container {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
