:root {
    --bg: #1f1414;
    --deep: #05060a;
    --panel: #111520;
    --card: #2c1c1b;
    --card-2: #201516;
    --line: #432e2d;
    --text: #e9edf5;
    --muted: #9098aa;
    --cyan: #2ed7c5;
    --blue: #25b9e6;
    --red: #e63b3b;
    --gold: #d7ab55;
    --radius: 16px;
    --shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.75;
}

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

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

button {
    color: inherit;
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 6, 10, 0.9);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 132px;
    height: auto;
    object-fit: contain;
}

.footer-logo {
    width: 145px;
}

.brand-symbol {
    display: grid;
    min-width: 72px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(215, 171, 85, 0.45);
    border-radius: 12px;
    background: linear-gradient(135deg, #7c5417, #e7c66f 48%, #8f621e);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
    color: #17100a;
    font-size: 20px;
    font-weight: 950;
}

.brand-copy {
    display: grid;
    line-height: 1.25;
}

.brand-copy strong {
    color: #fff;
    font-size: 17px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 11px;
}

.site-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 32px);
}

.site-nav a {
    padding: 26px 0;
    color: #cbd1dd;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--cyan);
}

.header-actions,
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-weight: 800;
    transition: 0.2s ease;
}

.button:hover {
    box-shadow: 0 12px 30px rgba(46, 215, 197, 0.18);
    transform: translateY(-2px);
}

.button-cyan {
    background: linear-gradient(135deg, #31dfbc, #29cbd5);
    color: #05100f;
}

.button-outline {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.button-warm {
    border-color: rgba(215, 171, 85, 0.55);
    background: rgba(102, 62, 25, 0.2);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card-2);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: 0.2s ease;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 120px 0 100px;
    background:
        linear-gradient(160deg, rgba(230, 59, 59, 0.12), rgba(15, 122, 191, 0.08)),
        var(--bg);
}

.hero::after {
    position: absolute;
    z-index: -2;
    right: -10%;
    bottom: -45%;
    width: 65%;
    height: 80%;
    border: 1px solid rgba(255, 255, 255, 0.025);
    background: rgba(0, 0, 0, 0.08);
    content: "";
    transform: rotate(-18deg);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.hero-glow-red {
    top: -180px;
    left: -160px;
    background: var(--red);
}

.hero-glow-blue {
    top: -220px;
    right: -80px;
    background: #1e8bd8;
}

.hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 80px;
}

.hero-showcase {
    display: grid;
    gap: 14px;
}

.hero-banner {
    position: relative;
    min-height: 210px;
    margin: 0;
    overflow: hidden;
    border: 1px solid #3b3130;
    border-radius: 22px;
    background: #090b10;
    box-shadow: var(--shadow);
}

.hero-banner > img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: 30% center;
}

.hero-banner::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
    content: "";
}

.hero-banner figcaption {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 16px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d9dce4;
    font-size: 12px;
    line-height: 1.45;
}

.hero-banner figcaption img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.hero-banner figcaption strong {
    color: #fff;
    font-size: 14px;
}

.kicker {
    margin: 0 0 16px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.hero-lead {
    max-width: 690px;
    margin: 24px 0 30px;
    color: var(--muted);
    font-size: 17px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.trust-row span,
.platforms span,
.filter-pills span {
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
    font-size: 12px;
}

.live-panel {
    padding: 30px;
    border: 1px solid #3b3130;
    border-radius: 22px;
    background: rgba(14, 18, 29, 0.94);
    box-shadow: var(--shadow);
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-heading div {
    display: grid;
}

.panel-heading span,
.metric-card span {
    color: var(--muted);
    font-size: 14px;
}

.panel-heading strong {
    margin: 4px 0;
    font-size: 36px;
}

.panel-heading small,
.metric-card small,
.panel-note {
    color: #70798c;
}

.panel-heading b {
    padding: 7px 11px;
    border: 1px solid rgba(46, 215, 197, 0.4);
    border-radius: 999px;
    color: var(--cyan);
    font-size: 12px;
}

.metric-card {
    display: grid;
    margin-top: 18px;
    padding: 19px;
    border: 1px solid #38302f;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.018);
}

.metric-card strong {
    margin: 7px 0 2px;
    font-size: 25px;
}

.progress {
    height: 8px;
    margin: 18px 0;
    overflow: hidden;
    border-radius: 999px;
    background: #1f2430;
}

.progress i {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #35dc9a, #31cbd5);
}

.platforms,
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.panel-button {
    display: block;
    margin-top: 18px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #351f1d;
    text-align: center;
    font-weight: 800;
}

.panel-note {
    display: block;
    margin-top: 12px;
    text-align: center;
}

.section {
    padding: 88px 0;
}

.section-black {
    background: var(--deep);
}

.section-deep {
    background: #07090f;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.25;
}

.section-heading > div > p:last-child,
.section-heading > p:last-child,
.centered > p:last-child {
    margin: 12px 0 0;
    color: var(--muted);
}

.heading-split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.text-link {
    color: var(--cyan);
    font-weight: 750;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.icon-card,
.step-card,
.promo-card,
.event-card,
.list-card,
.long-article,
.hot-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
}

.icon-card {
    min-height: 310px;
    overflow: hidden;
    padding: 0;
}

.icon-card > div {
    padding: 20px;
}

.feature-thumb {
    width: 100%;
    height: 145px;
    object-fit: cover;
}

.icon-card i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(230, 59, 59, 0.28), rgba(46, 215, 197, 0.12));
    color: var(--cyan);
    font-style: normal;
}

.icon-card h3 {
    margin: 16px 0 8px;
}

.icon-card p,
.step-card p,
.promo-card p,
.event-card p,
.list-card p,
.hot-panel p {
    margin: 0;
    color: var(--muted);
}

.card-slider-shell {
    position: relative;
    padding: 0 42px;
}

.card-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 3px 0 16px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.card-slider::-webkit-scrollbar {
    display: none;
}

.event-card {
    flex: 0 0 calc((100% - 54px) / 4);
    overflow: hidden;
    scroll-snap-align: start;
}

.event-card img {
    width: 100%;
    height: 155px;
    object-fit: cover;
}

.event-card div {
    padding: 18px;
}

.event-card small,
.list-card small {
    color: #858c9b;
}

.event-card h3 {
    margin: 8px 0;
    font-size: 18px;
}

.event-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 34px;
    height: 50px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card);
    cursor: pointer;
    font-size: 24px;
    transform: translateY(-50%);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.guides {
    background: linear-gradient(160deg, rgba(230, 59, 59, 0.12), rgba(15, 122, 191, 0.06));
}

