:root {
    color-scheme: dark;
    --background: #090b0d;
    --surface: #111519;
    --surface-raised: #171c21;
    --border: rgba(255, 255, 255, 0.1);
    --text: #f5f6f7;
    --muted: #b7bec5;
    --accent: #f3aa33;
    --accent-light: #ffd188;
    --accent-soft: rgba(243, 170, 51, 0.12);
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 2%, rgba(243, 170, 51, 0.1), transparent 31rem),
        radial-gradient(circle at 90% 28%, rgba(96, 64, 35, 0.1), transparent 27rem),
        var(--background);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
}

button,
input {
    font: inherit;
}

a {
    color: var(--accent);
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--accent-light);
}

a:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

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

[hidden] {
    display: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--border);
    background: rgba(9, 11, 13, 0.92);
    backdrop-filter: blur(16px);
}

.nav-shell {
    position: relative;
    width: min(calc(100% - 2rem), var(--max-width));
    min-height: 4.75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 750;
    white-space: nowrap;
}

.brand img {
    width: 2.65rem;
    height: 2.65rem;
    object-fit: contain;
}

.brand span {
    color: var(--accent);
    letter-spacing: 0.01em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.12rem;
}

.desktop-nav a,
.mobile-nav nav a {
    padding: 0.5rem 0.67rem;
    border-radius: 0.5rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 680;
    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav nav a:hover,
.mobile-nav nav a[aria-current="page"] {
    color: var(--text);
    background: var(--accent-soft);
}

.desktop-nav .member-link,
.mobile-nav nav .member-link {
    margin-left: 0.35rem;
    border: 1px solid rgba(243, 170, 51, 0.4);
    color: var(--accent-light);
}

.mobile-nav {
    display: none;
}

.mobile-nav summary {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav summary svg {
    width: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.mobile-nav nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: min(19rem, calc(100vw - 2rem));
    padding: 0.75rem;
    display: grid;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    background: #111519;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.45);
}

.mobile-nav nav .member-link {
    margin: 0.4rem 0 0;
}

.section-nav {
    position: sticky;
    top: 4.75rem;
    z-index: 20;
    border-bottom: 1px solid var(--border);
    background: rgba(12, 16, 19, 0.94);
    backdrop-filter: blur(14px);
}

.section-nav-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    min-height: 3.2rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.section-nav-shell > span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.section-nav-shell > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
}

.section-nav a {
    padding: 0.45rem 0.7rem;
    border-radius: 0.45rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 680;
    white-space: nowrap;
}

.section-nav a:hover {
    color: var(--text);
    background: var(--accent-soft);
}

.blog-hero,
.featured-section,
.blog-cta {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.blog-hero {
    padding: clamp(4rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.35fr);
    align-items: end;
    gap: clamp(3rem, 9vw, 8rem);
}

.eyebrow,
.panel-label {
    margin: 0 0 0.75rem;
    color: var(--accent);
    font-size: 0.73rem;
    font-weight: 820;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 980px;
    margin-bottom: 1.45rem;
    font-size: clamp(3.2rem, 7.2vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

h1 span {
    color: var(--accent);
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.15rem, 4.6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.047em;
}

.hero-copy {
    max-width: 46rem;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.journal-note {
    padding: 1.25rem 0 0 1.25rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(243, 170, 51, 0.42);
}

.journal-note > span {
    width: 2.65rem;
    height: 2.65rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #17100a;
    background: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.journal-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.journal-note strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--text);
}

.featured-section {
    padding-bottom: clamp(5rem, 10vw, 9rem);
}

.featured-story {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: var(--surface);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.25);
}

.featured-image {
    position: relative;
    min-height: 34rem;
    display: block;
    overflow: hidden;
    background: #0c0f11;
}

.featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 63%, rgba(9, 12, 14, 0.32));
    pointer-events: none;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

a.featured-image:hover img {
    transform: scale(1.025);
}

.story-date {
    position: absolute;
    top: 1.15rem;
    left: 1.15rem;
    z-index: 2;
    min-width: 3.65rem;
    padding: 0.62rem 0.7rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 170, 51, 0.5);
    border-radius: 0.65rem;
    color: var(--text);
    background: rgba(7, 9, 11, 0.78);
    backdrop-filter: blur(10px);
    line-height: 1;
}

.story-date strong {
    font-size: 1.35rem;
}

.story-date small {
    margin-top: 0.18rem;
    color: var(--accent-light);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.featured-copy {
    padding: clamp(2rem, 5vw, 4.4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-meta {
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 720;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.story-meta span {
    margin-right: 0.55rem;
    color: var(--accent);
}

.story-meta span::after {
    content: "·";
    margin-left: 0.55rem;
    color: var(--muted);
}

.featured-copy h2 {
    font-size: clamp(2rem, 4vw, 3.75rem);
}

.featured-copy h2 a,
.story-copy h3 a {
    color: var(--text);
    text-decoration: none;
}

.featured-copy h2 a:hover,
.story-copy h3 a:hover {
    color: var(--accent-light);
}

.featured-excerpt {
    margin: 1.35rem 0 1.8rem;
    color: var(--muted);
}

.featured-footer {
    padding-top: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border);
}

.featured-footer > span {
    color: var(--muted);
    font-size: 0.72rem;
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent-light);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 780;
}

.read-link span {
    transition: transform 180ms ease;
}

.read-link:hover span {
    transform: translateX(0.25rem);
}

.featured-placeholder .featured-image {
    cursor: default;
}

.placeholder-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.placeholder-actions > a:not(.read-link) {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 720;
}

.stories-section {
    padding: clamp(5rem, 10vw, 9rem) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(15, 18, 21, 0.66);
}

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

.stories-heading {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.42fr);
    align-items: end;
    gap: 3rem;
}

.story-search {
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 780;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.search-field {
    position: relative;
    display: block;
}

.search-field svg {
    position: absolute;
    top: 50%;
    left: 0.9rem;
    width: 1.05rem;
    fill: none;
    stroke: var(--muted);
    stroke-linecap: round;
    stroke-width: 1.7;
    transform: translateY(-50%);
}

.search-field input {
    width: 100%;
    min-height: 3rem;
    padding: 0.7rem 0.9rem 0.7rem 2.7rem;
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.84rem;
}

.search-field input::placeholder {
    color: #858d94;
}

.search-field input:focus {
    border-color: rgba(243, 170, 51, 0.55);
    background: rgba(243, 170, 51, 0.045);
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(13rem, 0.27fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.theme-panel {
    position: sticky;
    top: 9rem;
}

.theme-panel nav {
    display: grid;
    border-top: 1px solid var(--border);
}

.theme-panel nav a {
    padding: 0.8rem 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 680;
}

.theme-panel nav a:hover,
.theme-panel nav a[aria-current="page"] {
    padding-left: 0.65rem;
    color: var(--accent-light);
    background: linear-gradient(90deg, var(--accent-soft), transparent);
}

.theme-panel nav a strong {
    min-width: 1.65rem;
    height: 1.65rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: inherit;
    font-size: 0.65rem;
}

.theme-note {
    margin-top: 2rem;
    padding: 1.2rem;
    border: 1px solid rgba(243, 170, 51, 0.22);
    border-radius: 0.75rem;
    background: var(--accent-soft);
}

.theme-note > span {
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--accent-light);
    background: rgba(243, 170, 51, 0.12);
}

.theme-note svg,
.stories-empty svg {
    width: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.theme-note p {
    margin: 0.85rem 0 0.75rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.theme-note strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--text);
}

.theme-note a {
    font-size: 0.76rem;
    font-weight: 760;
}

.result-status {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.75rem;
}

.result-status strong {
    color: var(--text);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.story-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    background: var(--surface);
    animation: storyReveal 320ms ease both;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.story-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 170, 51, 0.36);
    box-shadow: 0 1.3rem 2.8rem rgba(0, 0, 0, 0.25);
}

.story-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0c0f11;
}

.story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 6, 8, 0.2), transparent 45%);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.story-card:hover .story-image img {
    transform: scale(1.035);
}

