:root {
    --background: #ffffff;
    --surface: #f7f8fa;
    --surface-strong: #eef1f5;
    --text: #15171a;
    --muted: #646b74;
    --border: #e2e5e9;
    --accent: #ff5a1f;
    --accent-dark: #df4310;
    --content: 1180px;
    --reading: 760px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.shell {
    width: min(
        var(--content),
        calc(100% - 40px)
    );
    margin: 0 auto;
}

.shell--narrow {
    max-width: 820px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    font-size: .95rem;
    font-weight: 750;
    text-decoration: none;
    transition:
        background .15s ease,
        transform .15s ease;
}

.button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.text-link {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
}


/* HEADER */

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.97);
}

.site-header__inner {
    width: min(
        var(--content),
        calc(100% - 40px)
    );
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-brand {
    font-size: 1.12rem;
    font-weight: 850;
    letter-spacing: -.025em;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: #34383e;
    font-size: .92rem;
    font-weight: 650;
    text-decoration: none;
}

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


/* HOME */

.home-hero {
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(
            180deg,
            #fafbfc 0%,
            #fff 100%
        );
}

.home-hero__content {
    max-width: 850px;
    padding: 100px 0 104px;
}

.home-hero h1,
.archive-hero h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(
        2.7rem,
        7vw,
        5.4rem
    );
    line-height: .98;
    letter-spacing: -.055em;
}

.home-hero p {
    max-width: 650px;
    margin: 28px 0 32px;
    color: var(--muted);
    font-size: 1.16rem;
    line-height: 1.65;
}

.section {
    padding: 80px 0 96px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(
        2rem,
        4vw,
        3rem
    );
    letter-spacing: -.04em;
}


/* CARDS */

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

.content-card {
    display: flex;
    flex-direction: column;
    min-height: 290px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    transition:
        border-color .15s ease,
        transform .15s ease,
        box-shadow .15s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    border-color: #ccd1d7;
    box-shadow:
        0 16px 35px rgba(0,0,0,.06);
}

.content-card__eyebrow {
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.content-card__title {
    margin: 0;
    font-size: 1.34rem;
    line-height: 1.28;
    letter-spacing: -.025em;
}

.content-card__title a {
    text-decoration: none;
}

.content-card__excerpt {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .94rem;
}

.content-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: auto;
    padding-top: 24px;
    color: #858b93;
    font-size: .78rem;
}


/* ARCHIVE */

.archive-hero {
    padding: 90px 0 74px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.archive-hero p {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
}


/* BLOG ARTICLE */

.blog-article {
    width: min(
        100% - 40px,
        980px
    );
    margin: 0 auto;
    padding: 68px 0 100px;
}

.blog-article__header {
    width: min(
        100%,
        860px
    );
    margin: 0 auto 56px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    color: #80868f;
    font-size: .82rem;
}

.breadcrumbs a {
    text-decoration: none;
}

.blog-article h1 {
    margin: 0;
    font-size: clamp(
        2.4rem,
        6vw,
        4.7rem
    );
    line-height: 1.02;
    letter-spacing: -.05em;
}

.blog-article__excerpt {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.65;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 26px;
    color: #777e87;
    font-size: .84rem;
}

.article-meta a {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}


/* PROSE */

.prose {
    width: min(
        100%,
        var(--reading)
    );
    margin: 0 auto;
}

.prose section {
    margin: 52px 0;
}

.prose h2 {
    margin: 0 0 20px;
    font-size: clamp(
        1.65rem,
        3vw,
        2.15rem
    );
    line-height: 1.18;
    letter-spacing: -.035em;
}

.prose p,
.prose li {
    color: #31353a;
    font-size: 1.04rem;
    line-height: 1.78;
}

.prose p {
    margin: 0 0 20px;
}

.prose__lead {
    margin-bottom: 46px !important;
    color: #25282c !important;
    font-size: 1.16rem !important;
    line-height: 1.75 !important;
}

.prose ul {
    margin: 22px 0;
    padding-left: 24px;
}

.prose li + li {
    margin-top: 9px;
}


/* INTERNAL LINK */

.related-guide {
    margin: 44px 0;
    padding: 24px 26px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    background: var(--surface);
}

.related-guide__label {
    margin-bottom: 7px;
    color: var(--accent-dark);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.related-guide p {
    margin: 0;
    font-size: .98rem;
}

.related-guide a {
    font-weight: 750;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


/* AUTHOR */

.article-author {
    width: min(
        100%,
        var(--reading)
    );
    margin: 72px auto 0;
    padding-top: 34px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

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

.article-author h2 {
    margin: 0 0 2px;
    font-size: 1.35rem;
}

.article-author__role {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: .9rem;
}

.article-author p {
    margin: 10px 0;
    color: #50565d;
}


/* FOOTER */

.site-footer {
    border-top: 1px solid var(--border);
    background: #111315;
    color: #fff;
}

.site-footer__inner {
    width: min(
        var(--content),
        calc(100% - 40px)
    );
    margin: 0 auto;
    padding: 56px 0 38px;
}

.site-footer__brand {
    font-size: 1.14rem;
    font-weight: 850;
}

.site-footer__text {
    max-width: 520px;
    margin: 12px 0 42px;
    color: #aeb4bb;
    font-size: .92rem;
}

.site-footer__bottom {
    padding-top: 22px;
    border-top: 1px solid #2a2e32;
    color: #818890;
    font-size: .78rem;
}


/* ERROR */

.error-page {
    min-height: 65vh;
    padding: 100px 0;
}

.error-page h1 {
    margin: 0 0 14px;
    font-size: clamp(
        2.5rem,
        7vw,
        4.8rem
    );
}

.error-page p {
    margin: 0 0 28px;
    color: var(--muted);
}

.empty-state {
    padding: 42px;
    border: 1px dashed var(--border);
    border-radius: 14px;
    color: var(--muted);
    text-align: center;
}


/* RESPONSIVE */

@media (max-width: 880px) {

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

    .home-hero__content {
        padding: 76px 0 82px;
    }

}

@media (max-width: 620px) {

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

    .site-header__inner {
        min-height: 64px;
    }

    .site-nav {
        gap: 18px;
    }

    .home-hero__content {
        padding: 62px 0 68px;
    }

    .home-hero h1,
    .archive-hero h1 {
        font-size: 2.7rem;
    }

    .section {
        padding: 60px 0 72px;
    }

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

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

    .archive-hero {
        padding: 64px 0 54px;
    }

    .blog-article {
        width: min(
            100% - 28px,
            980px
        );
        padding: 44px 0 72px;
    }

    .blog-article__header {
        margin-bottom: 42px;
    }

    .blog-article h1 {
        font-size: 2.65rem;
    }

    .prose p,
    .prose li {
        font-size: 1rem;
    }

    .article-author {
        grid-template-columns: 1fr;
    }

    .article-author img {
        width: 70px;
        height: 70px;
    }

}


/* ==========================================================
   EDITORIAL HOME V2
   ========================================================== */

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

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--text);
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .07em;
}

.site-brand__name {
    white-space: nowrap;
}


.editorial-hero {
    padding: 72px 0 92px;
    border-bottom: 1px solid var(--border);
}

.editorial-hero__intro {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, .75fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 64px;
}

.editorial-hero__intro h1 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(
        3rem,
        7vw,
        6rem
    );
    line-height: .94;
    letter-spacing: -.065em;
}

.editorial-hero__intro p {
    max-width: 480px;
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}


.featured-story {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, .86fr);
    overflow: hidden;
    min-height: 480px;
    border-radius: 24px;
    background: #111315;
    color: #fff;
}

