:root {
    --paper: #ffffff;
    --paper-soft: #f6f7f8;
    --paper-blue: #f0f6fb;
    --paper-warm: #f5f1e8;
    --ink: #0b0b0b;
    --ink-soft: #292929;
    --muted: #626262;
    --rule: #d8d8d4;
    --rule-dark: #a6a6a2;
    --red: #c9182b;
    --blue: #176aa6;
    --blue-dark: #104c78;
    --green: #176b43;
    --gold: #a27819;
    --container: 1260px;
    --article-width: 780px;
    --page-padding: 28px;
    --serif: Georgia, "Times New Roman", Times, serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

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

::selection {
    background: var(--blue);
    color: #ffffff;
}

.container {
    width: min(
        calc(
            100% -
            (var(--page-padding) * 2)
        ),
        var(--container)
    );
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 14px;
    background: #000000;
    color: #ffffff;
    transform: translateY(-150%);
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.utility-bar {
    background: var(--ink);
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.035em;
}

.utility-bar__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.utility-bar__tagline {
    margin: 0;
    color: #dddddd;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 19px;
    white-space: nowrap;
}

.utility-links a {
    color: #ffffff;
    text-decoration: none;
}

.utility-links a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.masthead {
    background: #ffffff;
    border-bottom: 1px solid var(--rule);
}

.masthead__inner {
    min-height: 122px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.masthead__strap {
    max-width: 230px;
    margin: 0;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.4;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    object-fit: contain;
}

.site-brand__name {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.masthead__action {
    display: flex;
    justify-content: flex-end;
}

.tip-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.tip-link::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
}

.tip-link:hover {
    background: var(--ink);
    color: #ffffff;
}

.navigation-shell {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 3px solid var(--ink);
}

.navigation {
    min-height: 46px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.navigation::-webkit-scrollbar {
    display: none;
}

.navigation a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.015em;
    text-decoration: none;
    white-space: nowrap;
}

.navigation a:hover {
    color: var(--blue);
}

.navigation a.is-active {
    color: var(--ink);
}

.navigation a.is-active::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 0;
    height: 3px;
    background: var(--blue);
}

.article-header {
    padding-top: 56px;
    padding-bottom: 39px;
}

.article-kicker {
    margin: 0 0 13px;
    color: var(--blue);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-headline {
    max-width: 1160px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(52px, 7.8vw, 94px);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.article-deck {
    max-width: 930px;
    margin: 28px 0 0;
    color: #3c3c3c;
    font-family: var(--serif);
    font-size: clamp(21px, 2.5vw, 28px);
    line-height: 1.42;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 23px;
    margin-top: 27px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
}

.article-meta__item {
    position: relative;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.article-meta__item + .article-meta__item::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    width: 3px;
    height: 3px;
    background: var(--rule-dark);
    border-radius: 50%;
    transform: translateY(-50%);
}

.article-meta__item a {
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
}

.article-meta__item a:hover {
    color: var(--blue);
}

.affiliation-note {
    max-width: 930px;
    margin: 16px 0 0;
    color: #767676;
    font-size: 10.5px;
    line-height: 1.5;
}

.affiliation-note strong {
    color: #4a4a4a;
}

.screenshot-crop {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #111111;
}

.screenshot-crop--hero {
    aspect-ratio: 16 / 7.45;
}

.screenshot-crop--plans {
    aspect-ratio: 16 / 7.55;
    border: 1px solid var(--rule);
}

.screenshot-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 49%;
}

.screenshot-crop--hero img {
    object-position: center 48%;
}

.screenshot-crop--plans img {
    object-position: center 48%;
}

.article-hero {
    width: min(
        calc(
            100% -
            (var(--page-padding) * 2)
        ),
        var(--container)
    );
    margin: 0 auto;
}

.article-hero figcaption {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 9px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--rule);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.article-hero figcaption strong {
    color: var(--ink);
}

.article-layout {
    display: grid;
    grid-template-columns:
        minmax(170px, 1fr)
        minmax(0, var(--article-width))
        minmax(170px, 1fr);
    gap: 45px;
    width: min(
        calc(
            100% -
            (var(--page-padding) * 2)
        ),
        var(--container)
    );
    margin-inline: auto;
    padding-top: 44px;
    padding-bottom: 60px;
}

.article-body {
    grid-column: 2;
    min-width: 0;
}

.article-body > p {
    margin: 0 0 22px;
    color: #292929;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.72;
}

.article-body > p:first-child::first-letter {
    float: left;
    margin: 7px 9px 0 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 66px;
    line-height: 0.72;
    font-weight: 900;
}

.article-body h2 {
    margin: 50px 0 19px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.038em;
}

.article-body h3 {
    margin: 34px 0 14px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.1;
}

.article-body blockquote {
    margin: 38px 0;
    padding: 22px 0 22px 24px;
    border-left: 5px solid var(--blue);
}

.article-body blockquote p {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(23px, 3vw, 31px);
    line-height: 1.3;
    font-weight: 700;
}

.scorecard {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 36px 0;
    border-top: 4px solid var(--ink);
    border-bottom: 1px solid var(--rule);
}

.scorecard__item {
    padding: 21px 20px 22px 0;
}

.scorecard__item + .scorecard__item {
    padding-left: 20px;
    border-left: 1px solid var(--rule);
}

.scorecard__value {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.scorecard__item p {
    margin: 0;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 12.5px;
    line-height: 1.45;
}

.feature-box {
    margin: 36px 0;
    padding: 25px 27px 26px;
    background: var(--paper-blue);
    border-top: 5px solid var(--blue);
    border-bottom: 1px solid #cfdce5;
}

.feature-box__label {
    margin: 0 0 8px !important;
    color: var(--blue) !important;
    font-family: var(--sans) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-box h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -0.026em;
}

.feature-box p {
    margin: 0 0 13px;
    color: #3f3f3f;
    font-family: var(--serif);
    font-size: 15.5px;
    line-height: 1.58;
}

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

.test-case {
    margin: 39px 0;
    border-top: 5px solid var(--ink);
    border-bottom: 1px solid var(--rule);
    background: var(--paper-soft);
}

.test-case__head {
    padding: 23px 25px 19px;
    border-bottom: 1px solid var(--rule);
}

.test-case__number {
    margin: 0 0 7px !important;
    color: var(--blue) !important;
    font-family: var(--sans) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.test-case__head h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.07;
    letter-spacing: -0.03em;
}

.test-case__body {
    padding: 24px 25px 26px;
}

.test-case__body p {
    margin: 0 0 15px;
    color: #353535;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.62;
}

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

.lab-result {
    margin: 31px 0 5px;
    padding: 22px 24px;
    background: #111111;
    color: #ffffff;
    border-left: 5px solid var(--red);
}

.lab-result__label {
    margin: 0 0 8px !important;
    color: #ff7a87 !important;
    font-family: var(--sans) !important;
    font-size: 10px !important;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lab-result p {
    margin: 0 0 12px !important;
    color: #dedede !important;
    font-family: var(--serif) !important;
    font-size: 15px !important;
    line-height: 1.57 !important;
}

.lab-result p:last-child {
    margin-bottom: 0 !important;
}

.method-box {
    margin: 37px 0;
    padding: 25px 27px;
    background: #101010;
    color: #ffffff;
    border-top: 5px solid var(--blue);
}

.method-box__label {
    margin: 0 0 8px !important;
    color: #7fc7f4 !important;
    font-family: var(--sans) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.method-box h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-family: var(--serif);
    font-size: 27px;
    line-height: 1.08;
}

.method-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.method-box li {
    position: relative;
    padding: 11px 0 11px 20px;
    border-top: 1px solid #343434;
    color: #dddddd;
    font-family: var(--serif);
    font-size: 14.5px;
    line-height: 1.5;
}

.method-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 7px;
    height: 7px;
    background: var(--blue);
}

.inline-figure {
    margin: 41px 0;
}

.inline-figure figcaption {
    margin-top: 9px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.inline-figure figcaption strong {
    color: var(--ink);
}

.plan-table {
    margin: 37px 0;
    border-top: 4px solid var(--ink);
    border-bottom: 1px solid var(--rule);
}

.plan-table__header {
    padding: 18px 0 15px;
    border-bottom: 1px solid var(--rule);
}

.plan-table__header p {
    margin: 0 0 5px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plan-table__header h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.1;
}

.plan-row {
    display: grid;
    grid-template-columns: 110px 120px minmax(0, 1fr);
    gap: 22px;
    padding: 17px 0;
    border-bottom: 1px solid var(--rule);
}

.plan-row:last-child {
    border-bottom: 0;
}

.plan-row__name {
    margin: 0 !important;
    color: var(--ink) !important;
    font-family: var(--sans) !important;
    font-size: 12px !important;
    font-weight: 900;
}

.plan-row__price {
    margin: 0 !important;
    color: var(--blue) !important;
    font-family: var(--serif) !important;
    font-size: 18px !important;
    font-weight: 900;
}

.plan-row__copy {
    margin: 0 !important;
    color: var(--muted) !important;
    font-family: var(--serif) !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
}

.verdict-box {
    margin: 40px 0;
    padding: 29px 28px 30px;
    background: var(--ink);
    color: #ffffff;
    border-top: 6px solid var(--blue);
}

.verdict-box__label {
    margin: 0 0 10px !important;
    color: #7fc7f4 !important;
    font-family: var(--sans) !important;
    font-size: 10px !important;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.verdict-box h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-family: var(--serif);
    font-size: clamp(29px, 4vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.verdict-box p {
    margin: 0 0 13px;
    color: #dddddd;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.58;
}

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

.reporting-note {
    margin-top: 44px;
    padding: 24px 26px;
    background: var(--paper-soft);
    border-top: 4px solid var(--ink);
}

.reporting-note__label {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reporting-note h2 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.08;
}

.reporting-note p {
    margin: 0 0 12px;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 13.5px;
    line-height: 1.58;
}

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

.article-end {
    margin-top: 45px;
    padding-top: 17px;
    border-top: 4px solid var(--ink);
}

.article-end p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.author-box {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 25px;
    margin-top: 47px;
    padding-top: 30px;
    padding-bottom: 31px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.author-box__photo {
    display: block;
    width: 100%;
    height: auto;
    background: #ececea;
}

.story-label {
    margin: 0 0 7px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.author-box__name {
    margin: 0 0 11px;
    font-family: var(--serif);
    font-size: 29px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.author-box__name a {
    text-decoration: none;
}

.author-box__name a:hover {
    color: var(--blue);
}

.author-box__bio {
    margin: 0 0 14px;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.55;
}

.text-link {
    display: inline-block;
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link::after {
    content: " →";
    color: var(--blue);
}

.text-link:hover {
    color: var(--blue);
}

.related-stories {
    margin-top: 48px;
}

.section-kicker {
    margin: 0 0 13px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.related-story-list {
    border-top: 4px solid var(--ink);
}

.related-story {
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
}

.related-story .story-label {
    margin-bottom: 7px;
}

.related-story h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.related-story h3 a {
    text-decoration: none;
}

.related-story h3 a:hover {
    color: var(--blue);
}

.site-footer {
    background: #0b0b0b;
    color: #ffffff;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 70px;
    padding-top: 45px;
    padding-bottom: 43px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    text-decoration: none;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-brand span {
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.footer-summary {
    max-width: 390px;
    margin: 18px 0 0;
    color: #bdbdbd;
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.55;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px 25px;
    align-content: start;
}

.footer-nav a {
    padding: 5px 0;
    color: #e4e4e4;
    font-size: 13px;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer__bottom {
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #303030;
    color: #8e8e8e;
    font-size: 11px;
}

.site-footer__bottom p {
    margin: 0;
}

.footer-accent {
    width: 42px;
    height: 3px;
    background: var(--blue);
}

@media (max-width: 1040px) {
    .masthead__inner {
        grid-template-columns: auto 1fr auto;
    }

    .masthead__strap {
        display: none;
    }

    .site-brand {
        justify-self: start;
    }

    .site-brand__name {
        font-size: 42px;
    }

    .article-layout {
        grid-template-columns:
            minmax(70px, 0.5fr)
            minmax(0, var(--article-width))
            minmax(70px, 0.5fr);
        gap: 25px;
    }
}

@media (max-width: 820px) {
    :root {
        --page-padding: 20px;
    }

    .utility-bar__tagline {
        display: none;
    }

    .utility-bar__inner {
        justify-content: flex-end;
    }

    .masthead__inner {
        min-height: 95px;
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
    }

    .site-brand__name {
        font-size: 37px;
    }

    .navigation {
        justify-content: flex-start;
    }

    .navigation a:first-child {
        padding-left: 0;
    }

    .article-layout {
        display: block;
        max-width: 820px;
    }

    .article-body {
        width: min(100%, var(--article-width));
        margin-inline: auto;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 620px) {
    :root {
        --page-padding: 16px;
    }

    .utility-bar {
        display: none;
    }

    .masthead__inner {
        min-height: 82px;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .site-brand {
        gap: 9px;
    }

    .site-brand__name {
        font-size: clamp(27px, 8vw, 34px);
    }

    .tip-link {
        min-height: 35px;
        padding: 0 9px;
        font-size: 10px;
    }

    .navigation-shell {
        border-bottom-width: 2px;
    }

    .navigation {
        min-height: 42px;
    }

    .navigation a {
        padding: 0 13px;
        font-size: 12px;
    }

    .article-header {
        padding-top: 39px;
        padding-bottom: 30px;
    }

    .article-headline {
        font-size: clamp(46px, 13vw, 66px);
    }

    .article-deck {
        margin-top: 21px;
        font-size: 20px;
    }

    .article-meta {
        gap: 8px 17px;
    }

    .article-meta__item + .article-meta__item::before {
        left: -10px;
    }

    .screenshot-crop--hero,
    .screenshot-crop--plans {
        aspect-ratio: 16 / 7.1;
    }

    .article-hero figcaption {
        display: block;
    }

    .article-hero figcaption span {
        display: block;
    }

    .article-layout {
        padding-top: 34px;
        padding-bottom: 45px;
    }

    .article-body > p {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 1.68;
    }

    .article-body h2 {
        margin-top: 42px;
        font-size: 31px;
    }

    .article-body blockquote {
        padding-left: 18px;
    }

    .article-body blockquote p {
        font-size: 23px;
    }

    .scorecard {
        display: block;
    }

    .scorecard__item,
    .scorecard__item + .scorecard__item {
        padding: 17px 0;
        border-left: 0;
        border-bottom: 1px solid var(--rule);
    }

    .scorecard__item:last-child {
        border-bottom: 0;
    }

    .feature-box,
    .method-box,
    .verdict-box,
    .reporting-note,
    .test-case__head,
    .test-case__body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .plan-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .author-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .author-box__photo {
        width: 100%;
        height: auto;
    }

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

    .site-footer__bottom {
        min-height: 67px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 390px) {
    .brand-logo {
        width: 35px;
        height: 35px;
    }

    .site-brand__name {
        font-size: 26px;
    }
}

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

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