.story-copy {
    padding: 1.35rem;
}

.story-copy h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.story-copy > p:not(.story-meta) {
    min-height: 4.9rem;
    margin-bottom: 1.25rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.story-copy > div {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border);
}

.story-copy > div > span {
    color: var(--muted);
    font-size: 0.65rem;
}

.story-no-results,
.stories-empty {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    background: var(--surface);
}

.story-no-results p,
.stories-empty p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.stories-empty {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.stories-empty > span {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--accent-light);
    background: var(--accent-soft);
}

.prompt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.prompt-grid article {
    position: relative;
    min-height: 18rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    background:
        linear-gradient(145deg, rgba(243, 170, 51, 0.09), transparent 56%),
        var(--surface);
}

.prompt-grid article > span {
    position: absolute;
    top: -0.7rem;
    right: 0.9rem;
    color: rgba(243, 170, 51, 0.1);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 6rem;
    line-height: 1;
}

.prompt-grid h3 {
    margin: 0 0 0.7rem;
    font-size: 1.4rem;
}

.prompt-grid article > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.pagination {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.pagination > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.pagination a {
    min-width: 2.45rem;
    height: 2.45rem;
    padding: 0 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 740;
}

.pagination a:hover,
.pagination a[aria-current="page"] {
    border-color: rgba(243, 170, 51, 0.42);
    color: var(--accent-light);
    background: var(--accent-soft);
}

.pagination .page-direction {
    width: max-content;
}

.pagination > .page-direction:last-child {
    justify-self: end;
}

.blog-cta {
    padding: clamp(5rem, 10vw, 9rem) 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 3rem;
}

.blog-cta > div:first-child {
    max-width: 49rem;
}

.blog-cta h2 {
    font-size: clamp(2.2rem, 4.7vw, 4.4rem);
}

.blog-cta p:last-child {
    max-width: 43rem;
    margin: 1.2rem 0 0;
    color: var(--muted);
}

.blog-cta > div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.button {
    min-height: 3.15rem;
    padding: 0.78rem 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 1px solid transparent;
    border-radius: 0.65rem;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 780;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: #17100a;
    background: var(--accent);
}

.button-primary:hover {
    color: #17100a;
    background: var(--accent-light);
}

.button-secondary {
    border-color: var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
    border-color: rgba(243, 170, 51, 0.45);
    color: var(--accent-light);
    background: var(--accent-soft);
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #080a0c;
}

.footer-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    min-height: 6.5rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-shell nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-shell nav a {
    color: var(--muted);
    text-decoration: none;
}

.footer-shell nav a:hover {
    color: var(--accent-light);
}

.back-to-top {
    position: fixed;
    right: clamp(1rem, 2vw, 1.5rem);
    bottom: clamp(1rem, 2vw, 1.5rem);
    z-index: 18;
    width: 2.85rem;
    height: 2.85rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 170, 51, 0.42);
    border-radius: 50%;
    color: var(--accent-light);
    background: rgba(13, 16, 19, 0.9);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

.back-to-top svg {
    width: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.back-to-top:hover {
    color: #17100a;
    background: var(--accent);
}

@keyframes storyReveal {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .featured-story {
        grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
    }

    .featured-image {
        min-height: 30rem;
    }

    .story-layout {
        grid-template-columns: minmax(11rem, 0.25fr) minmax(0, 1fr);
        gap: 2rem;
    }

    .prompt-grid {
        grid-template-columns: 1fr;
    }

    .prompt-grid article {
        min-height: 13rem;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 5rem;
    }

    .section-nav {
        position: static;
    }

    .section-nav-shell {
        overflow-x: auto;
    }

    .section-nav-shell > div {
        min-width: max-content;
    }

    .blog-hero,
    .stories-heading,
    .blog-cta {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 2rem;
    }

    .journal-note {
        max-width: 31rem;
    }

    .featured-story {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 25rem;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .theme-panel {
        position: static;
    }

    .theme-panel nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 1rem;
    }

    .theme-note {
        display: none;
    }

    .blog-cta > div:last-child {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .nav-shell {
        min-height: 4.25rem;
    }

    .brand span {
        font-size: 0.9rem;
    }

    .brand img {
        width: 2.35rem;
        height: 2.35rem;
    }

    .section-nav-shell {
        min-height: 3rem;
    }

    .section-nav-shell > span {
        display: none;
    }

    .section-nav-shell > div {
        width: 100%;
        justify-content: flex-start;
    }

    h1 {
        font-size: clamp(2.8rem, 15vw, 4.5rem);
    }

    .blog-hero {
        padding-top: 3.25rem;
    }

    .featured-image {
        min-height: 18rem;
    }

    .featured-copy {
        padding: 1.5rem;
    }

    .featured-footer,
    .story-copy > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
    }

    .theme-panel nav {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-copy > p:not(.story-meta) {
        min-height: auto;
    }

    .pagination {
        grid-template-columns: 1fr 1fr;
    }

    .pagination > div {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .pagination > .page-direction {
        grid-row: 2;
    }

    .pagination > .page-direction:last-child {
        grid-column: 2;
    }

    .footer-shell {
        padding: 1.6rem 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-shell nav {
        justify-content: flex-start;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