.featured-story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(
        38px,
        6vw,
        70px
    );
}

.featured-story__label {
    margin-bottom: 22px;
    color: #ff8d66;
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.featured-story h2 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(
        2rem,
        4vw,
        3.3rem
    );
    line-height: 1.06;
    letter-spacing: -.045em;
}

.featured-story h2 a {
    text-decoration: none;
}

.featured-story p {
    max-width: 610px;
    margin: 24px 0 0;
    color: #b9bec5;
    font-size: 1rem;
}

.featured-story__link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    align-self: flex-start;
    margin-top: 32px;
    color: #fff;
    font-size: .92rem;
    font-weight: 750;
    text-decoration: none;
}

.featured-story__link span {
    font-size: 1.25rem;
}

.featured-story__media {
    display: block;
    min-height: 100%;
    background: #eceff2;
}

.featured-story__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 42px;
    background: #f4f5f6;
}

.featured-story__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    color: #d8dce0;
    background:
        linear-gradient(
            145deg,
            #31353a,
            #1c1f23
        );
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -.05em;
}


.editorial-section {
    padding: 94px 0;
}

.editorial-section--soft {
    background: #f6f7f8;
}

.editorial-section__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, 420px);
    gap: 48px;
    align-items: end;
    margin-bottom: 38px;
}

.editorial-section__header h2 {
    margin: 0;
    font-size: clamp(
        2.2rem,
        4vw,
        3.4rem
    );
    line-height: 1;
    letter-spacing: -.05em;
}

.editorial-section__header > p {
    margin: 0 0 3px;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.65;
}

.section-link {
    justify-self: end;
    align-self: end;
    margin-bottom: 5px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 750;
    text-decoration: none;
}


/* richer content cards */

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

.content-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: #f3f4f5;
}

.content-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 24px;
    object-fit: contain;
    transition: transform .22s ease;
}

.content-card:hover
.content-card__media img {
    transform: scale(1.025);
}

.content-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b5bb;
    background:
        linear-gradient(
            145deg,
            #f4f5f6,
            #eceff1
        );
}

.content-card__media--placeholder span {
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.content-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px 26px 26px;
}

.content-card__eyebrow {
    margin-bottom: 12px;
}

.content-card__title {
    font-size: 1.25rem;
}

.content-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.content-card__meta {
    padding-top: 20px;
}


.editorial-manifesto {
    padding: 104px 0;
    background: #111315;
    color: #fff;
}

.editorial-manifesto__inner {
    max-width: 850px;
}

.editorial-manifesto h2 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(
        2.5rem,
        5vw,
        4.8rem
    );
    line-height: .98;
    letter-spacing: -.06em;
}

.editorial-manifesto p {
    max-width: 640px;
    margin: 30px 0 0;
    color: #aeb4bb;
    font-size: 1.08rem;
    line-height: 1.72;
}


@media (max-width: 900px) {

    .editorial-hero__intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .editorial-hero__intro p {
        max-width: 650px;
    }

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

    .featured-story__media {
        min-height: 340px;
    }

    .featured-story__media img {
        max-height: 430px;
    }

}


@media (max-width: 720px) {

    .site-brand__name {
        font-size: .95rem;
    }

    .site-nav a:nth-child(2) {
        display: none;
    }

    .editorial-hero {
        padding: 52px 0 64px;
    }

    .editorial-hero__intro {
        margin-bottom: 42px;
    }

    .editorial-hero__intro h1 {
        font-size: 3.25rem;
    }

    .featured-story {
        border-radius: 18px;
    }

    .featured-story__content {
        padding: 34px 28px;
    }

    .featured-story h2 {
        font-size: 2rem;
    }

    .featured-story__media {
        min-height: 270px;
    }

    .featured-story__media img {
        padding: 28px;
    }

    .editorial-section {
        padding: 68px 0;
    }

    .editorial-section__header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-link {
        justify-self: start;
    }

    .editorial-manifesto {
        padding: 76px 0;
    }

}


/* ==========================================================
   EDITORIAL POLISH V3
   ========================================================== */

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
    min-height: 76px;
}

.site-brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #16191d,
            #393e45
        );
    box-shadow:
        inset 0 0 0 1px
        rgba(255,255,255,.08);
}

.site-brand__name {
    font-size: 1.02rem;
    letter-spacing: -.025em;
}

.site-nav a {
    position: relative;
    padding: 27px 0 25px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 2px;
    background: var(--accent);
    transition: right .18s ease;
}

.site-nav a:hover::after {
    right: 0;
}


/* HERO */

.editorial-hero {
    position: relative;
    overflow: hidden;
}

.editorial-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -270px;
    right: -100px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255,90,31,.09),
            rgba(255,90,31,0) 70%
        );
    pointer-events: none;
}

.editorial-hero .shell {
    position: relative;
}

.editorial-hero__intro h1 {
    max-width: 900px;
}

.featured-story {
    box-shadow:
        0 30px 65px
        rgba(0,0,0,.12);
}

.featured-story__media {
    overflow: hidden;
}

.featured-story__media img {
    transition: transform .4s ease;
}

.featured-story:hover
.featured-story__media img {
    transform: scale(1.025);
}


/* SECTION DIVIDERS */

.editorial-section {
    position: relative;
}

.editorial-section:not(
    .editorial-section--soft
) + .editorial-section:not(
    .editorial-section--soft
) {
    border-top: 1px solid var(--border);
}


/* COMMERCIAL CARDS */

.content-card--review
.content-card__eyebrow {
    color: #d44913;
}

.content-card--buying-guide
.content-card__eyebrow {
    color: #315d7a;
}

.content-card--review
.content-card__media {
    background:
        linear-gradient(
            145deg,
            #fafafa,
            #f2f3f4
        );
}

.content-card--buying-guide
.content-card__media {
    background:
        linear-gradient(
            145deg,
            #f5f8fa,
            #ebf0f3
        );
}

.content-card__title a {
    background-image:
        linear-gradient(
            currentColor,
            currentColor
        );
    background-position:
        0 100%;
    background-repeat:
        no-repeat;
    background-size:
        0 1px;
    transition:
        background-size .2s ease;
}

.content-card:hover
.content-card__title a {
    background-size:
        100% 1px;
}


/* LEARN */

.learn-grid {
    border-top:
        1px solid var(--border);
}

.learn-card {
    display: grid;
    grid-template-columns:
        90px minmax(0, 1fr);
    gap: 34px;
    padding: 38px 0;
    border-bottom:
        1px solid var(--border);
}