.centered {
    text-align: center;
}

.centered > p {
    max-width: 650px;
    margin-right: auto !important;
    margin-left: auto !important;
}

.step-grid,
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.step-card {
    min-height: 390px;
    overflow: hidden;
    padding: 22px;
    background: rgba(9, 9, 13, 0.9);
}

.step-card > span {
    display: grid;
    width: 38px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: rgba(230, 59, 59, 0.16);
    color: #ffb3b3;
    font-weight: 900;
}

.step-card h3 {
    margin: 28px 0 8px;
}

.step-card .platforms {
    margin-top: 25px;
}

.step-image {
    display: block;
    margin: 28px -22px -22px;
}

.step-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.security-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
}

.security-grid h2 {
    margin: 0 0 22px;
    font-size: clamp(34px, 4vw, 50px);
}

.check-list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.check-list li {
    margin: 10px 0;
    color: var(--muted);
}

.check-list li::before {
    margin-right: 10px;
    color: var(--cyan);
    content: "✓";
}

.security-visual {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    gap: 35px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 30%, rgba(230, 59, 59, 0.3), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(46, 215, 197, 0.18), transparent 35%),
        #251514;
}

.security-ring {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    border: 6px solid var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(46, 215, 197, 0.2);
    color: var(--cyan);
    font-size: 44px;
}

.security-visual div {
    display: grid;
}

.security-visual strong {
    font-size: 30px;
}

.security-visual small {
    color: var(--muted);
}

.promo-card {
    overflow: hidden;
}

.promo-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.promo-card div {
    padding: 20px;
}

.promo-card h3 {
    margin: 0 0 7px;
}

.article-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
}

.long-article,
.hot-panel {
    padding: 28px;
}

.long-article {
    color: #c3c8d1;
}

.long-article h1,
.long-article h2,
.long-article h3,
.article-body h1,
.article-body h2,
.article-body h3 {
    margin: 1.6em 0 0.65em;
    color: var(--text);
    line-height: 1.4;
}

.long-article h2:first-child {
    margin-top: 0;
}

.long-article p,
.article-body p {
    margin: 0 0 1.35em;
}

.long-article img,
.article-body img {
    height: auto;
    margin: 24px auto;
    border-radius: 12px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.tag-cloud a,
.tag-cloud span {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
}

.hot-panel h3 {
    margin: 0 0 16px;
}

.hot-panel h3:not(:first-child) {
    margin-top: 30px;
}

.hot-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hot-panel li {
    position: relative;
    padding: 7px 0 7px 16px;
}

.hot-panel li::before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    content: "";
}

.hot-panel a {
    color: #b6bdca;
}

.hot-panel a:hover {
    color: var(--cyan);
}

.faq {
    background: var(--bg);
}

.faq-wrap {
    max-width: 1020px;
}

.faq-list {
    display: grid;
    gap: 9px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card);
}

.faq-list summary {
    padding: 15px 18px;
    cursor: pointer;
    font-weight: 750;
}

.faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}

