:root {
    --paper: #f7f6f2;
    --surface: #efeee9;
    --ink: #171717;
    --muted: #686863;
    --line: #d6d4cc;
    --accent: #165281;
    --accent-dark: #2885cf;
    --header: #20201f;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
    --shell: 1240px;
    --article: 760px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--accent);
}
button,
input,
textarea {
    font: inherit;
}
.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}
.shell--article {
    max-width: var(--article);
}
.screen-reader-text {
    position: absolute !important;
    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;
    left: 16px;
    top: -100px;
    z-index: 100;
    background: var(--paper);
    padding: 12px 18px;
    border: 2px solid var(--accent);
}
.skip-link:focus {
    top: 16px;
}
.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--surface);
}
.utility-bar {
    background: var(--header);
    color: #f5f4ef;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}
.utility-bar__inner {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.utility-bar ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.utility-bar a:hover {
    color: #edc6c8;
}
.theme-toggle {
    width: 58px;
    height: 32px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.theme-toggle:focus-visible {
    outline: 3px solid #c7585f;
    outline-offset: 2px;
}
.theme-toggle__track {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}
.theme-toggle__thumb {
    position: absolute;
    z-index: 2;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ink);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
    transform: translateX(26px);
}
.theme-toggle__sun,
.theme-toggle__moon {
    position: absolute;
    z-index: 3;
    top: 9px;
    width: 12px;
    height: 12px;
    pointer-events: none;
}
.theme-toggle__sun {
    left: 9px;
    border: 2px solid var(--paper);
    border-radius: 50%;
}
.theme-toggle__moon {
    right: 9px;
    border-radius: 50%;
    box-shadow: -3px 2px 0 0 var(--muted);
}
.theme-toggle[aria-pressed="true"] .theme-toggle__moon {
    box-shadow: -3px 2px 0 0 var(--paper);
}
.brand-bar {
    height: 112px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.site-branding {
    grid-column: 2;
}
.brand-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
}
.custom-logo {
    max-width: 310px;
    max-height: 82px;
    width: auto;
}
.wordmark {
    display: flex;
    align-items: baseline;
    gap: 9px;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.055em;
    line-height: 1;
}
.wordmark strong {
    font-weight: 700;
}
.wordmark span {
    color: var(--accent);
    font-size: 0.54em;
    font-family: var(--sans);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.menu-toggle,
.search-toggle {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 11px;
}
.menu-toggle {
    justify-self: start;
    display: none;
}
.menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    width: 23px;
    background: currentColor;
    margin: 5px 0;
}
.search-toggle {
    flex: 0 0 auto;
}
.search-icon {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}
.search-icon:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: currentColor;
    right: -6px;
    bottom: -3px;
    transform: rotate(45deg);
}
.primary-nav {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--ink);
}
.primary-nav ul {
    min-height: 49px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.5vw, 38px);
}
.primary-nav a {
    display: block;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    white-space: nowrap;
}
.primary-nav .current-menu-item > a {
    color: var(--accent);
}
.search-panel {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
}
.search-form {
    display: flex;
    max-width: 760px;
    margin: auto;
}
.search-form label {
    flex: 1;
}
.search-field {
    width: 100%;
    height: 52px;
    border: 1px solid #aaa89f;
    background: var(--paper);
    color: var(--ink);
    padding: 0 16px;
}
.search-form button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fffaf8;
    padding: 0 22px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.search-form button:hover,