.learn-card__index {
    padding-top: 4px;
    color: #b4bac1;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.learn-card__content {
    max-width: 800px;
}

.learn-card h3 {
    margin: 0;
    font-size: clamp(
        1.55rem,
        3vw,
        2.3rem
    );
    line-height: 1.15;
    letter-spacing: -.035em;
}

.learn-card h3 a {
    text-decoration: none;
}

.learn-card h3 a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.learn-card p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .98rem;
}

.learn-card__link {
    display: inline-block;
    margin-top: 16px;
    color: var(--text);
    font-size: .86rem;
    font-weight: 750;
    text-decoration: none;
}

.learn-card__link:hover {
    color: var(--accent-dark);
}


/* MANIFESTO */

.editorial-manifesto {
    position: relative;
    overflow: hidden;
}

.editorial-manifesto::after {
    content: "SCG";
    position: absolute;
    right: -30px;
    bottom: -95px;
    color: rgba(255,255,255,.025);
    font-size: 20rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.09em;
    pointer-events: none;
}


/* FOOTER */

.site-footer__brand {
    font-size: 1.3rem;
    letter-spacing: -.025em;
}


/* MOBILE */

@media (max-width: 720px) {

    .site-header {
        position: relative;
    }

    .site-header__inner {
        min-height: 66px;
    }

    .site-brand__mark {
        width: 36px;
        height: 36px;
        font-size: .63rem;
    }

    .site-nav a {
        padding: 20px 0;
    }

    .site-nav a::after {
        bottom: 14px;
    }

    .learn-card {
        grid-template-columns:
            48px minmax(0, 1fr);
        gap: 16px;
        padding: 30px 0;
    }

    .learn-card__index {
        font-size: 1.15rem;
    }

    .learn-card h3 {
        font-size: 1.45rem;
    }

    .editorial-manifesto::after {
        font-size: 10rem;
        bottom: -35px;
    }

}


/* ==========================================================
   COMMERCIAL ARTICLES V2
   ========================================================== */

.commercial-article-page {
    background: #fff;
}

.commercial-article-page
.commercial-main {
    width: min(
        1180px,
        calc(100% - 40px)
    );
    margin: 0 auto;
    padding: 62px 0 100px;
}


/* reset legacy article spacing */

.commercial-article-page
.commercial-main > article {
    width: 100%;
    max-width: none;
    margin: 0;
}


/* HERO */

.commercial-article-page
.article-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, .88fr);
    gap: 72px;
    align-items: center;
    margin: 0 0 76px;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--border);
}

.commercial-article-page
.article-hero__content {
    max-width: 700px;
}

.commercial-article-page
.article-hero__content::before {
    content: "Independent review";
    display: block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: .73rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.commercial-article-page
.article-hero__content h1 {
    margin: 0 0 24px;
    font-size: clamp(
        2.7rem,
        5.6vw,
        5.1rem
    );
    line-height: .98;
    letter-spacing: -.055em;
}

.commercial-article-page
.article-hero__intro {
    margin: 0 0 24px;
    color: #555c64;
    font-size: 1.12rem;
    line-height: 1.7;
}

.commercial-article-page
.article-hero__price {
    display: inline-block;
    margin: 4px 0 16px;
    padding: 7px 12px;
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: .96rem;
    font-weight: 800;
}

.commercial-article-page
.article-hero__rating {
    color: #6d747c;
    font-size: .9rem;
}

.commercial-article-page
.article-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow:
        0 8px 22px
        rgba(255,90,31,.2);
}

.commercial-article-page
.article-hero__cta:hover {
    background: var(--accent-dark);
}

.commercial-article-page
.affiliate-disclosure {
    max-width: 520px;
    margin-top: 13px;
    color: #858b92;
    font-size: .75rem;
    line-height: 1.5;
}

.commercial-article-page
.article-hero__image {
    position: relative;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            #fafafa,
            #f1f3f5
        );
}

.commercial-article-page
.article-hero__image img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 0;
}


/* fallback header */

.commercial-article-page
.article-header {
    max-width: 820px;
    margin: 0 auto 58px;
}

.commercial-article-page
.article-header h1 {
    font-size: clamp(
        2.7rem,
        5vw,
        4.8rem
    );
    line-height: 1;
    letter-spacing: -.05em;
}

.commercial-article-page
.article-excerpt {
    color: var(--muted);
    font-size: 1.12rem;
}


/* GENERAL TYPOGRAPHY */

.commercial-article-page
.commercial-main article > p,
.commercial-article-page
.commercial-main article > h2,
.commercial-article-page
.commercial-main article > h3,
.commercial-article-page
.commercial-main article > h4,
.commercial-article-page
.commercial-main article > h5,
.commercial-article-page
.commercial-main article > h6 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.commercial-article-page
.commercial-main article > h2 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: clamp(
        1.8rem,
        3.3vw,
        2.45rem
    );
    line-height: 1.15;
    letter-spacing: -.035em;
}

.commercial-article-page
.commercial-main article > p {
    color: #34383d;
    font-size: 1.03rem;
    line-height: 1.78;
}


/* PRODUCT HIGHLIGHTS */

.commercial-article-page
.product-highlights {
    margin: 58px auto;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8f9fa;
}

.commercial-article-page
.product-highlights h2 {
    margin: 0 0 22px;
    font-size: 1.55rem;
    letter-spacing: -.03em;
}

.commercial-article-page
.product-highlights__grid {
    gap: 14px;
}

.commercial-article-page
.product-highlight {
    padding: 20px;
    border: 1px solid #eceef0;
    border-radius: 12px;
}

.commercial-article-page
.product-highlight__label {
    color: #7d838b;
}

.commercial-article-page
.product-highlight__value {
    color: var(--text);
}


/* TEXT + IMAGE */

.commercial-article-page
.text-image {
    margin: 78px 0;
    padding: 0;
    gap: 64px;
}

.commercial-article-page
.text-image__content h2,
.commercial-article-page
.text-image__content h3 {
    font-size: clamp(
        1.8rem,
        3vw,
        2.45rem
    );
    line-height: 1.14;
    letter-spacing: -.035em;
}

.commercial-article-page
.text-image__content p {
    color: #444a51;
    font-size: 1.02rem;
    line-height: 1.76;
}

.commercial-article-page
.text-image__image {
    padding: 24px;
    border-radius: 18px;
    background: #f5f6f7;
}

.commercial-article-page
.text-image__image img {
    max-height: 440px;
    object-fit: contain;
    border-radius: 0;
}


/* EDITORIAL REVIEW */

.commercial-article-page
.editorial-review {
    max-width: 840px;
    margin: 68px auto;
    padding: 40px;
    border-radius: 18px;
    background: #111315;
    color: #fff;
}

.commercial-article-page
.editorial-review h2 {
    margin-top: 0;
    color: #fff;
    font-size: 2rem;
    letter-spacing: -.035em;
}

.commercial-article-page
.editorial-review p {
    color: #c5c9ce;
}


