@font-face {
    font-family: "Be Vietnam Pro";
    src: url("/assets/fonts/be-vietnam-pro-400.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url("/assets/fonts/be-vietnam-pro-500.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url("/assets/fonts/be-vietnam-pro-700.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Inter Tight";
    src: url("/assets/fonts/inter-tight.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 600 700;
}

:root {
    color-scheme: light;
    --accent: #f43676;
    --accent-soft: #ffd8e6;
    --accent-pale: #fff1f6;
    --ink: #2f2c56;
    --ink-deep: #111017;
    --copy: #09285a;
    --muted: #687388;
    --line: #e4e5e9;
    --surface: #ffffff;
    --surface-soft: #f6f7f8;
    --shadow: 0 14px 32px rgba(41, 42, 67, 0.08);
    --shadow-soft: 0 8px 22px rgba(41, 42, 67, 0.06);
    --radius: 20px;
    --site-width: 1320px;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --ink: #f6f4ff;
    --ink-deep: #ffffff;
    --copy: #dce7ff;
    --muted: #a8b0c4;
    --line: #36364b;
    --surface: #20202c;
    --surface-soft: #171721;
    --accent-soft: #6a2945;
    --accent-pale: #35202d;
    --shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 9% 13%, rgba(244, 54, 118, 0.07), transparent 28rem),
        var(--surface-soft);
    color: var(--copy);
    font-family: "Be Vietnam Pro", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
.site-header,
.featured-card,
.post-card,
.widget,
.archive-hero,
.archive-heading,
.article-card,
.error-card,
.site-footer,
.round-button {
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

button,
input {
    font: inherit;
}

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

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

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.skip-link:focus {
    z-index: 999;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.header-inner {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.brand strong {
    color: var(--ink-deep);
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.brand span {
    margin-top: 10px;
    color: var(--muted);
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.main-nav {
    margin-right: 10px;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--ink);
    font-weight: 500;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.main-nav a.active {
    color: var(--accent);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a,
.round-button {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.social-links a:hover,
.round-button:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.round-button {
    cursor: pointer;
}

.search-shortcut {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}

.subscribe-button {
    min-height: 44px;
    margin-left: 10px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--accent);
    box-shadow: 0 8px 18px rgba(244, 54, 118, 0.18);
    color: #fff;
    font-weight: 500;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.subscribe-button:hover {
    box-shadow: 0 11px 22px rgba(244, 54, 118, 0.28);
    transform: translateY(-2px);
}

.ticker-wrap {
    padding: 18px 0;
    background: var(--surface-soft);
}

.ticker {
    height: 46px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 40px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.ticker-label {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
    white-space: nowrap;
}

.ticker-label span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.ticker-viewport {
    min-width: 0;
    overflow: hidden;
}

.ticker-track {
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    animation: ticker-scroll 36s linear infinite;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-track a {
    min-width: 340px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.15;
}

.ticker-track img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 8px;
    object-fit: cover;
}

.ticker-track small {
    display: block;
    color: var(--ink);
    font-family: "Be Vietnam Pro", Arial, sans-serif;
    font-size: 0.71rem;
    font-weight: 500;
}

.ticker-track small::first-letter {
    color: var(--accent);
}

.ticker-pause {
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
}

@keyframes ticker-scroll {
    to {
        transform: translateX(-50%);
    }
}

.featured-wrap {
    padding-top: 0;
}

.featured-card {
    position: relative;
    min-height: 410px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 30px;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.featured-image {
    position: relative;
    z-index: 1;
    margin-left: -62px;
    overflow: hidden;
    border: 20px solid #000;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 22px 35px rgba(18, 20, 39, 0.18);
}

.featured-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.featured-body {
    padding: 20px 36px 20px 0;
}

.category-pill {
    width: fit-content;
    padding: 5px 13px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.featured-body h1,
.archive-heading h1,
.archive-hero h1,
.article-header h1,
.error-card h1 {
    margin: 15px 0 10px;
    color: var(--ink);
    font-family: "Inter Tight", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.featured-body h1 {
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.featured-body h1 a {
    transition: color 160ms ease;
}

.featured-body h1 a:hover,
.post-card h2 a:hover,
.widget-links a:hover {
    color: var(--accent);
}

.featured-body > p {
    max-width: 660px;
    margin: 0;
    color: var(--copy);
    font-size: 1.07rem;
}

.continue-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-weight: 500;
}

.continue-link span {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 160ms ease;
}

.continue-link:hover span {
    transform: translateX(4px);
}

.featured-next {
    position: absolute;
    top: 50%;
    right: -19px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.post-meta {
    margin-top: 22px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.author-link img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

.post-meta time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-meta time span {
    color: var(--ink);
    font-size: 1rem;
}

.page-grid {
    padding: 66px 0 90px;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
    align-items: start;
    gap: 30px;
}

.feed {
    min-width: 0;
    display: grid;
    gap: 28px;
}

.post-card {
    min-height: 330px;
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 30px;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.post-card-image {
    margin-left: -60px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 16px 28px rgba(28, 27, 53, 0.14);
}

.post-card-image img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
    transition: transform 420ms ease;
}

.post-card-image:hover img {
    transform: scale(1.03);
}

.post-card h2 {
    margin: 14px 0 10px;
    color: var(--ink);
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: clamp(1.5rem, 2.1vw, 2rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.post-card h2 a {
    transition: color 160ms ease;
}

.post-card-body > p {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    color: var(--copy);
    font-size: 0.98rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.sidebar {
    display: grid;
    gap: 24px;
}

.widget {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.widget h2 {
    position: relative;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    color: var(--ink);
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: 1.55rem;
    letter-spacing: -0.015em;
}

.widget h2::after {
    height: 1px;
    margin-left: 10px;
    flex: 1;
    background: var(--line);
    content: "";
}

.widget h2 span {
    display: inline-flex;
    align-items: center;
}

.widget h2 span::after {
    width: 9px;
    height: 9px;
    margin-left: 10px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.search-form input {
    min-width: 0;
    height: 54px;
    padding: 0 14px;
    border: 2px solid var(--line);
    border-radius: 8px;
    outline: none;
    background: var(--surface);
    color: var(--copy);
}

.search-form input:focus {
    border-color: var(--accent);
}

.search-form button {
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}

.widget-links {
    display: grid;
}

.widget-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 500;
    line-height: 1.45;
    transition: color 160ms ease, padding-left 160ms ease;
}

.widget-links a:first-child {
    padding-top: 0;
}

.widget-links a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.widget-links a:hover {
    padding-left: 4px;
}

.archive-heading,
.archive-hero,
.empty-state,
.error-card {
    padding: 40px;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.archive-heading > span,
.archive-hero > span,
.error-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.archive-heading h1,
.archive-hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.archive-heading p,
.archive-hero p {
    margin: 0;
    color: var(--muted);
}

.archive-hero {
    margin-top: 0;
}

.archive-page .page-grid {
    padding-top: 34px;
}

.empty-state {
    min-height: 340px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
}

.empty-state > span {
    color: var(--accent);
    font-size: 3rem;
}

.empty-state h2 {
    margin: 6px 0 0;
    color: var(--ink);
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: 2rem;
}

.empty-state p {
    margin: 6px 0 20px;
    color: var(--muted);
}

.empty-state a,
.error-card > a {
    padding: 11px 20px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 500;
}

.breadcrumbs {
    padding-top: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

.breadcrumbs a {
    color: var(--ink);
    font-weight: 500;
}

.breadcrumbs span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-grid {
    padding-top: 28px;
}

.article-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.article-header {
    padding: 42px 46px 34px;
}

.article-header h1 {
    max-width: 860px;
    font-size: clamp(2.35rem, 4vw, 4rem);
}

.article-hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-content {
    padding: 42px 46px 26px;
    color: var(--copy);
    font-size: 1.04rem;
}

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

.article-content p {
    margin: 0 0 1.4em;
}

.article-content h2 {
    margin: 2.1em 0 0.7em;
    color: var(--ink);
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
}

.article-content ul {
    margin: 0 0 1.6em;
    padding-left: 1.3em;
}

.article-content li {
    margin-bottom: 0.8em;
    padding-left: 0.35em;
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content blockquote {
    margin: 2em 0;
    padding: 24px 28px;
    border-left: 4px solid var(--accent);
    border-radius: 0 14px 14px 0;
    background: var(--accent-pale);
    color: var(--ink);
    font-style: italic;
}

.article-content blockquote p {
    margin: 0;
}

.article-content .highlight {
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--accent-pale);
    color: var(--accent);
}

.article-content .last-updated {
    margin-top: 3em;
    color: var(--muted);
    font-size: 0.84rem;
}

.article-footer {
    padding: 24px 46px 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.86rem;
}

.article-footer a {
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
}

.error-card {
    max-width: 820px;
    margin: 50px auto 100px;
    padding: 70px;
    text-align: center;
}

.error-code {
    display: block;
    color: var(--accent);
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: clamp(5rem, 15vw, 9rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.8;
    opacity: 0.16;
}

.error-card h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.error-card p:not(.error-kicker) {
    max-width: 520px;
    margin: 0 auto 28px;
    color: var(--muted);
}

.site-footer {
    padding-top: 64px;
    background: #24233f;
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
    padding-bottom: 54px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 70px;
}

.footer-brand {
    color: #fff;
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.footer-grid p {
    max-width: 520px;
    margin: 12px 0 0;
}

.footer-grid h2 {
    margin: 0 0 16px;
    color: #fff;
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: 1.1rem;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-grid > div:not(:first-child) a:hover {
    color: #fff;
}

.footer-bottom {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

.footer-bottom strong {
    color: #fff;
}

.footer-bottom button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 1180px) {
    .social-links a:nth-last-child(-n + 2) {
        display: none;
    }

    .subscribe-button {
        padding-inline: 17px;
    }

    .featured-image {
        margin-left: -40px;
    }

    .post-card {
        grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    }

    .post-card-image {
        margin-left: -42px;
    }
}

@media (max-width: 1024px) {
    .site-shell {
        width: min(calc(100% - 40px), var(--site-width));
    }

    .header-inner {
        min-height: 108px;
    }

    .brand span {
        display: none;
    }

    .social-links {
        display: none;
    }

    .featured-card {
        min-height: 360px;
        grid-template-columns: 0.95fr 1.05fr;
    }

    .featured-body {
        padding-right: 10px;
    }

    .featured-body h1 {
        font-size: 2rem;
    }

    .featured-body > p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

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

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

    .sidebar .widget:first-child {
        grid-column: 1 / -1;
    }

    .single-grid .sidebar {
        display: none;
    }
}

@media (max-width: 760px) {
    :root {
        --radius: 16px;
    }

    body {
        font-size: 15px;
    }

    .site-shell {
        width: min(calc(100% - 28px), var(--site-width));
    }

    .header-inner {
        min-height: 92px;
        gap: 12px;
    }

    .brand strong {
        font-size: 1.9rem;
    }

    .main-nav,
    .subscribe-button {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .search-shortcut {
        display: inline-grid;
    }

    .ticker-wrap {
        padding: 10px 0;
    }

    .ticker {
        height: 42px;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .ticker-label {
        padding-inline: 13px;
        font-size: 0.78rem;
    }

    .ticker-pause {
        display: none;
    }

    .ticker-track a {
        min-width: 300px;
        padding-inline: 13px;
        font-size: 0.8rem;
    }

    .ticker-track img {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .featured-card {
        min-height: 0;
        padding: 14px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .featured-image {
        margin: 0;
        border-width: 10px;
        border-radius: 15px;
        box-shadow: none;
    }

    .featured-body {
        padding: 24px 6px 12px;
    }

    .featured-body h1 {
        margin-top: 11px;
        font-size: 1.78rem;
    }

    .featured-body > p {
        font-size: 0.96rem;
        -webkit-line-clamp: 4;
    }

    .featured-next {
        display: none;
    }

    .page-grid {
        padding: 28px 0 60px;
        gap: 28px;
    }

    .feed {
        gap: 20px;
    }

    .post-card {
        min-height: 0;
        padding: 14px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .post-card-image {
        margin: 0;
        border-radius: 13px;
        box-shadow: none;
    }

    .post-card-image img {
        aspect-ratio: 16 / 9;
    }

    .post-card-body {
        padding: 22px 6px 10px;
    }

    .post-card h2 {
        font-size: 1.55rem;
    }

    .post-card-body > p {
        -webkit-line-clamp: 3;
    }

    .post-meta {
        margin-top: 17px;
    }

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

    .sidebar .widget:first-child {
        grid-column: auto;
    }

    .widget {
        padding: 24px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-form button {
        height: 48px;
    }

    .archive-hero,
    .archive-heading {
        padding: 28px;
    }

    .breadcrumbs {
        padding-top: 0;
    }

    .single-grid {
        width: 100%;
        padding-top: 20px;
    }

    .article-card {
        border-radius: 0;
    }

    .article-header {
        padding: 30px 20px 26px;
    }

    .article-header h1 {
        font-size: 2.2rem;
    }

    .article-content {
        padding: 30px 20px 16px;
        font-size: 1rem;
    }

    .article-content blockquote {
        margin-inline: 0;
        padding: 20px;
    }

    .article-footer {
        padding: 22px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        min-height: 94px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .error-card {
        margin-top: 28px;
        padding: 48px 24px;
    }
}

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