.button:hover {
    background: var(--accent-dark);
    color: #fff;
}
.search-field:focus,
.search-form button:focus,
.button:focus,
a:focus-visible,
button:focus-visible {
    outline: 3px solid #c7585f;
    outline-offset: 3px;
}
.site-main {
    min-height: 50vh;
}
.lead {
    display: grid;
    grid-template-columns: minmax(0, 1.82fr) minmax(290px, 0.75fr);
    gap: 38px;
    padding-top: 34px;
    padding-bottom: 46px;
    border-bottom: 1px solid var(--ink);
}
.lead-story__media {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.lead-story__content {
    padding-top: 18px;
}
.kicker {
    display: inline-block;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.lead-story h1 {
    font-family: var(--serif);
    font-size: clamp(2.3rem, 4.2vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin: 0;
    max-width: 17ch;
}
.lead-story p {
    font-family: var(--serif);
    font-size: 1.14rem;
    line-height: 1.42;
    color: #464642;
    max-width: 62ch;
    margin: 16px 0 0;
}
.lead-secondary {
    border-left: 1px solid var(--line);
    padding-left: 28px;
}
.compact-card {
    padding: 0 0 23px;
    margin: 0 0 23px;
    border-bottom: 1px solid var(--line);
}
.compact-card:last-child {
    border: 0;
    margin-bottom: 0;
}
.compact-card h2 {
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0 0 12px;
}
.compact-card time,
.story-card time {
    color: var(--muted);
    font-size: 0.72rem;
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 3px solid var(--ink);
    margin-bottom: 24px;
}
.section-heading h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    letter-spacing: -0.035em;
    margin: 0 0 10px;
}
.section-heading > a {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 13px;
}
.latest,
.category-block {
    padding-top: 54px;
    padding-bottom: 64px;
}
.news-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 0 34px;
}
.news-grid .story-card:first-child {
    grid-row: span 3;
}
.news-grid .story-card:first-child .story-card__media {
    aspect-ratio: 4/3;
}
.news-grid .story-card:not(:first-child) {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding: 18px 0;
}
.news-grid .story-card:nth-child(2) {
    border-top: 0;
    padding-top: 0;
}
.news-grid .story-card:not(:first-child) .story-card__media {
    aspect-ratio: 4/3;
}
.news-grid .story-card:not(:first-child) .story-card__content p {
    display: none;
}
.story-card__media {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.story-card__media img {
    transition: transform 0.25s ease;
}
.story-card:hover .story-card__media img {
    transform: scale(1.018);
}
.story-card__content {
    padding-top: 13px;
}
.story-card h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 9px;
}
.story-card p {
    color: #52524d;
    margin: 0 0 13px;
}
.newsletter-band {
    background: var(--accent);
    color: #fffaf8;
    margin: 12px 0;
}
.newsletter-band__inner {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.newsletter-band h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
    margin: 0;
}
.newsletter-band p {
    margin: 8px 0 0;
    color: #f3dfe0;
}
.button--light {
    background: #fffaf8;
    color: var(--accent);
    border-color: #fffaf8;
    border-radius: 30px;
}
.button--light:hover {
    background: #f0dfe0;
    color: var(--accent-dark);
}
.category-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(2, 1fr);
    gap: 28px;
}
.category-grid .story-card:first-child {
    grid-row: span 2;
}
.category-grid .story-card:first-child .story-card__media {
    aspect-ratio: 4/3;
}
.category-grid .story-card:nth-child(4) {
    grid-column: 2/4;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}