/* PROS / CONS */

.commercial-article-page
.pros-cons {
    max-width: 900px;
    margin: 68px auto;
}

.commercial-article-page
.pros-cons__grid {
    gap: 20px;
}

.commercial-article-page
.pros-cons__column {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.commercial-article-page
.pros-cons__column h3 {
    margin-top: 0;
}


/* COMPARISON */

.commercial-article-page
.product-comparison {
    margin: 82px 0;
}

.commercial-article-page
.product-comparison > h2 {
    font-size: clamp(
        2rem,
        4vw,
        3rem
    );
    letter-spacing: -.045em;
}

.commercial-article-page
.product-comparison__intro {
    color: var(--muted);
}

.commercial-article-page
.product-comparison-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow:
        0 8px 22px
        rgba(0,0,0,.035);
}

.commercial-article-page
.product-comparison-card__image {
    background:
        linear-gradient(
            145deg,
            #fafafa,
            #f2f3f4
        );
}

.commercial-article-page
.product-comparison-card__image img {
    object-fit: contain;
}


/* CTA */

.commercial-article-page
.mid-cta,
.commercial-article-page
.final-cta {
    max-width: 880px;
    margin: 70px auto;
    padding: 38px 42px;
    border: 0;
    border-radius: 20px;
    background: #f5f6f7;
    text-align: left;
}

.commercial-article-page
.final-cta {
    background: #111315;
    color: #fff;
}

.commercial-article-page
.mid-cta h2,
.commercial-article-page
.final-cta h2 {
    margin-top: 0;
    font-size: 2rem;
    letter-spacing: -.035em;
}

.commercial-article-page
.final-cta p {
    color: #c2c7cd;
}

.commercial-article-page
.mid-cta__button,
.commercial-article-page
.final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 8px;
    padding: 0 23px;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.commercial-article-page
.mid-cta__button:hover,
.commercial-article-page
.final-cta__button:hover {
    background: var(--accent-dark);
}


/* FAQ */

.commercial-article-page
.article-faq {
    max-width: 820px;
    margin: 78px auto;
}

.commercial-article-page
.article-faq > h2 {
    font-size: 2.25rem;
    letter-spacing: -.04em;
}

.commercial-article-page
.article-faq__item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.commercial-article-page
.article-faq__question {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.commercial-article-page
.article-faq__answer {
    margin: 0;
    color: #555c63;
}


/* AUTHOR BOX */

.commercial-article-page
.author-box {
    max-width: 820px;
    margin: 84px auto 0;
    padding-top: 38px;
    border-top: 1px solid var(--border);
}

.commercial-article-page
.author-box__inner {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);
    gap: 26px;
}

.commercial-article-page
.author-box__photo {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 50%;
}

.commercial-article-page
.author-box__label {
    margin-bottom: 5px;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.commercial-article-page
.author-box__name {
    margin: 0;
    font-size: 1.4rem;
}

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

.commercial-article-page
.author-box__role {
    margin-top: 3px;
    color: var(--muted);
    font-size: .88rem;
}

.commercial-article-page
.author-box__bio {
    max-width: 650px;
    color: #555c63;
}

.commercial-article-page
.author-box__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.commercial-article-page
.author-box__links a {
    color: var(--text);
    font-size: .86rem;
    font-weight: 750;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .commercial-article-page
    .article-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .commercial-article-page
    .article-hero__image {
        max-width: 640px;
    }

    .commercial-article-page
    .product-comparison__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 680px) {

    .commercial-article-page
    .commercial-main {
        width: min(
            100% - 28px,
            1180px
        );
        padding: 42px 0 72px;
    }

    .commercial-article-page
    .article-hero {
        gap: 30px;
        margin-bottom: 50px;
        padding-bottom: 48px;
    }

    .commercial-article-page
    .article-hero__content h1 {
        font-size: 2.65rem;
    }

    .commercial-article-page
    .article-hero__image {
        padding: 22px;
        border-radius: 16px;
    }

    .commercial-article-page
    .product-highlights {
        padding: 22px;
    }

    .commercial-article-page
    .product-highlights__grid {
        grid-template-columns: 1fr;
    }

    .commercial-article-page
    .text-image,
    .commercial-article-page
    .text-image--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        margin: 56px 0;
    }

    .commercial-article-page
    .text-image--reverse
    .text-image__content,
    .commercial-article-page
    .text-image--reverse
    .text-image__image {
        order: initial;
    }

    .commercial-article-page
    .product-comparison__grid {
        grid-template-columns: 1fr;
    }

    .commercial-article-page
    .mid-cta,
    .commercial-article-page
    .final-cta {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .commercial-article-page
    .editorial-review {
        padding: 28px 24px;
    }

    .commercial-article-page
    .author-box__inner {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   AUTHOR + LOCALE SWITCHER
   ========================================================== */

.site-header__right {
    display: flex;
    align-items: center;
    gap: 26px;
}


/* LOCALE SWITCHER */

.locale-switcher {
    position: relative;
}

.locale-switcher summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: #34383e;
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .05em;
    cursor: pointer;
    list-style: none;
}

.locale-switcher summary::-webkit-details-marker {
    display: none;
}

.locale-switcher[open]
summary {
    border-color: #c9cdd2;
}

.locale-switcher__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 100;
    width: 190px;
    overflow: hidden;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow:
        0 18px 45px
        rgba(0,0,0,.12);
}

.locale-switcher__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 10px;
    border-radius: 8px;
    color: #34383e;
    text-decoration: none;
}

.locale-switcher__menu a:hover {
    background: var(--surface);
}

.locale-switcher__menu a.is-active {
    background: #f4f5f6;
    color: var(--accent-dark);
}

.locale-switcher__menu span {
    font-size: .82rem;
    font-weight: 800;
}

.locale-switcher__menu small {
    color: #8c9299;
    font-size: .7rem;
}


/* AUTHOR PAGE */

.author-profile {
    padding: 84px 0 72px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(
            180deg,
            #fafbfc,
            #fff
        );
}

.author-profile__hero {
    display: grid;
    grid-template-columns:
        210px minmax(0, 1fr);
    gap: 54px;
    align-items: start;
    max-width: 980px;
}

.author-profile__photo-wrap {
    position: relative;
}

.author-profile__photo-wrap::after {
    content: "";
    position: absolute;
    inset: 10px -10px -10px 10px;
    z-index: 0;
    border-radius: 22px;
    background: #eceff2;
}

.author-profile__photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 22px;
}

.author-profile__content {
    padding-top: 4px;
}

.author-profile h1 {
    margin: 0;
    font-size: clamp(
        3rem,
        6vw,
        5rem
    );
    line-height: .98;
    letter-spacing: -.055em;
}

.author-profile__role {
    margin-top: 13px;
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 600;
}

.author-profile__bio {
    max-width: 720px;
    margin-top: 27px;
}

.author-profile__bio p {
    margin: 0 0 16px;
    color: #42474d;
    font-size: 1.03rem;
    line-height: 1.75;
}