.site-footer {
    padding: 48px 0 26px;
    background: var(--deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 50px;
}

.footer-intro p {
    max-width: 360px;
    color: var(--muted);
}

.footer-brand {
    margin-bottom: 18px;
}

.site-footer section {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
}

.site-footer h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

.site-footer section > a,
.site-footer section > p {
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #687080;
    font-size: 12px;
}

.inner-hero,
.article-hero {
    position: relative;
    padding: 100px 0 75px;
    background:
        radial-gradient(circle at 20% 20%, rgba(230, 59, 59, 0.17), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(37, 185, 230, 0.12), transparent 35%),
        var(--bg);
}

.inner-hero h1,
.article-hero h1 {
    max-width: 930px;
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.2;
}

.inner-hero > .container > p:last-child {
    color: var(--muted);
}

.list-stack {
    display: grid;
    gap: 16px;
}

.list-card {
    display: grid;
    overflow: hidden;
    grid-template-columns: 240px minmax(0, 1fr);
}

.list-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.list-card > div {
    padding: 24px;
}

.list-card h2 {
    margin: 8px 0;
    font-size: 23px;
    line-height: 1.4;
}

.sticky-panel {
    position: sticky;
    top: 98px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pagination a {
    display: inline-flex;
    min-width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
}

.pagination a:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.breadcrumbs,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs {
    margin-bottom: 25px;
}

.article-meta {
    margin-top: 18px;
}

.article-lead {
    margin-bottom: 28px;
    padding: 18px 20px;
    border-left: 4px solid var(--cyan);
    background: rgba(255, 255, 255, 0.025);
    color: #b8bfca;
}

.article-body {
    overflow-wrap: anywhere;
}

.article-body a {
    color: var(--cyan);
    text-decoration: underline;
}

.article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.article-body th,
.article-body td {
    padding: 10px;
    border: 1px solid var(--line);
}

.article-next {
    display: grid;
    gap: 5px;
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.article-next span {
    color: var(--muted);
    font-size: 12px;
}

.article-next a {
    color: var(--cyan);
    font-weight: 800;
}

@media (max-width: 1060px) {
    .header-actions {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 410px;
        gap: 45px;
    }

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

    .event-card {
        flex-basis: calc((100% - 36px) / 3);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-grid section:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 30px), 720px);
    }

    .header-inner {
        min-height: 68px;
        justify-content: space-between;
    }

    .brand-symbol {
        min-width: 58px;
        height: 38px;
        font-size: 16px;
    }

    .brand-logo {
        width: 118px;
    }

    .brand-copy small {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: 68px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 12px 20px 22px;
        border-top: 1px solid var(--line);
        background: rgba(5, 6, 10, 0.98);
        flex-direction: column;
        gap: 0;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 11px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hero {
        padding: 76px 0 68px;
    }

    .hero-grid,
    .security-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 44px;
    }

    .hero-copy {
        max-width: 650px;
    }

    .hero h1 {
        font-size: clamp(40px, 9vw, 58px);
    }

    .section {
        padding: 72px 0;
    }

    .heading-split {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .step-grid,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: 0;
    }

    .security-grid {
        gap: 42px;
    }

    .article-layout {
        gap: 18px;
    }

    .sticky-panel {
        position: static;
    }

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

    .footer-grid section:last-child {
        grid-column: auto;
    }

    .footer-intro {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 24px);
    }

    .site-brand {
        gap: 8px;
    }

    .brand-logo {
        width: 106px;
    }

    .brand-copy strong {
        max-width: 155px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero {
        padding: 54px 0 52px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero-lead {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .trust-row {
        gap: 7px;
    }

    .live-panel {
        padding: 17px;
        border-radius: 16px;
    }

    .panel-heading strong {
        font-size: 28px;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading h2,
    .security-grid h2 {
        font-size: 30px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .icon-card {
        min-height: 0;
        padding: 0;
    }

    .icon-card h3 {
        margin-top: 16px;
    }

    .feature-thumb {
        height: 190px;
    }

    .card-slider-shell {
        padding: 0 28px;
    }

    .event-card {
        flex-basis: 100%;
    }

    .event-card img {
        height: 190px;
    }

    .slider-arrow {
        width: 28px;
        height: 46px;
    }

    .step-card {
        padding: 18px;
    }

    .step-image {
        margin: 22px -18px -18px;
    }

    .security-visual {
        min-height: 150px;
        gap: 18px;
    }

    .security-ring {
        width: 68px;
        height: 68px;
        font-size: 30px;
    }

    .security-visual strong {
        font-size: 24px;
    }

    .promo-card img {
        height: 190px;
    }

    .long-article,
    .hot-panel {
        padding: 18px;
    }

    .long-article {
        font-size: 14px;
    }

    .faq-list summary {
        padding: 13px 14px;
        font-size: 14px;
    }

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

    .footer-intro {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 6px;
    }

    .inner-hero,
    .article-hero {
        padding: 65px 0 50px;
    }

    .inner-hero h1,
    .article-hero h1 {
        font-size: 36px;
    }

    .list-card {
        grid-template-columns: 1fr;
    }

    .list-image img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .list-card > div {
        padding: 18px;
    }

    .list-card h2 {
        font-size: 20px;
    }
}

@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;
    }
}