.category-grid .story-card:nth-child(4) .story-card__content {
    padding: 0;
}
.archive-page {
    padding-top: 54px;
    padding-bottom: 80px;
}
.archive-header {
    max-width: 940px;
    border-bottom: 3px solid var(--ink);
    padding-bottom: 28px;
    margin-bottom: 34px;
}
.archive-header h1 {
    font-family: var(--serif);
    font-size: clamp(2.7rem, 6vw, 5.5rem);
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
}
.archive-description {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 60ch;
}
.archive-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
}
.archive-list .story-card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 30px;
}
.archive-list .story-card__media {
    aspect-ratio: 4/3;
}
.archive-list .story-card__content {
    padding: 0;
}
.nav-links {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 50px;
}
.page-numbers {
    border: 1px solid var(--line);
    min-width: 42px;
    padding: 9px 12px;
    text-align: center;
}
.page-numbers.current {
    background: var(--ink);
    color: var(--paper);
}
.article-header {
    padding-top: 62px;
    padding-bottom: 32px;
}
.article-header h1,
.page-header h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 3vw, 5.7rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
    margin: 0;
}
.article-deck {
    font-family: var(--serif);
    font-size: 1.32rem;
    line-height: 1.4;
    color: #4e4e49;
    margin: 23px 0;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: var(--muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--line);
    padding-top: 17px;
}
.article-hero {
    max-width: var(--article);
    aspect-ratio: 16/9;
    overflow: hidden;
}
.article-content {
    font-family: var(--serif);
    font-size: 1.17rem;
    line-height: 1.72;
    padding-top: 42px;
}
.article-content > p:first-child::first-letter {
    float: left;
    font-size: 4.6rem;
    line-height: 0.72;
    font-weight: 700;
    color: var(--accent);
    padding: 12px 9px 0 0;
}
.article-content h2,
.article-content h3 {
    line-height: 1.12;
    margin: 2em 0 0.65em;
}
.article-content h2 {
    font-size: 2.3rem;
}
.article-content h3 {
    font-size: 1.7rem;
}
.article-content a {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
}
.article-content blockquote {
    border-left: 4px solid var(--accent);
    margin: 2.2em 0;
    padding: 0.1em 0 0.1em 1.4em;
    font-size: 1.45rem;
    line-height: 1.4;
}
.article-content figure {
    margin: 2.5em 0;
}
.article-content figcaption {
    font-family: var(--sans);
    font-size: 0.76rem;
    color: var(--muted);
    margin-top: 8px;
}
.article-footer {
    padding-top: 28px;
    padding-bottom: 34px;
}
.tag-list a {
    display: inline-block;
    border: 1px solid var(--line);
    padding: 6px 10px;
    margin: 0 6px 6px 0;
    font: 700 0.72rem var(--sans);
    text-transform: uppercase;
}
.post-navigation {
    border-top: 1px solid var(--ink);
    padding-top: 28px;
    padding-bottom: 58px;
}
.post-navigation .nav-links {
    justify-content: space-between;
    margin: 0;
}
.post-navigation a {
    font-family: var(--serif);
    font-weight: 700;
    max-width: 300px;
}
.post-navigation span {
    display: block;
    font: 700 0.69rem var(--sans);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.comments-area {
    padding-bottom: 70px;
}
.comment-list {
    padding-left: 0;
    list-style: none;
}
.comment-body {
    border-top: 1px solid var(--line);
    padding: 20px 0;
}
.comment-form label {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 5px;
}
.comment-form input:not([type="checkbox"]),
.comment-form textarea {
    width: 100%;
    border: 1px solid #aaa89f;
    background: var(--paper);
    padding: 12px;
}
.page-content {
    padding-top: 58px;
    padding-bottom: 80px;
}
.page-header {
    margin-bottom: 34px;
}
.empty-state {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 760px;
}
.empty-state h1,
.empty-state h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin: 0 0 18px;
}
.empty-state p {
    color: var(--muted);
    font-size: 1.1rem;
}
.empty-state .search-form {
    margin: 30px auto;
}
.error-code {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.15em;
}
.text-link {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.site-footer {
    background: var(--header);
    color: #e9e7e0;
    margin-top: 40px;
    padding-top: 62px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
    gap: 48px;
    padding-bottom: 54px;
}
.wordmark--footer {
    font-size: 2.5rem;
    color: #f7f6f2;
}
.footer-grid p {
    color: #b9b7b0;
    max-width: 34ch;
}
.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer li,
.social-links a {
    margin-bottom: 10px;
}
.social-links {
    display: flex;
    flex-direction: column;
}
.footer-widget__title {
    font: 700 0.78rem var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.copyright {
    border-top: 1px solid #444441;
    padding: 18px 0 24px;
    color: #999790;
    font-size: 0.72rem;
}
@media (max-width: 980px) {
    .primary-nav ul {
        justify-content: flex-start;
        overflow-x: auto;
    }
    .lead {
        grid-template-columns: 1fr;
    }
    .lead-secondary {
        border-left: 0;
        padding-left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .compact-card {
        border-top: 1px solid var(--line);
        border-bottom: 0;
        padding-top: 20px;
    }
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-grid .story-card:first-child {
        grid-column: 1/-1;
        grid-row: auto;
    }
    .news-grid .story-card:not(:first-child) {
        display: block;
    }
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
    .category-grid .story-card:first-child {
        grid-row: auto;
        grid-column: 1/-1;
    }
    .category-grid .story-card:nth-child(4) {
        grid-column: auto;
        display: block;
    }
    .archive-list .story-card {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }
    .utility-bar nav {
        display: none;
    }
    .brand-bar {
        height: 82px;
    }
    .wordmark {
        font-size: 1.65rem;
    }
    .custom-logo {
        max-width: 210px;
        max-height: 62px;
    }
    .menu-toggle {
        display: block;
    }
    .brand-actions {
        gap: 2px;
    }
    .theme-toggle {
        width: 52px;
        height: 30px;
    }
    .theme-toggle__thumb {
        width: 22px;
        height: 22px;
    }
    .theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
        transform: translateX(22px);
    }
    .theme-toggle__sun {
        left: 8px;
        top: 8px;
    }
    .theme-toggle__moon {
        right: 8px;
        top: 8px;
    }
    .search-toggle {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    .primary-nav {
        display: none;
        background: var(--paper);
    }
    .primary-nav.is-open {
        display: block;
    }
    .primary-nav ul {
        display: block;
        padding: 10px 0;
        max-height: 70vh;
        overflow: auto;
    }
    .primary-nav li {
        border-bottom: 1px solid var(--line);
    }
    .primary-nav a {
        padding: 13px 0;
    }
    .lead {
        padding-top: 20px;
        gap: 24px;
    }
    .lead-secondary {
        grid-template-columns: 1fr;
    }
    .lead-story h1 {
        font-size: 2.65rem;
    }
    .news-grid,
    .category-grid,
    .archive-list {
        grid-template-columns: 1fr;
    }
    .news-grid .story-card:not(:first-child),
    .category-grid .story-card:nth-child(4) {
        display: grid;
        grid-template-columns: 125px 1fr;
        gap: 16px;
    }
    .news-grid .story-card:not(:first-child) .story-card__content,
    .category-grid .story-card:nth-child(4) .story-card__content {
        padding: 0;
    }
    .story-card h3 {
        font-size: 1.25rem;
    }
    .story-card p {
        display: none;
    }
    .newsletter-band__inner {
        padding-top: 36px;
        padding-bottom: 36px;
        display: block;
    }
    .newsletter-band .button {
        margin-top: 22px;
    }
    .section-heading {
        align-items: center;
    }
    .section-heading h2 {
        font-size: 1.8rem;
    }
    .article-header {
        padding-top: 38px;
    }
    .article-header h1,
    .page-header h1 {
        font-size: 2.75rem;
    }
    .article-deck {
        font-size: 1.12rem;
    }
    .article-hero {
        width: min(calc(100% - 32px), var(--article));
        aspect-ratio: 4/3;
    }
    .article-content {
        font-size: 1.08rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .search-form {
        display: block;
    }
    .search-form button {
        width: 100%;
        margin-top: 8px;
    }
    .site-footer {
        margin-top: 0;
    }
}
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --paper: #181817;
        --surface: #232321;
        --ink: #efede6;
        --muted: #aaa8a0;
        --line: #3e3d39;
        --header: #111110;
        --accent: #d34a50;
        --accent-dark: #b63a40;
    }
    :root:not([data-theme="light"]) body {
        color-scheme: dark;
    }
    :root:not([data-theme="light"]) .lead-story p,
    :root:not([data-theme="light"]) .story-card p,
    :root:not([data-theme="light"]) .article-deck {
        color: #bdbab2;
    }
    :root:not([data-theme="light"]) .search-field,
    :root:not([data-theme="light"]) .comment-form input:not([type="checkbox"]),
    :root:not([data-theme="light"]) .comment-form textarea {
        border-color: #65635e;
    }
    :root:not([data-theme="light"]) .button--light {
        background: #f0eee8;
        color: #8e171d;
    }
    :root:not([data-theme="light"]) .cover-image {
        filter: brightness(0.9);
    }
}
:root[data-theme="dark"] {
    --paper: #181817;
    --surface: #232321;
    --ink: #efede6;
    --muted: #aaa8a0;
    --line: #3e3d39;
    --header: #111110;
    --accent: #6b8eaa;
    --accent-dark: #2885cf;    
    /* --accent: #d34a50; */
    /* --accent-dark: #b63a40; */
}
:root[data-theme="dark"] body {
    color-scheme: dark;
}
:root[data-theme="dark"] .lead-story p,
:root[data-theme="dark"] .story-card p,
:root[data-theme="dark"] .article-deck {
    color: #bdbab2;
}
:root[data-theme="dark"] .search-field,
:root[data-theme="dark"] .comment-form input:not([type="checkbox"]),
:root[data-theme="dark"] .comment-form textarea {
    border-color: #65635e;
}
:root[data-theme="dark"] .button--light {
    background: #f0eee8;
    color: #165281;
    border-radius: 30px;
}
:root[data-theme="dark"] .cover-image {
    filter: brightness(0.9);
}
:root[data-theme="light"] {
    --paper: #f7f6f2;
    --surface: #efeee9;
    --ink: #171717;
    --muted: #686863;
    --line: #d6d4cc;
    --accent: #165281;
    --accent-dark: #165281;
    --header: #20201f;
}
:root[data-theme="light"] body {
    color-scheme: light;
}
:root[data-theme="light"] .lead-story p {
    color: #464642;
}
:root[data-theme="light"] .story-card p {
    color: #52524d;
}
:root[data-theme="light"] .article-deck {
    color: #4e4e49;
}
:root[data-theme="light"] .cover-image {
    filter: none;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .story-card__media img {
        transition: none;
    }
    .story-card:hover .story-card__media img {
        transform: none;
    }
}