.author-profile__expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.author-profile__expertise span {
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: #555c63;
    font-size: .78rem;
    font-weight: 650;
}


@media (max-width: 780px) {

    .site-header__right {
        gap: 14px;
    }

    .locale-switcher__menu {
        position: fixed;
        top: 66px;
        right: 14px;
    }

    .author-profile {
        padding: 58px 0 54px;
    }

    .author-profile__hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .author-profile__photo {
        width: 145px;
        height: 145px;
        border-radius: 18px;
    }

    .author-profile__photo-wrap {
        width: 145px;
    }

    .author-profile h1 {
        font-size: 3.1rem;
    }

}


@media (max-width: 620px) {

    .site-brand__name {
        display: none;
    }

    .site-nav {
        gap: 16px;
    }

    .site-nav a {
        font-size: .84rem;
    }

    .locale-switcher summary {
        min-width: 38px;
        padding: 0 8px;
    }

}


/* ==========================================================
   BUYING GUIDE MOBILE RESPONSIVE FIX
   ========================================================== */

@media (max-width: 720px) {

    /*
     * Prevent any commercial block from forcing
     * the viewport wider than the screen.
     */
    .commercial-article-page
    .commercial-main,
    .commercial-article-page
    .commercial-main article,
    .commercial-article-page
    .product-comparison,
    .commercial-article-page
    .product-comparison__grid,
    .commercial-article-page
    .product-comparison-card,
    .commercial-article-page
    .text-image,
    .commercial-article-page
    .product-highlights,
    .commercial-article-page
    .pros-cons,
    .commercial-article-page
    .pros-cons__grid {
        min-width: 0 !important;
        max-width: 100% !important;
    }


    /* PRODUCT COMPARISON */

    .commercial-article-page
    .product-comparison {
        margin: 54px 0;
    }

    .commercial-article-page
    .product-comparison__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .commercial-article-page
    .product-comparison-card {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden;
    }

    .commercial-article-page
    .product-comparison-card__image {
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: 0 !important;
    }

    .commercial-article-page
    .product-comparison-card__image img {
        width: 100%;
        height: 100%;
        max-height: 280px;
        padding: 20px;
        object-fit: contain;
    }

    .commercial-article-page
    .product-comparison-card__content {
        width: 100%;
        min-width: 0;
        padding: 22px !important;
    }

    .commercial-article-page
    .product-comparison-card h3,
    .commercial-article-page
    .product-comparison-card p {
        overflow-wrap: anywhere;
    }


    /* PROS / CONS */

    .commercial-article-page
    .pros-cons__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .commercial-article-page
    .pros-cons__column {
        width: 100%;
        padding: 22px;
    }


    /* PRODUCT HIGHLIGHTS */

    .commercial-article-page
    .product-highlights__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }


    /* TEXT + IMAGE */

    .commercial-article-page
    .text-image,
    .commercial-article-page
    .text-image--reverse {
        display: flex !important;
        flex-direction: column !important;
        gap: 26px !important;
        width: 100%;
        margin: 52px 0;
    }

    .commercial-article-page
    .text-image__content,
    .commercial-article-page
    .text-image__image,
    .commercial-article-page
    .text-image--reverse
    .text-image__content,
    .commercial-article-page
    .text-image--reverse
    .text-image__image {
        width: 100% !important;
        min-width: 0 !important;
        order: initial !important;
    }

    .commercial-article-page
    .text-image__image {
        order: -1 !important;
        padding: 20px;
    }

    .commercial-article-page
    .text-image__image img {
        display: block;
        width: 100%;
        max-height: 320px;
        margin: 0 auto;
        object-fit: contain;
    }


    /* HEADINGS / LONG PRODUCT NAMES */

    .commercial-article-page
    h1,
    .commercial-article-page
    h2,
    .commercial-article-page
    h3,
    .commercial-article-page
    p,
    .commercial-article-page
    li,
    .commercial-article-page
    a {
        overflow-wrap: break-word;
        word-break: normal;
    }


    /* CTA */

    .commercial-article-page
    .article-hero__cta,
    .commercial-article-page
    .mid-cta__button,
    .commercial-article-page
    .final-cta__button {
        width: 100%;
        text-align: center;
    }


    /* TABLE SAFETY */

    .commercial-article-page
    table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

}

/* ==========================================================
   Editorial blog images
   ========================================================== */

.editorial-image {
    margin: 2rem 0 2.25rem;
}

.editorial-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    border-radius: 18px;
}

.editorial-image figcaption {
    margin-top: .7rem;
    font-size: .82rem;
    line-height: 1.45;
    color: #6b7280;
}

.editorial-image__caption {
    display: block;
    margin-bottom: .2rem;
}

.editorial-image__credit {
    display: block;
    font-size: .76rem;
}

.editorial-image__credit a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 720px) {
    .editorial-image {
        margin: 1.6rem 0 1.85rem;
    }

    .editorial-image img {
        max-height: none;
        border-radius: 14px;
    }
}


/* ==========================================================
   Blog hero image
   ========================================================== */

.blog-hero-image {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 3.5rem;
}

.blog-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
    border-radius: 22px;
}

.blog-hero-image figcaption {
    max-width: 920px;
    margin: .75rem auto 0;
    font-size: .82rem;
    line-height: 1.45;
    color: #6b7280;
}

.blog-hero-image__caption {
    display: block;
    margin-bottom: .2rem;
}

.blog-hero-image__credit {
    display: block;
    font-size: .76rem;
}

.blog-hero-image__credit a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 720px) {
    .blog-hero-image {
        width: calc(100% - 28px);
        margin-bottom: 2.25rem;
    }

    .blog-hero-image img {
        aspect-ratio: 16 / 10;
        border-radius: 15px;
    }
}


/* ==========================================================
   Learn cards with editorial hero
   ========================================================== */

.learn-card {
    display: grid;
    grid-template-columns:
        minmax(240px, 38%)
        56px
        minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.learn-card__media {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #f3f4f6;
}

.learn-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .3s ease;
}

.learn-card__media:hover img {
    transform: scale(1.025);
}

.learn-card__index {
    align-self: start;
}

.content-card--blog-post
.content-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 720px) {

    .learn-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .learn-card__media {
        order: 1;
    }

    .learn-card__index {
        display: none;
    }

    .learn-card__content {
        order: 2;
    }

    .learn-card__media img {
        aspect-ratio: 16 / 10;
    }
}


/* ==========================================================
   Institutional pages
   ========================================================== */

.institutional-hero {
    padding: 96px 0 72px;
    border-bottom: 1px solid var(--border);
}

.institutional-hero h1 {
    max-width: 850px;
    margin: .35rem 0 1.25rem;
    font-size: clamp(
        3rem,
        7vw,
        5.8rem
    );
    line-height: .98;
    letter-spacing: -.055em;
}

.institutional-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.7;
}

.institutional-content {
    padding: 72px 0 104px;
}

.institutional-section {
    padding: 0 0 52px;
    margin-bottom: 52px;
    border-bottom: 1px solid var(--border);
}

.institutional-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.institutional-section h2 {
    margin: 0 0 20px;
    font-size: clamp(
        1.65rem,
        3vw,
        2.3rem
    );
    line-height: 1.15;
    letter-spacing: -.035em;
}

.institutional-section p {
    margin: 0 0 18px;
    color: #41464d;
    font-size: 1.03rem;
    line-height: 1.8;
}

.institutional-section p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   Footer
   ========================================================== */

.site-footer__top {
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(260px, .8fr);
    gap: 64px;
    align-items: start;
}

.site-footer__intro {
    max-width: 620px;
}

.site-footer__nav {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 12px 28px;
}

.site-footer__nav a {
    color: inherit;
    text-decoration: none;
}

.site-footer__nav a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 720px) {

    .institutional-hero {
        padding: 64px 0 48px;
    }

    .institutional-content {
        padding: 52px 0 72px;
    }

    .institutional-section {
        padding-bottom: 38px;
        margin-bottom: 38px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .site-footer__nav {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================
   BRANDING DYNAMIC
   ========================================================== */

.site-brand__logo {
    display: block;
    max-height: 42px;
    width: auto;
}

.site-footer__brand-wrap {
    display: inline-flex;
    align-items: center;
}

.site-footer__logo {
    display: block;
    max-height: 40px;
    width: auto;
}

@media (max-width: 620px) {
    .site-brand__logo {
        max-height: 34px;
    }

    .site-footer__logo {
        max-height: 34px;
    }
}

/* ==========================================================
   COMMERCIAL COMPARISON MOBILE
   ========================================================== */

@media (max-width: 900px) {

    .commercial-article-page
    .product-comparison__grid {
        grid-template-columns: 1fr !important;
    }

    .commercial-article-page
    .product-comparison-card {
        width: 100%;
        min-width: 0;
    }

    .commercial-article-page
    .product-comparison-card__body {
        min-width: 0;
    }

    .commercial-article-page
    .product-comparison-card__title,
    .commercial-article-page
    .product-comparison-card__summary,
    .commercial-article-page
    .product-comparison-card__caution,
    .commercial-article-page
    .product-comparison-card li {
        overflow-wrap: anywhere;
    }

}

@media (max-width: 680px) {

    .commercial-article-page
    .product-comparison-card__image {
        aspect-ratio: 4 / 3;
    }

}


/* ==========================================================
   HOME HERO WITH SITE IMAGE
   ========================================================== */

.editorial-hero__shell {
    width: min(
        1320px,
        calc(100% - 48px)
    );
}

.editorial-hero__lead {
    display: grid;
    grid-template-columns:
        minmax(420px, .88fr)
        minmax(0, 1.12fr);
    gap: clamp(
        52px,
        5vw,
        72px
    );
    align-items: center;
    margin-bottom: 68px;
}

.editorial-hero__lead--text-only {
    display: block;
}

.editorial-hero__lead
.editorial-hero__intro {
    display: block;
    margin: 0;
}

.editorial-hero__lead--text-only
.editorial-hero__intro {
    max-width: 1120px;
}

.editorial-hero__intro .eyebrow {
    margin-bottom: 24px;
}

.editorial-hero__lead
.editorial-hero__intro h1 {
    max-width: 800px;
}

.editorial-hero__lead
.editorial-hero__intro p {
    max-width: 590px;
    margin-top: 30px;
}

.editorial-hero__media {
    order: -1;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    background: #eef0f2;
    box-shadow:
        0 20px 55px
        rgba(17, 19, 21, .09);
}

.editorial-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Desktop with more horizontal room */

@media (min-width: 1400px) {

    .editorial-hero__shell {
        width: min(
            1360px,
            calc(100% - 64px)
        );
    }

    .editorial-hero__lead {
        grid-template-columns:
            minmax(460px, .9fr)
            minmax(0, 1.1fr);
        gap: 76px;
    }

}


/* Tablet */

@media (max-width: 980px) {

    .editorial-hero__lead {
        grid-template-columns:
            minmax(340px, .9fr)
            minmax(0, 1.1fr);
        gap: 42px;
    }

    .editorial-hero__lead
    .editorial-hero__intro h1 {
        font-size: clamp(
            3rem,
            7vw,
            5rem
        );
    }

}


/* Mobile:
   textual content must stay above the decorative image. */

@media (max-width: 760px) {

    .editorial-hero__shell {
        width: min(
            100% - 28px,
            1320px
        );
    }

    .editorial-hero__lead {
        display: flex;
        flex-direction: column;
        gap: 34px;
        margin-bottom: 52px;
    }

    .editorial-hero__intro {
        order: 1;
        width: 100%;
    }

    .editorial-hero__media {
        order: 2;
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .editorial-hero__lead
    .editorial-hero__intro h1 {
        max-width: none;
    }

    .editorial-hero__lead
    .editorial-hero__intro p {
        margin-top: 24px;
    }

}


/* ==========================================================
   HOME HERO WITH SITE IMAGE
   ========================================================== */

.editorial-hero__shell {
    width: min(
        1320px,
        calc(100% - 48px)
    );
}

.editorial-hero__lead {
    display: grid;
    grid-template-columns:
        minmax(420px, .88fr)
        minmax(0, 1.12fr);
    gap: clamp(
        52px,
        5vw,
        72px
    );
    align-items: center;
    margin-bottom: 68px;
}

.editorial-hero__lead--text-only {
    display: block;
}

.editorial-hero__lead
.editorial-hero__intro {
    display: block;
    margin: 0;
}

.editorial-hero__lead--text-only
.editorial-hero__intro {
    max-width: 1120px;
}

.editorial-hero__intro .eyebrow {
    margin-bottom: 24px;
}

.editorial-hero__lead
.editorial-hero__intro h1 {
    max-width: 800px;
}

.editorial-hero__lead
.editorial-hero__intro p {
    max-width: 590px;
    margin-top: 30px;
}

.editorial-hero__media {
    order: -1;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    background: #eef0f2;
    box-shadow:
        0 20px 55px
        rgba(17, 19, 21, .09);
}

.editorial-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Desktop with more horizontal room */

@media (min-width: 1400px) {

    .editorial-hero__shell {
        width: min(
            1360px,
            calc(100% - 64px)
        );
    }

    .editorial-hero__lead {
        grid-template-columns:
            minmax(460px, .9fr)
            minmax(0, 1.1fr);
        gap: 76px;
    }

}


/* Tablet */

@media (max-width: 980px) {

    .editorial-hero__lead {
        grid-template-columns:
            minmax(340px, .9fr)
            minmax(0, 1.1fr);
        gap: 42px;
    }

    .editorial-hero__lead
    .editorial-hero__intro h1 {
        font-size: clamp(
            3rem,
            7vw,
            5rem
        );
    }

}


/* Mobile:
   textual content must stay above the decorative image. */

@media (max-width: 760px) {

    .editorial-hero__shell {
        width: min(
            100% - 28px,
            1320px
        );
    }

    .editorial-hero__lead {
        display: flex;
        flex-direction: column;
        gap: 34px;
        margin-bottom: 52px;
    }

    .editorial-hero__intro {
        order: 1;
        width: 100%;
    }

    .editorial-hero__media {
        order: 2;
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .editorial-hero__lead
    .editorial-hero__intro h1 {
        max-width: none;
    }

    .editorial-hero__lead
    .editorial-hero__intro p {
        margin-top: 24px;
    }

}


/* ==========================================================
   EVENTS
   ========================================================== */

.events-page,
.event-page {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 0 80px;
}

.events-page__hero {
    max-width: 760px;
    margin-bottom: 42px;
}

.events-page__hero h1,
.event-detail__header h1 {
    margin: 8px 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    line-height: 1.05;
}

.events-page__hero p,
.event-detail__excerpt {
    margin: 0;
    color: #606060;
    font-size: 1.08rem;
    line-height: 1.7;
}

.events-grid {
    display: grid;
    gap: 18px;
}

.event-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 26px;
    padding: 26px;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background: #fff;
}

.event-card__date {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f4f4f4;
    text-align: center;
}

.event-card__date strong {
    font-size: 1.3rem;
}

.event-card__date span {
    color: #777;
}

.event-card h2 {
    margin: 6px 0 10px;
    font-size: 1.55rem;
    line-height: 1.2;
}

.event-card h2 a {
    color: inherit;
    text-decoration: none;
}

.event-card p {
    max-width: 760px;
    margin: 0 0 14px;
    color: #626262;
}

.event-card__link {
    font-weight: 700;
    text-decoration: none;
}

.event-detail {
    max-width: 860px;
}

.event-detail__header {
    margin-bottom: 42px;
}

.event-detail__meta {
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 14px;
    background: #f5f5f5;
}

.event-occurrences {
    margin: 40px 0;
    padding: 24px;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
}

.event-occurrences h2 {
    margin-top: 0;
}

.event-occurrences li + li {
    margin-top: 8px;
}

@media (max-width: 700px) {
    .events-page,
    .event-page {
        width: min(100% - 28px, 1180px);
        padding-top: 34px;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-card__date {
        width: 100px;
        min-height: 78px;
    }
}



/*
|--------------------------------------------------------------------------
| Events
|--------------------------------------------------------------------------
*/

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

.events-page__hero {
    padding: 56px 0 42px;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.events-page__hero .eyebrow {
    margin-bottom: 10px;
}

.events-page__hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.events-page__hero > p {
    max-width: 760px;
    margin: 20px 0 0;
    color: #5d6166;
    font-size: 1.08rem;
}

.events-page > section {
    padding: 48px 0 80px;
}

.events-page article {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.events-page article:first-child {
    padding-top: 0;
}

.events-page article time,
.events-page article > strong:first-child {
    align-self: start;
    color: #70757a;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.events-page article h2,
.events-page article h3 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.events-page article h2 a,
.events-page article h3 a {
    color: #171717;
    text-decoration: none;
}

.events-page article h2 a:hover,
.events-page article h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.events-page article p {
    max-width: 760px;
    margin: 0 0 14px;
    color: #5d6166;
}

.events-page article > a,
.events-page article p + a {
    display: inline-flex;
    align-items: center;
    font-size: .92rem;
    font-weight: 750;
    color: #171717;
    text-decoration: none;
}

.events-page article > a::after,
.events-page article p + a::after {
    content: " →";
    margin-left: 4px;
}

@media (max-width: 760px) {

    .events-page {
        width: min(100% - 28px, 1180px);
    }

    .events-page__hero {
        padding: 38px 0 32px;
    }

    .events-page > section {
        padding: 34px 0 56px;
    }

    .events-page article {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 24px 0;
    }
}


/*
|--------------------------------------------------------------------------
| Event detail
|--------------------------------------------------------------------------
*/

.event-page {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 88px;
}

.event-page .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
    color: #70757a;
    font-size: .88rem;
}

.event-page .breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.event-page .breadcrumbs a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.event-detail__header {
    padding-bottom: 34px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.event-detail__header .eyebrow {
    margin-bottom: 12px;
}

.event-detail__header h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.event-detail__excerpt {
    max-width: 760px;
    margin: 22px 0 0;
    color: #5d6166;
    font-size: 1.12rem;
    line-height: 1.7;
}

.event-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 26px;
    padding: 18px 20px;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
    background: #fafafa;
    font-size: .94rem;
}

.event-detail > h2,
.event-detail section h2 {
    margin: 42px 0 14px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.2;
    letter-spacing: -.025em;
}

.event-detail > p {
    max-width: 760px;
    margin: 0 0 22px;
    color: #34383c;
    font-size: 1.04rem;
    line-height: 1.8;
}

.event-occurrences {
    margin: 0 0 38px;
    padding: 24px;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 16px;
}

.event-occurrences h2 {
    margin-top: 0;
}

.event-occurrences ol {
    margin: 0;
    padding-left: 22px;
}

@media (max-width: 760px) {
    .event-page {
        width: min(100% - 28px, 900px);
        padding: 30px 0 60px;
    }

    .event-detail__header {
        padding-bottom: 28px;
        margin-bottom: 30px;
    }

    .event-detail__meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
}


/* ==========================================================
   DYNAMIC EDITORIAL NAVIGATION
   ========================================================== */

.site-nav__item {
    position: relative;
}

.site-nav__label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-nav__label > a,
.site-nav__single {
    color: #34383e;
    font-size: .92rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav__label > a:hover,
.site-nav__single:hover {
    color: var(--accent-dark);
}

.site-nav__toggle {
    display: inline-flex;
    width: 20px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-nav__toggle span {
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #60656c;
    border-bottom: 1.5px solid #60656c;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .15s ease;
}

.site-nav__item.is-open
.site-nav__toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
}

.site-nav__submenu {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 12px);
    left: -14px;
    min-width: 220px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition:
        opacity .14s ease,
        transform .14s ease,
        visibility .14s ease;
}

.site-nav__submenu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
}

.site-nav__submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #34383e;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
    background: #f5f6f7;
    color: var(--accent-dark);
}

.site-nav__item:hover
.site-nav__submenu,
.site-nav__item:focus-within
.site-nav__submenu,
.site-nav__item.is-open
.site-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/*
 * Touch / small screens.
 * The parent section remains directly clickable and the small
 * chevron opens the category list.
 */

@media (max-width: 760px) {

    .site-nav {
        gap: 13px;
    }

    .site-nav__label {
        gap: 2px;
    }

    .site-nav__label > a,
    .site-nav__single {
        font-size: .84rem;
    }

    .site-nav__submenu {
        position: absolute;
        top: calc(100% + 9px);
        left: auto;
        right: 0;
        min-width: 200px;
        max-width: calc(100vw - 28px);
    }

    .site-nav__item:first-child
    .site-nav__submenu {
        right: auto;
        left: 0;
    }

}


/* ==========================================================
   EDITORIAL DROPDOWN — HOVER POLISH
   ========================================================== */

.site-nav__submenu a,
.site-nav__submenu a:hover,
.site-nav__submenu a:focus,
.site-nav__submenu a:focus-visible {
    position: relative;
    border: 0;
    outline: 0;
    text-decoration: none;
    box-shadow: none;
    background-image: none;
}

.site-nav__submenu a::before,
.site-nav__submenu a::after {
    display: none !important;
    content: none !important;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
    background: #f3f4f6;
    color: var(--accent-dark);
    text-decoration: none;
}

.site-nav__submenu a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -2px;
}

/*
|--------------------------------------------------------------------------
| Home editorial section descriptions
|--------------------------------------------------------------------------
*/

.editorial-section__header > div {
    min-width: 0;
}

.editorial-section__description {
    max-width: 640px;
    margin: 12px 0 0;
    color: #64676b;
    font-size: 1rem;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .editorial-section__header {
        align-items: flex-start;
    }

    .editorial-section__description {
        max-width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Editorial archive hero images
|--------------------------------------------------------------------------
*/

.archive-hero--image {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.archive-hero--image .archive-shell {
    position: relative;
    z-index: 1;
}

.archive-hero--image h1,
.archive-hero--image .archive-eyebrow {
    color: #fff;
}

.archive-hero--image .archive-description {
    color: rgba(255,255,255,.9);
}

.archive-hero--image .archive-breadcrumbs,
.archive-hero--image .archive-breadcrumbs a {
    color: rgba(255,255,255,.84);
}


/*
|--------------------------------------------------------------------------
| Editorial archive pagination
|--------------------------------------------------------------------------
*/

.archive-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid #e5e7eb;
}

.archive-pagination a,
.archive-pagination .is-current {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid #e1e4e8;
    border-radius: 9px;
    background: #fff;
    color: #25282d;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.archive-pagination a:hover {
    border-color: #b7bcc4;
    background: #f7f8f9;
}

.archive-pagination .is-current {
    border-color: #25282d;
    background: #25282d;
    color: #fff;
}

.archive-pagination__pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.archive-pagination__pages > span:not(.is-current) {
    padding: 0 3px;
    color: #7b8087;
}

.archive-pagination__control {
    min-width: auto !important;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .archive-hero--image {
        min-height: 280px;
    }

    .archive-pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .archive-pagination__pages {
        order: -1;
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Contact form
|--------------------------------------------------------------------------
*/

.contact-form-section {
    margin-top: 58px;
    padding-top: 42px;
    border-top: 1px solid var(--border);
}

.contact-form-section__header {
    max-width: 720px;
    margin-bottom: 28px;
}

.contact-form-section__header h2 {
    margin: 0 0 10px;
}

.contact-form-section__header p {
    margin: 0;
}

.contact-form-section__header a {
    font-weight: 700;
}

.contact-form {
    position: relative;
    max-width: 760px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__field label {
    display: block;
    margin-bottom: 7px;
    color: #30343a;
    font-size: .9rem;
    font-weight: 750;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border: 1px solid #d8dce1;
    border-radius: 9px;
    background: #fff;
    color: #202328;
    font: inherit;
    outline: none;
}

.contact-form__field input {
    min-height: 48px;
    padding: 10px 13px;
}

.contact-form__field textarea {
    min-height: 180px;
    padding: 13px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: #858c95;
    box-shadow:
        0 0 0 3px rgba(0,0,0,.05);
}

.contact-form__submit {
    min-height: 48px;
    padding: 11px 22px;
    border: 0;
    border-radius: 9px;
    background: #202328;
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.contact-form__submit:hover {
    opacity: .9;
}

.contact-form-message {
    max-width: 760px;
    margin: 0 0 24px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: .94rem;
}

.contact-form-message--success {
    border: 1px solid #bdd9c5;
    background: #f1faf3;
}

.contact-form-message--error {
    border: 1px solid #e2c2c2;
    background: #fff5f5;
}

.contact-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 640px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/*
|--------------------------------------------------------------------------
| Contact form UX v2
|--------------------------------------------------------------------------
*/

.contact-form-section {
    max-width: 820px;
    margin: 64px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.contact-form-section__header {
    max-width: 680px;
    margin: 0 0 28px !important;
}

.contact-form-section__header h2 {
    margin: 0 0 12px !important;
    color: #17191c;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.contact-form-section__header p {
    margin: 0 !important;
    color: #626870;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-form-section__header a {
    color: #17191c;
    font-weight: 750;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


/*
 * Form card
 */

.contact-form {
    position: relative;
    max-width: 820px;
    padding: 32px;
    border: 1px solid #e4e7eb;
    border-radius: 18px;
    background: #fff;
    box-shadow:
        0 12px 34px rgba(18, 22, 28, .055);
}


/*
 * Honeypot must never be visible.
 */

.contact-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-form__honeypot input,
.contact-form__honeypot label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/*
 * Grid
 */

.contact-form__grid {
    display: grid !important;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form__field {
    margin: 0 0 22px !important;
}

.contact-form__field label {
    display: block;
    margin: 0 0 8px !important;
    color: #292d32;
    font-size: .88rem;
    font-weight: 750;
    line-height: 1.35;
}


/*
 * Inputs
 */

.contact-form__field input,
.contact-form__field textarea {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: 1px solid #d7dbe0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #202328 !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    outline: none !important;
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        background-color .15s ease;
}

.contact-form__field input {
    height: 50px !important;
    padding: 0 14px !important;
}

.contact-form__field textarea {
    min-height: 190px !important;
    padding: 14px !important;
    line-height: 1.6 !important;
    resize: vertical !important;
}

.contact-form__field input:hover,
.contact-form__field textarea:hover {
    border-color: #b9bec5 !important;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: #353a40 !important;
    box-shadow:
        0 0 0 3px rgba(31, 35, 40, .08) !important;
}


/*
 * Submit button
 */

.contact-form__submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    min-height: 50px;
    padding: 11px 24px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #17191c !important;
    color: #fff !important;
    font-family: inherit !important;
    font-size: .94rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition:
        transform .15s ease,
        opacity .15s ease;
}

.contact-form__submit:hover {
    opacity: .9 !important;
    transform: translateY(-1px);
}

.contact-form__submit:active {
    transform: translateY(0);
}


/*
 * Feedback
 */

.contact-form-message {
    max-width: 820px;
    margin: 0 0 22px !important;
    padding: 16px 18px !important;
    border-radius: 10px;
    font-size: .94rem;
    line-height: 1.55;
}

.contact-form-message--success {
    border: 1px solid #bcd8c4;
    background: #f2faf4;
    color: #285d36;
}

.contact-form-message--error {
    border: 1px solid #e4c5c5;
    background: #fff5f5;
    color: #8b3030;
}


/*
 * Mobile
 */

@media (max-width: 640px) {
    .contact-form-section {
        margin-top: 46px !important;
    }

    .contact-form {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .contact-form__field {
        margin-bottom: 18px !important;
    }

    .contact-form__submit {
        width: 100%;
    }
}
