/* *  block  * */
.ad-area {
    position: relative;
    display: flex;
    max-width: 100%;
    background: #ebebeb;
    margin: 6px 0;
    border-radius: 4px;
    padding: 8px 0;
}

/* Newspaper masthead and headline refinement. */
.header-head {
    background: #e9f3ec;
}

.header-head .header-head--desk {
    min-height: 58px;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
}

.header-head .header-head--desk .header-head-logo,
.header-head .header-head--desk .header-head-logo img.site-logo {
    width: 34px;
    max-width: 34px;
}

.header-head .header-head--desk .header-head-text {
    color: var(--article-accent);
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .005em;
    line-height: 1;
    text-transform: none;
}

.header-head .header-head--desk .header-head-text span {
    letter-spacing: .04em;
}

.content {
    background:
        radial-gradient(circle at 50% -8rem, rgba(217, 255, 237, .66), transparent 22rem),
        linear-gradient(180deg, #f7fcf9 0, #fffdfd 18rem);
}

h1 {
    max-width: 850px;
    margin-top: 20px;
    margin-bottom: 12px;
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.15vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.018em;
}

h2 {
    max-width: 720px;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    font-weight: 700;
}

.article-meta {
    margin-bottom: 22px;
}

@media screen and (max-width: 600px) {
    .header-head .header-head--desk {
        min-height: 52px;
        justify-content: flex-start;
        gap: 8px;
        padding-inline: 18px;
    }

    .header-head .header-head--desk .header-head-logo,
    .header-head .header-head--desk .header-head-logo img.site-logo {
        width: 30px;
        max-width: 30px;
    }

    .header-head .header-head--desk .header-head-text {
        font-size: 15.5px;
        white-space: nowrap;
    }

    .content {
        background:
            radial-gradient(circle at 0 -7rem, rgba(217, 255, 237, .72), transparent 16rem),
            linear-gradient(180deg, #f7fcf9 0, #fffdfd 16rem);
    }

    h1 {
        margin-top: 14px;
        margin-bottom: 10px;
        font-size: clamp(1.52rem, 6.7vw, 1.82rem);
        line-height: 1.14;
        letter-spacing: -.015em;
    }

    h2 {
        font-size: 15.5px;
        line-height: 1.42;
    }

    .article-meta {
        margin-bottom: 16px;
    }
}

.ad-image {
    display: inline-block;
    max-width: 180px;
    margin: 0 6px;
    box-sizing: border-box;
}

.ad-title {
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    max-width: 70%;
    height: 140px;
    padding: 0 6px 0 18px;
}

.ad-link {
    position: absolute;
    right: 6%;
    bottom: 20px;
    border: none;
    text-decoration: none;
    color: black;
    border-radius: 4px;
    background: white;
    padding: 8px 4px;
}

.prod-link {
    pointer-events: none;
}

/* Контейнер, що містить усі елементи */
.responsive-block {
    display: flex;

    /* Встановлюємо flex-контейнер */
    flex-wrap: wrap;

    /* Дозволяємо перенесення рядків */
    gap: 1rem;

    /* Відступи між елементами */
    justify-content: center;

    /* Вирівнювання по центру */
}

/* Кожен блок із зображенням */
.responsive-block .item {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 2rem);

    /* Три колонки на великих екранах */
    min-width: 250px;

    /* Мінімальна ширина блоку */
    max-width: 400px;

    /* Опційно, обмежити максимальну ширину */
    text-align: center;
    padding: 0px;
}

/* Зображення всередині блоку */
.responsive-block .item img {
    width: 100%;
    height: auto;
    border-radius: 7px 7px 0 0;
}

/* Підпис під зображенням */
.responsive-block .item p {
    margin-top: 0px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: medium;
    padding: 14px 5px 14px 5px;
    background-color: var(--slimlex);
    border-radius: 0 0 7px 7px;
}

/* Адаптивність для середніх екранів */
@media (max-width: 992px) {
    .responsive-block .item {
        flex: 1 1 calc(50% - 2rem);

        /* Дві колонки */
    }
}

/* Адаптивність для дуже вузьких екранів (смартфони) */
@media (max-width: 576px) {
    .responsive-block .item {
        flex: 1 1 100%;

        /* Одна колонка */
    }
}

:root {
    --ink: #17211c;
    --muted: #5d6f65;
    --paper: #fffdf9;
    --soft: #f6f1ea;
    --botanical: #2f7251;
    --botanical-dark: #1f4d39;
    --slimlex: #1f7a52;
    --slimlex-deep: #15543a;
    --gold: #d99a28;
    --line: #e7ded2;
    --shadow-soft: 0 18px 48px rgba(23, 33, 28, .12);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

.content {
    background:
        linear-gradient(180deg, rgba(246, 241, 234, .72) 0, rgba(255, 253, 249, 0) 360px),
        var(--paper);
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 249, .94);
    border-bottom: 1px solid rgba(231, 222, 210, .95);
    backdrop-filter: blur(18px);
}

.header-head {
    background: transparent;
}

.header-head .header-head--desk {
    min-height: 76px;
    justify-content: space-between;
}

.header-head .header-head--desk .header-head-logo {
    max-width: 178px;
}

.header-head .header-head--desk .header-head-logo img.site-logo {
    width: 178px;
    height: auto;
}

.header-head .header-head--desk .header-head-text {
    color: var(--botanical-dark);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.header-nav-wrap {
    background: #173226;
}

.header-nav-wrap .header-nav {
    justify-content: center;
    gap: 8px;
}

.header-nav-wrap .header-nav a {
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 12px 10px;
}

.container {
    max-width: 760px;
}

.container.container--large {
    max-width: 1040px;
}

h1 {
    max-width: 980px;
    margin: 34px auto 16px;
    color: var(--ink);
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: 0;
}

h2 {
    color: #35483e;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

h3 {
    color: var(--botanical-dark);
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-style: normal;
    font-size: 28px;
    line-height: 1.25;
}

p {
    color: var(--ink);
    font-size: 19px;
    line-height: 1.68;
}

p b,
.note-text b {
    color: var(--slimlex-deep);
}

.post-date {
    color: var(--muted);
    font-size: 15px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto 26px;
    color: var(--article-muted);
    font-size: 13px;
    font-weight: 700;
}

.article-meta__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
}

.article-kicker {
    color: var(--article-accent);
    text-transform: uppercase;
    letter-spacing: .09em;
}

.article-meta time {
    font-variant-numeric: tabular-nums;
}

.article-share {
    display: flex;
    gap: 7px;
    flex: 0 0 auto;
}

.article-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 9px;
    border: 1px solid rgba(28, 209, 125, .2);
    border-radius: 999px;
    background: #fff;
    color: var(--article-accent-deep);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.article-share a:hover {
    transform: translateY(-1px);
    border-color: rgba(28, 209, 125, .38);
    background: #eef6f0;
}

.content h1,
.content h2,
.article-meta,
.image--first {
    animation: article-rise .48s cubic-bezier(.16, 1, .3, 1) both;
}

.content h2 {
    animation-delay: .04s;
}

.article-meta {
    animation-delay: .08s;
}

.image--first {
    animation-delay: .12s;
}

@keyframes article-rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .content h1,
    .content h2,
    .article-meta,
    .image--first {
        animation: none;
    }
}

.image {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(23, 33, 28, .1);
}

.image img {
    border-radius: 0;
}

.image .image-description {
    color: var(--muted);
    background: #fff;
    font-size: 14px;
}

.information {
    background: #173226;
    margin: 34px 0;
    padding: 32px 0;
}

.information p {
    color: #fff;
    font-size: 22px;
    line-height: 1.45;
}

.information p b {
    color: #fff !important;
}

.article-cta {
    margin: 30px auto;
    padding: 22px;
    border: 1px solid rgba(38, 201, 125, .2);
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0, #f3faf6 52%, #f2faf5 100%);
    box-shadow: 0 14px 32px rgba(23, 33, 28, .08);
}

.article-cta--compact {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
}

.article-cta p {
    margin: 0;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.45;
}

.thesis {
    border-left: 5px solid var(--slimlex);
    border-radius: 14px;
    background: #f1f9f4;
    box-shadow: none;
}

.thesis p {
    color: var(--slimlex-deep);
    line-height: 1.45;
}

.note.quote {
    background: #edf7f0;
}

.note.attention {
    background: #fff7de;
}

.note-wrap {
    padding: 28px 0;
}

.note-icon {
    background-color: var(--botanical);
}

.list {
    margin-left: 0;
}

.list li .list-icon .check {
    background-color: var(--botanical);
}

.product-block {
    max-width: 440px;
    border: 1px solid rgba(38, 201, 125, .22);
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 10%, rgba(38, 201, 125, .18), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f1f9f4 100%);
    box-shadow: var(--shadow-soft);
}

.product-block .product-image {
    max-width: 300px;
    padding: 24px;
}

.product-block .product-image img {
    border-radius: 16px;
}

.button {
    max-width: 360px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--slimlex) 0%, #15543a 100%);
    box-shadow: 0 14px 30px rgba(38, 201, 125, .3);
    font-size: 18px;
    letter-spacing: .01em;
    line-height: 1.25;
    text-transform: none;
    animation: none;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(38, 201, 125, .34);
}

.button--inline {
    width: auto;
    min-width: 230px;
    margin: 0;
    padding: 13px 24px;
}

.button--offer {
    max-width: none;
    margin: 22px 0 10px;
}

.offer-card {
    display: grid;
    grid-template-columns: minmax(220px, .82fr) 1fr;
    gap: 28px;
    align-items: center;
    margin: 42px auto;
    padding: 26px;
    border: 1px solid rgba(31, 77, 57, .16);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 255, 251, .96)),
        var(--paper);
    box-shadow: var(--shadow-soft);
}

.offer-card__media {
    overflow: hidden;
    border-radius: 18px;
    background: #f4eadf;
}

.offer-card__media img {
    height: 100%;
    min-height: 310px;
    object-fit: cover;
}

.offer-card__content h3 {
    margin: 8px 0 12px;
    text-align: left;
}

.offer-card__eyebrow {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 6px 10px;
    border-radius: 999px;
    background: #173226;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.15;
    text-transform: uppercase;
}

.offer-card__content p {
    font-size: 17px;
    line-height: 1.55;
}

.offer-card__list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.offer-card__list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.35;
}

.offer-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .12em;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--botanical);
    box-shadow: inset 0 0 0 5px #dff0e4;
}

.offer-card__stock {
    display: inline-block;
    padding: 9px 12px;
    border: 1px solid rgba(217, 154, 40, .35);
    border-radius: 10px;
    background: #fff8e8;
    color: #60420d;
    font-size: 15px;
    font-weight: 700;
}

.offer-card__stock strong {
    color: #b73727;
    font-size: 18px;
}

.offer-card__note {
    margin: 0;
    color: var(--muted);
    font-size: 13px !important;
    text-align: center;
}

.comments-title {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-family: "Spectral", Georgia, "Times New Roman", serif;
}

.comments-wrap {
    display: grid;
    gap: 16px;
}

.comments-item {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(23, 33, 28, .06);
}

.comments-item .name {
    color: var(--botanical-dark);
    font-weight: 800;
}

.comments-item .text p {
    font-size: 16px;
    line-height: 1.55;
}

.comment-image {
    overflow: hidden;
    max-width: 360px;
    border-radius: 12px;
    margin-top: 10px;
}

.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 28px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #173226;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(23, 33, 28, .28);
}

.sticky-offer {
    display: none;
}

@media screen and (max-width: 850px) {
    .header-nav-wrap .header-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 12px;
        scrollbar-width: none;
    }

    .header-nav-wrap .header-nav::-webkit-scrollbar {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    body {
        padding-bottom: 84px;
    }

    .content {
        padding-top: 0;
    }

    .header-head .header-head--desk {
        min-height: 62px;
        padding: 0 14px;
    }

    .header-head .header-head--desk .header-head-logo,
    .header-head .header-head--desk .header-head-logo img.site-logo {
        max-width: 132px;
        width: 132px;
    }

    .header-head .header-head--desk .header-head-text {
        font-size: 10px;
        letter-spacing: .12em;
        max-width: 128px;
        text-align: right;
    }

    .container {
        padding: 0 18px;
    }

    h1 {
        margin-top: 24px;
        font-size: 31px;
        line-height: 1.08;
    }

    h2 {
        font-size: 18px;
        line-height: 1.35;
    }

    h3 {
        font-size: 25px;
        line-height: 1.22;
    }

    p,
    .information p,
    .note-text p {
        font-size: 17px;
        line-height: 1.58;
    }

    .information {
        padding: 24px 0;
    }

    .article-cta,
    .article-cta--compact {
        display: block;
        padding: 18px;
    }

    .article-cta p {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .button,
    .button--inline {
        width: 100%;
        min-width: 0;
        max-width: none;
        padding: 14px 18px;
        font-size: 17px;
    }

    .image {
        margin: 24px auto;
        border-radius: 12px;
    }

    .thesis {
        padding: 18px;
    }

    .list li {
        font-size: 17px;
    }

    .product-block {
        max-width: 100%;
    }

    .product-block .product-image {
        max-width: 260px;
        padding: 18px;
    }

    .offer-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
        border-radius: 18px;
    }

    .offer-card__media img {
        max-height: 280px;
        min-height: 0;
        object-fit: cover;
        object-position: center 42%;
    }

    .offer-card__content h3 {
        margin: 10px 0;
        font-size: 25px;
    }

    .offer-card__eyebrow {
        font-size: 11px;
        letter-spacing: .07em;
    }

    .offer-card__stock {
        display: block;
        text-align: center;
    }

    .comments-item {
        padding: 14px;
        border-radius: 12px;
    }

    .comment-image {
        max-width: 100%;
    }

    .floating-cta {
        display: none;
    }

    .sticky-offer {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        z-index: 120;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 10px 10px 14px;
        border: 1px solid rgba(255, 255, 255, .38);
        border-radius: 18px;
        background: rgba(23, 50, 38, .96);
        box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
        backdrop-filter: blur(16px);
    }

    .sticky-offer strong,
    .sticky-offer span {
        display: block;
        color: #fff;
        line-height: 1.15;
    }

    .sticky-offer strong {
        font-size: 14px;
    }

    .sticky-offer span {
        margin-top: 2px;
        color: rgba(255, 255, 255, .72);
        font-size: 12px;
    }

    .sticky-offer a {
        flex: 0 0 auto;
        padding: 11px 14px;
        border-radius: 999px;
        background: var(--slimlex);
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
    }
}

/* Slimlex green editorial theme. */
:root {
    --ink: #123826;
    --muted: #61786d;
    --paper: #fffdfd;
    --soft: #f7fcf9;
    --lavender: #eafff5;
    --lavender-strong: #d9ffed;
    --accent: #1cd17d;
    --accent-deep: #016a39;
    --accent-mid: #55df9f;
    --accent-soft: #a6ffd5;
    --slimlex: #1cd17d;
    --slimlex-deep: #016a39;
    --line: #d1f5e4;
    --shadow-soft: 0 18px 44px rgba(1, 106, 57, .12);
}

body {
    background: var(--paper);
    color: var(--ink);
}

.content {
    background:
        radial-gradient(circle at 18% 0%, rgba(217, 255, 237, .55), transparent 32rem),
        linear-gradient(180deg, rgba(248, 255, 252, .9) 0, #fff 32rem);
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 255, 254, .94);
    border-bottom: 1px solid rgba(217, 255, 237, .95);
    box-shadow: 0 8px 26px rgba(1, 106, 57, .06);
    backdrop-filter: blur(16px);
}

.header-head {
    background: linear-gradient(180deg, #e9f3ec 0%, var(--lavender-strong) 100%);
}

.header-head .header-head--desk {
    min-height: 74px;
    justify-content: center;
    gap: 14px;
}

.header-head .header-head--desk .header-head-logo {
    max-width: 46px;
}

.header-head .header-head--desk .header-head-logo img.site-logo {
    width: 46px;
    height: auto;
}

.header-head .header-head--desk .header-head-text {
    color: var(--accent);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.header-nav-wrap {
    background: rgba(241, 255, 248, .92);
    border-top: 1px solid rgba(255, 255, 255, .58);
}

.header-nav-wrap .header-nav {
    justify-content: center;
    gap: 2px;
}

.header-nav-wrap .header-nav a {
    color: var(--accent-deep);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 12px 14px;
    opacity: .82;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.header-nav-wrap .header-nav a:hover {
    background: #fff;
    color: var(--accent);
    opacity: 1;
}

h1 {
    color: var(--accent-deep);
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.13;
    letter-spacing: 0;
    text-wrap: balance;
}

h2 {
    color: #204735;
    font-size: 22px;
    line-height: 1.36;
    text-wrap: balance;
}

h3 {
    color: var(--accent-deep);
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-style: normal;
}

p {
    color: #152d22;
    font-size: 19px;
    line-height: 1.64;
}

p b,
.note-text b {
    color: var(--accent);
}

.post-date {
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.image {
    border: 1px solid rgba(28, 209, 125, .16);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(1, 106, 57, .12);
}

.image .image-description {
    color: #587065;
    background: #fff;
    letter-spacing: .015em;
}

.information {
    background: linear-gradient(135deg, #e9fff5 0%, #d2ffea 100%);
    border-top: 1px solid rgba(28, 209, 125, .12);
    border-bottom: 1px solid rgba(28, 209, 125, .12);
}

.information p {
    color: var(--accent-deep);
    font-size: 21px;
}

.information p b {
    color: var(--accent-deep) !important;
}

.article-cta {
    border: 1px solid rgba(28, 209, 125, .18);
    background:
        radial-gradient(circle at 100% 0%, rgba(166, 255, 213, .32), transparent 18rem),
        linear-gradient(135deg, #fff 0%, #f7fcf9 100%);
    box-shadow: 0 18px 42px rgba(1, 106, 57, .1);
}

.article-cta p {
    color: #1a422f;
}

.thesis {
    border-left: 5px solid var(--accent);
    border-radius: 12px;
    background: linear-gradient(135deg, #eef6f0 0%, #e1fff1 100%);
}

.thesis p {
    color: var(--accent-deep);
}

.note.quote {
    background: #ebfff6;
}

.note.attention {
    background: #fff8cb;
}

.note-icon {
    background-color: var(--accent);
}

.list li .list-icon .check {
    background-color: var(--accent);
}

.product-block {
    border: 1px solid rgba(28, 209, 125, .18);
    background:
        radial-gradient(circle at 50% 0%, rgba(166, 255, 213, .35), transparent 52%),
        linear-gradient(180deg, #ffffff 0%, #edfff7 100%);
    box-shadow: 0 20px 44px rgba(1, 106, 57, .14);
}

.product-block .product-image {
    max-width: 280px;
}

.product-block .product-image img {
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(1, 106, 57, .14);
}

.button {
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
    box-shadow: 0 13px 28px rgba(28, 209, 125, .3);
    color: #fff;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.button:hover {
    box-shadow: 0 18px 34px rgba(28, 209, 125, .34);
}

.offer-card {
    border: 1px solid rgba(28, 209, 125, .18);
    background:
        radial-gradient(circle at 100% 0%, rgba(166, 255, 213, .3), transparent 22rem),
        linear-gradient(135deg, #fff 0%, #f4fffa 100%);
    box-shadow: 0 22px 54px rgba(1, 106, 57, .14);
}

.offer-card__media {
    background: #e6fff3;
}

.offer-card__media img {
    object-position: center;
}

.offer-card__eyebrow {
    background: var(--accent-deep);
    color: #fff;
}

.offer-card__content h3 {
    color: var(--accent-deep);
}

.offer-card__list li {
    color: #183326;
}

.offer-card__list li::before {
    background: var(--accent);
    box-shadow: inset 0 0 0 5px #dcffef;
}

.offer-card__stock {
    border-color: rgba(28, 209, 125, .24);
    background: #ebfff6;
    color: var(--accent-deep);
}

.offer-card__stock strong {
    color: var(--accent);
}

.comments-title {
    color: var(--accent-deep);
}

.comments-item {
    border: 1px solid rgba(28, 209, 125, .12);
    background: #fff;
    box-shadow: 0 12px 28px rgba(1, 106, 57, .08);
}

.comments-item .name {
    color: var(--accent-deep);
}

.floating-cta {
    background: var(--accent-deep);
    box-shadow: 0 18px 38px rgba(1, 106, 57, .28);
}

.sticky-offer {
    background: rgba(1, 106, 57, .96);
}

@media screen and (max-width: 600px) {
    .header-head .header-head--desk {
        justify-content: flex-start;
        gap: 10px;
        min-height: 62px;
    }

    .header-head .header-head--desk .header-head-logo,
    .header-head .header-head--desk .header-head-logo img.site-logo {
        max-width: 38px;
        width: 38px;
    }

    .header-head .header-head--desk .header-head-text {
        max-width: none;
        color: var(--accent);
        font-size: 20px;
        letter-spacing: .04em;
        line-height: 1;
        text-align: left;
    }

    .header-nav-wrap {
        display: none;
    }

    h1 {
        font-size: 29px;
        line-height: 1.12;
    }

    h2 {
        font-size: 18px;
    }

    .information p {
        font-size: 18px;
    }

    .sticky-offer {
        background: rgba(1, 106, 57, .96);
    }

    .sticky-offer a {
        background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
    }
}

/* Final mobile-first editorial pass. */
:root {
    --article-ink: #163828;
    --article-muted: #668074;
    --article-paper: #fffdfd;
    --article-wash: #f4fffa;
    --article-lavender: #ddffef;
    --article-border: #d1f8e6;
    --article-accent: #1cd17d;
    --article-accent-deep: #016a39;
    --article-accent-soft: #a6ffd5;
    --article-shadow: 0 16px 42px rgba(1, 106, 57, .11);
}

body {
    background: var(--article-paper);
    color: var(--article-ink);
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wrapper {
    overflow-x: clip;
}

.content {
    background:
        radial-gradient(circle at 50% -6rem, rgba(217, 255, 237, .85), transparent 24rem),
        linear-gradient(180deg, #f7fcf9 0, #fffdfd 24rem);
}

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(253, 255, 254, .96);
    border-bottom: 1px solid rgba(28, 209, 125, .12);
    box-shadow: 0 8px 24px rgba(1, 106, 57, .06);
    backdrop-filter: blur(14px);
}

.header-head {
    background: linear-gradient(180deg, #e9fff5 0%, #d9ffed 100%);
}

.header-head .header-head--desk {
    min-height: 68px;
    justify-content: center;
    gap: 12px;
    padding: 0 18px;
}

.header-head .header-head--desk .header-head-logo,
.header-head .header-head--desk .header-head-logo img.site-logo {
    width: 42px;
    max-width: 42px;
}

.header-head .header-head--desk .header-head-text {
    color: var(--article-accent);
    font-family: "Libre Franklin", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.header-nav-wrap {
    background: rgba(246, 255, 251, .94);
}

.header-nav-wrap .header-nav {
    gap: 22px;
}

.header-nav-wrap .header-nav a {
    color: #27885b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    padding: 11px 0;
}

.container {
    max-width: 700px;
    padding-inline: 18px;
}

.container.container--large {
    max-width: 1040px;
}

h1,
h2,
h3,
p {
    letter-spacing: 0;
}

h1 {
    max-width: 900px;
    margin: 42px auto 14px;
    color: var(--article-accent-deep);
    font-family: "Spectral", Georgia, serif;
    font-size: clamp(2rem, 3.7vw, 3.1rem);
    font-weight: 800;
    line-height: .98;
    text-align: center;
    text-wrap: balance;
}

h2 {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #2a4b3c;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 800;
    line-height: 1.36;
    text-align: center;
    text-wrap: balance;
}

h3 {
    margin: 34px 0 18px;
    color: var(--article-accent-deep);
    font-family: "Spectral", Georgia, serif;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.12;
    text-align: left;
}

p {
    max-width: 68ch;
    color: var(--article-ink);
    font-size: 17.5px;
    line-height: 1.72;
}

p b,
.note-text b {
    color: var(--article-accent);
    font-weight: 800;
}

.post-date {
    margin-bottom: 28px;
    color: var(--article-muted);
    font-family: "Libre Franklin", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    text-align: center;
}

.image {
    margin: 28px auto;
    overflow: hidden;
    border: 1px solid var(--article-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--article-shadow);
}

.image img {
    border-radius: 0;
}

.image--horizontal {
    max-width: 620px;
}

.image .image-description {
    padding: 12px 14px;
    color: #60776c;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.information {
    margin: 34px 0 30px;
    padding: 28px 0;
    background: linear-gradient(135deg, #e0fff1 0%, #cbffe7 100%);
    border-block: 1px solid rgba(28, 209, 125, .14);
}

.information p {
    font-size: 19px;
    line-height: 1.5;
}

.article-cta {
    margin: 26px auto 30px;
    padding: 18px 20px;
    border: 1px solid rgba(28, 209, 125, .16);
    border-radius: 10px;
    background: linear-gradient(135deg, #fff 0%, #f7fffb 100%);
    box-shadow: 0 12px 30px rgba(1, 106, 57, .08);
}

.article-cta p {
    font-size: 15.5px;
    line-height: 1.5;
}

.thesis {
    margin: 28px 0;
    padding: 22px 24px;
    border: 1px solid rgba(28, 209, 125, .16);
    border-left-width: 1px;
    border-radius: 10px;
    background: #ecfff6;
    box-shadow: none;
}

.thesis p {
    color: var(--article-accent-deep);
    font-size: 19px;
    line-height: 1.45;
    text-align: left;
}

.note {
    margin: 30px 0;
}

.note.quote {
    background: #ecfff6;
}

.note.attention {
    background: #fff8cc;
}

.note-wrap {
    column-gap: 16px;
    padding: 24px 0;
}

.note-text p {
    font-size: 17px;
    line-height: 1.62;
}

.note-icon {
    max-width: 24px;
    height: 24px;
    margin-top: 4px;
    background-color: var(--article-accent);
}

.list {
    margin: 24px 0 26px;
}

.list li {
    column-gap: 12px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.55;
}

.list li .list-icon .check {
    width: 19px;
    height: 19px;
    margin-top: .18em;
    background-color: var(--article-accent);
}

.product-block {
    max-width: 360px;
    margin: 30px auto;
    border: 1px solid rgba(28, 209, 125, .16);
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #edfff7 100%);
    box-shadow: 0 16px 38px rgba(1, 106, 57, .12);
}

.product-block .product-image {
    max-width: 240px;
    padding: 18px;
}

.button {
    max-width: 320px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #a6ffd5 0%, #1cd17d 100%);
    box-shadow: 0 12px 26px rgba(28, 209, 125, .25);
    color: #fff;
    font-family: "Libre Franklin", sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease;
}

.button:active {
    transform: scale(.98);
}

.button--inline {
    min-width: 210px;
}

.offer-card {
    grid-template-columns: 220px 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 36px auto 42px;
    padding: 22px;
    border: 1px solid rgba(28, 209, 125, .17);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff 0%, #f4fffa 100%);
    box-shadow: 0 18px 46px rgba(1, 106, 57, .13);
}

.offer-card__media {
    border-radius: 10px;
    background: #e6fff3;
}

.offer-card__media img {
    min-height: 300px;
    object-fit: cover;
}

.offer-card__eyebrow {
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--article-accent-deep);
    font-size: 11px;
    letter-spacing: .08em;
}

.offer-card__content h3 {
    margin: 10px 0 12px;
    font-size: 28px;
}

.offer-card__content p {
    font-size: 15.8px;
    line-height: 1.58;
}

.offer-card__list {
    margin: 16px 0;
}

.offer-card__list li {
    font-size: 15px;
}

.offer-card__list li::before {
    background: var(--article-accent);
    box-shadow: inset 0 0 0 5px #dcffef;
}

.offer-card__stock {
    border-color: rgba(28, 209, 125, .22);
    background: #e8fff4;
    color: var(--article-accent-deep);
    font-size: 14px;
}

.offer-card__stock strong {
    color: var(--article-accent);
}

.comments-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 42px 0 14px;
    padding-top: 24px;
    border-top: 1px solid var(--article-border);
    color: var(--article-accent-deep);
    font-family: "Spectral", Georgia, serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.comments-title .comments-title-icon {
    width: 24px;
    height: 24px;
    background-color: var(--article-accent);
}

.comments-wrap {
    display: block;
}

.comments-summary {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #e7fbf2;
    color: var(--article-muted);
    font-size: 13px;
    font-weight: 700;
}

.comments-wrap > div:nth-child(3n-2),
.comments-wrap > div:nth-child(3n+2),
.comments-wrap > div:nth-child(3n) {
    background: transparent;
}

.comments-item {
    margin-bottom: 0;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid #e7fbf2;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.comments-item-content,
.comments-item-info,
.comments-item .answer {
    column-gap: 12px;
}

.comments-item-info {
    align-items: center;
}

.comments-item-info .ava,
.comments-item-content .spacer,
.comments-item .answer .spacer {
    width: 42px;
    min-width: 42px;
}

.comments-item-info .ava img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.comments-item-info .name {
    color: var(--article-accent-deep);
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.2;
}

.comments-item-info .date {
    color: var(--article-muted);
    font-size: 12px;
    font-weight: 600;
}

.comments-item-content .text p {
    margin-bottom: 0;
    color: #213c2f;
    font-size: 15.5px;
    line-height: 1.58;
}

.comments-item .answer {
    margin-top: 14px;
    margin-left: 0;
    padding-top: 0;
}

.comments-item .answer .comments-item {
    margin-top: 0;
    padding: 12px 0 0;
    border-bottom: 0;
}

.comment-image {
    max-width: 320px;
    margin-top: 12px;
    border-radius: 10px;
    border: 1px solid #e7fbf2;
}

.comments-load-more {
    display: block;
    width: 100%;
    margin: 18px 0 28px;
    padding: 13px 16px;
    border: 1px solid rgba(28, 209, 125, .24);
    border-radius: 999px;
    background: #eef6f0;
    color: var(--article-accent-deep);
    font-family: "Libre Franklin", sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.floating-cta {
    right: 18px;
    bottom: 22px;
    min-height: 44px;
    border-radius: 999px;
    background: var(--article-accent-deep);
    font-size: 13px;
    box-shadow: 0 16px 32px rgba(1, 106, 57, .28);
}

@media screen and (max-width: 600px) {
    body {
        padding-bottom: 76px;
    }

    .content {
        background:
            radial-gradient(circle at 0 -6rem, rgba(217, 255, 237, .88), transparent 18rem),
            linear-gradient(180deg, #f7fcf9 0, #fffdfd 22rem);
    }

    .header-head .header-head--desk {
        min-height: 58px;
        justify-content: flex-start;
        padding-inline: 18px;
    }

    .header-head .header-head--desk .header-head-logo,
    .header-head .header-head--desk .header-head-logo img.site-logo {
        width: 34px;
        max-width: 34px;
    }

    .header-head .header-head--desk .header-head-text {
        font-size: 19px;
        line-height: 1;
    }

    .header-nav-wrap {
        display: none;
    }

    .container {
        padding-inline: 18px;
    }

    h1 {
        margin-top: 24px;
        margin-bottom: 12px;
        font-size: clamp(1.72rem, 7.2vw, 2rem);
        line-height: 1.04;
        text-align: left;
    }

    h2 {
        margin-bottom: 12px;
        font-size: 16.5px;
        line-height: 1.42;
        text-align: left;
    }

    h3 {
        margin: 28px 0 14px;
        font-size: 24px;
        line-height: 1.12;
    }

    .post-date {
        margin-bottom: 20px;
        font-size: 13px;
        text-align: left;
    }

    .article-meta {
        display: block;
        margin-bottom: 20px;
        font-size: 12px;
    }

    .article-meta__info {
        justify-content: flex-start;
        gap: 6px 10px;
    }

    .article-share {
        margin-top: 12px;
    }

    p {
        font-size: 16.2px;
        line-height: 1.66;
    }

    .image {
        margin: 22px auto;
        border-radius: 10px;
    }

    .image .image-description {
        font-size: 12.5px;
    }

    .information {
        margin: 28px 0 24px;
        padding: 22px 0;
    }

    .information p {
        font-size: 16.8px;
        line-height: 1.5;
    }

    .article-cta,
    .article-cta--compact {
        display: block;
        padding: 16px;
        border-radius: 10px;
    }

    .article-cta p {
        margin-bottom: 12px;
        font-size: 15px;
    }

    .button,
    .button--inline {
        width: 100%;
        max-width: none;
        min-width: 0;
        font-size: 14px;
    }

    .thesis {
        padding: 18px;
    }

    .thesis p {
        font-size: 17px;
    }

    .note-wrap {
        padding: 22px 0;
    }

    .note-text p {
        font-size: 16px;
    }

    .list li {
        font-size: 16px;
    }

    .responsive-block {
        gap: 14px;
    }

    .responsive-block .item {
        min-width: 0;
        border-radius: 10px;
        box-shadow: 0 10px 26px rgba(1, 106, 57, .08);
    }

    .responsive-block .item p {
        font-size: 12px;
        line-height: 1.25;
        background-color: var(--article-accent);
    }

    .offer-card {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 32px auto 36px;
        padding: 18px;
    }

    .offer-card__media img {
        max-height: 250px;
        min-height: 0;
        object-fit: cover;
    }

    .offer-card__content h3 {
        font-size: 24px;
    }

    .offer-card__content p,
    .offer-card__list li {
        font-size: 15px;
    }

    .comments-title {
        font-size: 22px;
    }

    .comments-summary {
        font-size: 12px;
    }

    .comments-item {
        padding: 16px 0;
    }

    .comments-item-info .ava,
    .comments-item-content .spacer,
    .comments-item .answer .spacer {
        width: 38px;
        min-width: 38px;
    }

    .comments-item-info .ava img {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .comments-item-content .text p {
        font-size: 14.8px;
        line-height: 1.55;
    }

    .comment-image {
        max-width: 100%;
    }

    .sticky-offer {
        left: 10px;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        padding: 9px 10px 9px 13px;
        border-radius: 16px;
        background: rgba(1, 106, 57, .96);
    }

    .sticky-offer strong {
        font-size: 13.5px;
    }

    .sticky-offer span {
        font-size: 11.5px;
    }

    .sticky-offer a {
        padding: 10px 14px;
        background: linear-gradient(180deg, #a6ffd5 0%, #1cd17d 100%);
        font-size: 13px;
    }
}

/* Final editorial polish: compact masthead, calmer headline, mobile-first rhythm. */
:root {
    --article-ink: #172f24;
    --article-muted: #657970;
    --article-paper: #fffdfc;
    --article-wash: #f4fffa;
    --article-lavender: #e1fff1;
    --article-border: #d5f5e6;
    --article-accent: #24c87b;
    --article-accent-deep: #105d39;
    --article-accent-soft: #a7f2cf;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--article-paper);
    color: var(--article-ink);
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}

.header {
    border-bottom: 1px solid rgba(16, 93, 57, .12);
    box-shadow: 0 5px 18px rgba(16, 93, 57, .07);
}

.header-head {
    background: linear-gradient(180deg, #edfff7 0%, #defdef 100%);
}

.header-head .header-head--desk {
    min-height: 62px;
    justify-content: center;
    gap: 12px;
    padding: 0 16px;
}

.header-head .header-head--desk .header-head-logo,
.header-head .header-head--desk .header-head-logo img.site-logo {
    width: 38px;
    max-width: 38px;
}

.header-head .header-head--desk .header-head-text {
    color: var(--article-accent);
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
}

.header-head .header-head--desk .header-head-text span {
    color: var(--article-accent-deep);
    font-weight: 800;
    letter-spacing: .045em;
}

.header-nav-wrap {
    background: rgba(255, 253, 252, .96);
}

.header-nav-wrap .header-nav a {
    color: #366f54;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: color .2s ease, transform .2s ease;
}

.header-nav-wrap .header-nav a:hover,
.header-nav-wrap .header-nav a:focus-visible {
    color: var(--article-accent);
}

.content {
    padding-top: 1px;
    background:
        radial-gradient(circle at 50% -8rem, rgba(225, 255, 241, .62), transparent 19rem),
        linear-gradient(180deg, #f7fcf9 0, #fffdfc 15rem);
}

.container {
    max-width: 690px;
}

.container.container--large {
    max-width: 760px;
}

h1 {
    max-width: 100%;
    margin: 20px 0 12px;
    color: var(--article-accent-deep);
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 2.55vw, 2.42rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.012em;
    text-align: left;
    text-wrap: balance;
}

h2 {
    max-width: 100%;
    margin: 0 0 12px;
    color: #314a3e;
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    font-weight: 700;
    line-height: 1.42;
    text-align: left;
    text-wrap: pretty;
}

h3,
.comments-title {
    font-family: "Spectral", Georgia, "Times New Roman", serif;
}

p {
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    max-width: 100%;
    margin: 0 0 18px;
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.article-meta__info {
    justify-content: flex-start;
}

.article-share {
    margin-left: 0;
}

.article-share a,
.button,
.button--inline,
.button--offer,
.floating-cta,
.sticky-offer a,
.comments-load-more {
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.article-share a:active,
.button:active,
.button--inline:active,
.button--offer:active,
.floating-cta:active,
.sticky-offer a:active,
.comments-load-more:active {
    transform: scale(.98);
}

@keyframes editorialFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.content > .container--large > h1,
.content > .container--large > h2,
.article-meta,
.image--first {
    animation: editorialFadeUp .58s cubic-bezier(.16, 1, .3, 1) both;
}

.content > .container--large > h2 {
    animation-delay: .06s;
}

.article-meta {
    animation-delay: .11s;
}

.image--first {
    animation-delay: .16s;
}

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

    .content > .container--large > h1,
    .content > .container--large > h2,
    .article-meta,
    .image--first {
        animation: none;
    }

    .article-share a,
    .button,
    .button--inline,
    .button--offer,
    .floating-cta,
    .sticky-offer a,
    .comments-load-more {
        transition: none;
    }
}

@media screen and (max-width: 600px) {
    .header-head .header-head--desk {
        min-height: 60px;
        justify-content: center;
        gap: 9px;
        padding-inline: 14px;
    }

    .header-head .header-head--desk .header-head-logo,
    .header-head .header-head--desk .header-head-logo img.site-logo {
        width: 36px;
        max-width: 36px;
    }

    .header-head .header-head--desk .header-head-text {
        font-size: clamp(17px, 5.15vw, 20px);
    }

    .content {
        padding-top: 1px;
        background:
            radial-gradient(circle at 0 -7rem, rgba(225, 255, 241, .72), transparent 15rem),
            linear-gradient(180deg, #f7fcf9 0, #fffdfc 14rem);
    }

    .container {
        padding-inline: 17px;
    }

    h1 {
        margin-top: 16px;
        margin-bottom: 9px;
        font-size: clamp(1.48rem, 5.9vw, 1.82rem);
        line-height: 1.14;
        letter-spacing: -.01em;
    }

    h2 {
        margin-bottom: 11px;
        font-size: 15px;
        line-height: 1.43;
    }

    .article-meta {
        margin-bottom: 17px;
    }

    .article-meta {
        display: block;
    }

    .article-share {
        margin-top: 12px;
    }
}

@media screen and (max-width: 370px) {
    .header-head .header-head--desk .header-head-text {
        font-size: 16px;
    }

    .header-head .header-head--desk .header-head-logo,
    .header-head .header-head--desk .header-head-logo img.site-logo {
        width: 32px;
        max-width: 32px;
    }

    h1 {
        font-size: 1.42rem;
    }
}

/* Desktop article grid: one consistent editorial axis. */
@media screen and (min-width: 901px) {
    .content {
        --article-desktop-width: min(1040px, calc(100vw - 56px));
    }

    .container,
    .container.container--large,
    .information .container,
    .note .container {
        box-sizing: border-box;
        width: var(--article-desktop-width);
        max-width: var(--article-desktop-width);
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }

    h1 {
        max-width: 940px;
        margin-top: 28px;
        font-size: clamp(2.55rem, 3.05vw, 3.35rem);
        line-height: 1.04;
    }

    h2 {
        max-width: 780px;
        font-size: clamp(1.08rem, 1.25vw, 1.28rem);
    }

    .article-meta {
        max-width: 940px;
        margin-bottom: 22px;
    }

    .content > .container > p,
    .note-text p,
    .article-cta,
    .note-wrap,
    .list,
    .thesis,
    .diagram-wrap,
    .responsive-block {
        max-width: 760px;
        margin-left: 0;
        margin-right: auto;
    }

    .information p {
        max-width: 940px;
        margin-left: 0;
        margin-right: auto;
    }

    .image,
    .image--horizontal,
    .image--first {
        max-width: 940px;
        margin-left: 0;
        margin-right: auto;
    }

    .article-cta {
        margin-left: 0;
        margin-right: auto;
    }

    .product-block,
    .offer-card,
    .comments {
        margin-left: 0;
        margin-right: auto;
    }
}

/* ============================================================
   AU CRO ADDITIONS — mobile-first
   Trust strip · Stats grid · Ratings · FAQ · Guarantee badge
   Countdown · Exit intent · Reading progress · Footer
   ============================================================ */

/* Reading progress bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 200;
    background: transparent;
    pointer-events: none;
}

.reading-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--article-accent-soft) 0%, var(--article-accent) 60%, var(--article-accent-deep) 100%);
    transition: width .12s linear;
}

@media (prefers-reduced-motion: reduce) {
    .reading-progress span { transition: none; }
}

/* Trust strip — under hero */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 22px 0 6px;
    padding: 14px;
    list-style: none;
    border: 1px solid rgba(28, 209, 125, .14);
    border-radius: 12px;
    background:
        linear-gradient(180deg, #fff 0%, #f7fffb 100%);
    box-shadow: 0 10px 26px rgba(1, 106, 57, .07);
}

.trust-strip li {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 4px 6px;
    border-radius: 8px;
    color: var(--article-ink);
    font-size: 12.5px;
    line-height: 1.25;
}

.trust-strip__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--article-lavender);
    color: var(--article-accent-deep);
}

.trust-strip__label {
    flex: 1;
    font-weight: 600;
    color: #2c5240;
}

.trust-strip__label strong {
    display: block;
    color: var(--article-accent-deep);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.15;
}

@media (min-width: 600px) {
    .trust-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 16px 18px;
    }
    .trust-strip li {
        font-size: 13px;
    }
}

/* Stats super-blocks */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 30px 0;
    padding: 22px 14px;
    border: 1px solid rgba(28, 209, 125, .15);
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 0%, rgba(167, 242, 207, .35), transparent 60%),
        linear-gradient(180deg, #fff 0%, #f1fff8 100%);
    box-shadow: 0 14px 34px rgba(1, 106, 57, .1);
    text-align: center;
}

.stats-grid__item {
    padding: 6px 4px;
}

.stats-grid__item + .stats-grid__item {
    border-left: 1px solid rgba(28, 209, 125, .12);
}

.stats-grid__number {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    font-family: "Spectral", Georgia, serif;
    font-size: clamp(2rem, 8.4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    color: var(--article-accent);
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
}

.stats-grid__unit {
    font-size: .55em;
    margin-left: 2px;
    color: var(--article-accent-deep);
    font-weight: 700;
}

.stats-grid__label {
    margin-top: 6px;
    color: var(--article-muted);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.25;
}

@media (min-width: 600px) {
    .stats-grid {
        gap: 12px;
        padding: 28px 24px;
    }
    .stats-grid__label {
        font-size: 12.5px;
    }
}

/* Star ratings block */
.ratings-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 24px 0 28px;
    padding: 16px 18px;
    border: 1px solid rgba(217, 154, 40, .35);
    border-radius: 12px;
    background: linear-gradient(135deg, #fffbf0 0%, #fff5e0 100%);
    box-shadow: 0 8px 22px rgba(217, 154, 40, .12);
}

.ratings-block__stars {
    display: inline-flex;
    gap: 2px;
    color: #f5a623;
    line-height: 0;
}

.ratings-block__text {
    color: #5b4015;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
}

.ratings-block__text strong {
    color: var(--article-accent-deep);
    font-weight: 800;
}

@media (min-width: 600px) {
    .ratings-block {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 22px;
    }
    .ratings-block__text { font-size: 15.5px; }
}

/* FAQ accordion */
.faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 18px 0 32px;
}

.faq__item {
    overflow: hidden;
    border: 1px solid rgba(28, 209, 125, .16);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(1, 106, 57, .06);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.faq__item[open] {
    border-color: rgba(28, 209, 125, .35);
    box-shadow: 0 12px 30px rgba(1, 106, 57, .12);
}

.faq__q {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 56px;
    padding: 14px 50px 14px 18px;
    font-family: "Spectral", Georgia, serif;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--article-accent-deep);
    line-height: 1.32;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-right: 2.5px solid var(--article-accent);
    border-bottom: 2.5px solid var(--article-accent);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s ease;
}

.faq__item[open] .faq__q::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq__q:hover {
    background: #f7fffb;
}

.faq__q:focus-visible {
    outline: 2px solid var(--article-accent);
    outline-offset: -2px;
}

.faq__a {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(28, 209, 125, .1);
    margin-top: -1px;
}

.faq__a p {
    margin: 14px 0 0;
    font-size: 15.5px;
    line-height: 1.62;
    color: #213c2f;
}

@media (min-width: 600px) {
    .faq__q { font-size: 18px; padding: 18px 56px 18px 22px; min-height: 64px; }
    .faq__a { padding: 0 22px 22px; }
    .faq__a p { font-size: 16.5px; }
}

/* Guarantee badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0 14px;
    padding: 12px 16px;
    border: 1px solid rgba(36, 130, 81, .25);
    border-radius: 12px;
    background: linear-gradient(135deg, #f1faf3 0%, #e7f5ec 100%);
}

.guarantee-badge__seal {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #fff;
    color: #2f7251;
    box-shadow: 0 4px 12px rgba(47, 114, 81, .2);
}

.guarantee-badge__text {
    display: flex;
    flex-direction: column;
    color: #1f4d39;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.25;
}

.guarantee-badge__text strong {
    font-family: "Spectral", Georgia, serif;
    font-size: 19px;
    font-weight: 800;
    color: #1f4d39;
}

/* Countdown inside offer card */
.offer-card__countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0 14px;
    padding: 12px 16px;
    border: 1px solid rgba(183, 55, 39, .25);
    border-radius: 10px;
    background: linear-gradient(135deg, #fff5f3 0%, #fff0eb 100%);
}

.offer-card__countdown-label {
    color: #6b2a1d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.offer-card__countdown-time {
    color: #b73727;
    font-family: "Spectral", Georgia, serif;
    font-size: 22px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
}

@keyframes stockPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(183, 55, 39, .4); }
    50%      { box-shadow: 0 0 0 6px rgba(183, 55, 39, 0); }
}

.offer-card__stock {
    animation: stockPulse 2.4s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .offer-card__stock { animation: none; }
}

/* Exit intent modal */
.exit-intent-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.exit-intent-modal.is-open {
    display: flex;
    animation: exitFade .3s ease-out both;
}

.exit-intent-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 47, 36, .68);
    backdrop-filter: blur(4px);
}

.exit-intent-modal__panel {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 36px 28px 28px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(167, 242, 207, .35), transparent 60%),
        linear-gradient(180deg, #fff 0%, #f7fffb 100%);
    box-shadow: 0 30px 80px rgba(1, 106, 57, .35);
    text-align: center;
    animation: exitPanel .35s cubic-bezier(.16, 1, .3, 1) both;
}

.exit-intent-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--article-muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 999px;
}

.exit-intent-modal__close:hover {
    background: rgba(28, 209, 125, .08);
    color: var(--article-accent-deep);
}

.exit-intent-modal__eyebrow {
    margin: 0 0 6px;
    color: var(--article-accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.exit-intent-modal__title {
    margin: 0 0 12px;
    font-family: "Spectral", Georgia, serif;
    font-size: clamp(1.65rem, 4.5vw, 2.1rem);
    line-height: 1.1;
    color: var(--article-accent-deep);
}

.exit-intent-modal__title strong {
    color: var(--article-accent);
}

.exit-intent-modal__text {
    margin: 0 0 22px;
    color: #2c5240;
    font-size: 15.5px;
    line-height: 1.55;
}

.exit-intent-modal__cta {
    display: inline-block;
    width: 100%;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--article-accent-soft) 0%, var(--article-accent) 100%);
    color: #fff;
    font-family: "Libre Franklin", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(28, 209, 125, .3);
    transition: transform .18s ease, box-shadow .18s ease;
}

.exit-intent-modal__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(28, 209, 125, .36);
}

.exit-intent-modal__note {
    margin: 12px 0 0;
    color: var(--article-muted);
    font-size: 12.5px;
    line-height: 1.4;
}

@keyframes exitFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes exitPanel {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .exit-intent-modal.is-open,
    .exit-intent-modal__panel { animation: none; }
}

/* Site footer */
.site-footer {
    margin: 48px 0 28px;
    padding: 28px 18px 0;
    border-top: 1px solid var(--article-border);
    text-align: center;
}

.site-footer .form-disclaimer-wrap {
    max-width: 760px;
    margin: 0 auto 18px;
}

.site-footer .form-disclaimer {
    margin: 0;
    color: var(--article-muted);
    font-size: 12.5px;
    line-height: 1.6;
    text-align: left;
}

.site-footer .footer-privacy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 10px;
    margin-bottom: 16px;
    font-size: 13px;
}

.site-footer .footer-privacy .pr-btn {
    border: 0;
    background: transparent;
    color: var(--article-accent-deep);
    font-family: "Libre Franklin", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
}

.site-footer .footer-privacy .pr-btn:hover {
    background: rgba(28, 209, 125, .08);
    color: var(--article-accent);
}

.site-footer .footer-line {
    color: var(--article-border);
    font-weight: 400;
}

.site-footer .footer-copy {
    margin: 0;
    color: var(--article-muted);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 600px) {
    .site-footer { padding: 32px 0 0; }
    .site-footer .form-disclaimer { font-size: 13px; text-align: center; }
}

/* Mobile-first polish: keep CTA clear of safe area, force tap targets */
@media (max-width: 600px) {
    .button,
    .button--inline,
    .button--offer {
        min-height: 50px;
    }

    .article-share a {
        min-width: 38px;
        height: 38px;
    }

    .header-nav-wrap .header-nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .sticky-offer {
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }

    /* Stats grid: keep 3-col but smaller numbers on tiny screens */
    .stats-grid {
        gap: 4px;
        padding: 18px 8px;
    }

    .stats-grid__item + .stats-grid__item {
        border-left-color: rgba(28, 209, 125, .08);
    }
}

@media (max-width: 380px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid__item + .stats-grid__item {
        border-left: 0;
        border-top: 1px solid rgba(28, 209, 125, .12);
        padding-top: 14px;
        margin-top: 6px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }
}

/* Image polish: subtle zoom on hover (desktop only), smooth radius */
@media (hover: hover) and (pointer: fine) {
    .image img,
    .product-block .product-image img {
        transition: transform .6s cubic-bezier(.16, 1, .3, 1);
    }
    .image:hover img {
        transform: scale(1.025);
    }
}

/* ============================================================
   IMAGE INTEGRITY — never stretch, always preserve aspect ratio
   ============================================================ */
.image,
.image--horizontal,
.image--first {
    display: block;
}

.image img,
.image--horizontal img,
.image--first img,
.product-block .product-image img,
.offer-card__media img,
.responsive-block .item img,
.custom-notification-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Offer card hero image: respect portrait ratio (720x960) on desktop */
.offer-card__media {
    overflow: hidden;
    border-radius: 12px;
    background: var(--article-lavender);
}

.offer-card__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

/* Before/after carousel: fixed portrait ratio (400x533 = 3/4) */
.responsive-block .item img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}

/* Product hero block: square-ish (565x550) */
.product-block .product-image {
    overflow: hidden;
    border-radius: 14px;
}

.product-block .product-image img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: linear-gradient(180deg, #f7fcf9 0%, #e1fff1 100%);
}

/* Notification popup avatar */
.custom-notification-image-wrapper {
    overflow: hidden;
    flex: 0 0 auto;
}

.custom-notification-image-wrapper img {
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

/* ============================================================
   DESKTOP EDITORIAL POLISH (≥901px)
   Wider rails · drop cap · varied rhythm · premium components
   ============================================================ */
@media screen and (min-width: 901px) {
    .content {
        --article-desktop-width: min(1180px, calc(100vw - 64px));
    }

    /* Wider editorial rail. Body still narrow for readability. */
    .container {
        max-width: 760px;
    }

    .container.container--large {
        max-width: 1100px;
    }

    /* Hero zone breathes more */
    h1 {
        margin-top: 44px;
        margin-bottom: 16px;
        font-size: clamp(2.6rem, 3.4vw, 3.55rem);
        line-height: 1.02;
        letter-spacing: -.02em;
        text-align: center;
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }

    h2 {
        max-width: 760px;
        margin: 0 auto 28px;
        font-size: clamp(1.18rem, 1.3vw, 1.32rem);
        line-height: 1.4;
        text-align: center;
        color: #3a5e4d;
    }

    .article-meta {
        max-width: 920px;
        justify-content: center;
        margin: 0 auto 32px;
    }

    .article-meta__info {
        justify-content: center;
    }

    /* Hero image: contained, with caption refinement */
    .image--first {
        max-width: 1040px;
        margin: 8px auto 18px;
        border-radius: 16px;
        box-shadow: 0 28px 70px rgba(1, 106, 57, .14);
    }

    .image--first .image-description {
        padding: 16px 24px;
        font-size: 14px;
        font-style: italic;
    }

    /* Drop cap on first paragraph after the hero info block */
    .information + .container > .article-cta--compact + .container,
    .information ~ .container > p:first-of-type::first-letter {
        font-family: "Spectral", Georgia, serif;
        font-weight: 700;
        font-size: 4.4em;
        line-height: .85;
        float: left;
        padding: .12em .14em 0 0;
        color: var(--article-accent-deep);
    }

    /* Standard images: editorial frame */
    .image,
    .image--horizontal {
        max-width: 920px;
        margin: 36px auto;
        border-radius: 14px;
        box-shadow: 0 22px 56px rgba(1, 106, 57, .12);
    }

    .image .image-description {
        padding: 14px 24px;
        font-size: 13.5px;
        font-style: italic;
    }

    /* Body paragraphs: limit measure for reading comfort */
    .content > .container > p,
    .content > .container > h3,
    .note-text p {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
        line-height: 1.72;
    }

    .content > .container > h3 {
        margin-top: 56px;
        margin-bottom: 22px;
        font-size: clamp(1.85rem, 2.2vw, 2.3rem);
        font-weight: 700;
        line-height: 1.15;
        text-align: left;
    }

    /* Information band: full bleed, calmer */
    .information {
        margin: 48px 0;
        padding: 44px 0;
        background: linear-gradient(135deg, #e2fff1 0%, #c8ffe5 100%);
        border-block: 1px solid rgba(28, 209, 125, .12);
    }

    .information .container {
        max-width: 880px;
    }

    .information p {
        max-width: 760px;
        margin: 0 auto;
        font-size: 22px;
        line-height: 1.5;
        text-align: center;
    }

    /* Article CTAs: side-by-side, generous */
    .article-cta {
        max-width: 760px;
        margin: 36px auto;
        padding: 26px 32px;
        border-radius: 14px;
    }

    .article-cta--compact {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 26px;
        align-items: center;
    }

    .article-cta p {
        max-width: none;
        font-size: 17px;
        line-height: 1.55;
    }

    /* Pull quotes: editorial weight */
    .note {
        margin: 44px 0;
    }

    .note .container {
        max-width: 880px;
    }

    .note-wrap {
        padding: 36px 0;
        column-gap: 22px;
    }

    .note-text p {
        max-width: 720px;
        font-size: 22px;
        line-height: 1.55;
        font-family: "Spectral", Georgia, serif;
        font-style: italic;
    }

    .note-text p i {
        font-style: normal;
    }

    .note-icon {
        max-width: 32px;
        height: 32px;
        margin-top: 6px;
    }

    /* Thesis block: more presence */
    .thesis {
        max-width: 760px;
        margin: 36px auto;
        padding: 28px 36px;
        border-radius: 14px;
        background: linear-gradient(135deg, #eefff7 0%, #d9ffed 100%);
        border: 1px solid rgba(28, 209, 125, .18);
    }

    .thesis p {
        font-size: 21px;
        line-height: 1.5;
        font-family: "Spectral", Georgia, serif;
    }

    /* Lists: spacious */
    .list {
        max-width: 760px;
        margin: 32px auto 36px;
    }

    .list li {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 1.6;
    }

    /* Trust strip: 4 col with breathing room */
    .trust-strip {
        max-width: 920px;
        margin: 32px auto 16px;
        padding: 22px 28px;
        gap: 18px;
        grid-template-columns: repeat(4, 1fr);
        border-radius: 16px;
    }

    .trust-strip li {
        gap: 14px;
        font-size: 14px;
    }

    .trust-strip__icon {
        width: 44px;
        height: 44px;
    }

    .trust-strip__label strong {
        font-size: 16px;
    }

    /* Stats grid: editorial display */
    .stats-grid {
        max-width: 920px;
        margin: 48px auto;
        padding: 44px 36px;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
        border-radius: 18px;
        background:
            radial-gradient(circle at 50% 0%, rgba(167, 242, 207, .35), transparent 65%),
            linear-gradient(180deg, #fff 0%, #edfff7 100%);
        box-shadow: 0 22px 56px rgba(1, 106, 57, .14);
    }

    .stats-grid__number {
        font-size: clamp(3.4rem, 4.6vw, 4.6rem);
    }

    .stats-grid__unit {
        font-size: .5em;
    }

    .stats-grid__label {
        font-size: 13.5px;
        margin-top: 10px;
    }

    /* Ratings block: side-by-side hero band */
    .ratings-block {
        max-width: 760px;
        margin: 36px auto 40px;
        padding: 18px 28px;
        flex-direction: row;
        align-items: center;
        gap: 18px;
        border-radius: 14px;
    }

    .ratings-block__text {
        font-size: 16.5px;
    }

    /* Diagram: more presence */
    .diagram-wrap {
        max-width: 760px;
        margin: 36px auto;
    }

    /* Before/after carousel: 3-col tight */
    .responsive-block {
        max-width: 920px;
        margin: 36px auto;
        gap: 18px;
    }

    .responsive-block .item {
        flex: 1 1 calc(33.333% - 12px);
        min-width: 0;
        max-width: none;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 16px 38px rgba(1, 106, 57, .12);
    }

    /* Product block: more impact */
    .product-block {
        max-width: 420px;
        margin: 44px auto;
        border-radius: 18px;
    }

    .product-block .product-image {
        max-width: 320px;
        padding: 28px;
    }

    /* Offer card: editorial split */
    .offer-card {
        max-width: 1040px;
        margin: 56px auto;
        padding: 32px;
        gap: 36px;
        grid-template-columns: 220px 1fr;
        border-radius: 20px;
        background:
            radial-gradient(circle at 100% 0%, rgba(167, 242, 207, .35), transparent 65%),
            linear-gradient(135deg, #fff 0%, #f1fff8 100%);
        box-shadow: 0 30px 76px rgba(1, 106, 57, .16);
    }

    .offer-card__media {
        border-radius: 16px;
    }

    .offer-card__media img {
        max-height: 480px;
        aspect-ratio: 3 / 4;
    }

    .offer-card__content h3 {
        font-size: clamp(1.85rem, 2.4vw, 2.35rem);
        line-height: 1.12;
        margin-top: 4px;
    }

    .offer-card__list li {
        font-size: 16px;
        padding-left: 32px;
    }

    .offer-card__list li::before {
        width: 20px;
        height: 20px;
    }

    .button--offer {
        margin: 26px 0 12px;
        padding: 18px 28px;
        font-size: 16.5px;
        min-height: 56px;
        border-radius: 14px;
    }

    /* FAQ on desktop: roomy, premium */
    .faq {
        max-width: 820px;
        margin: 32px auto 56px;
        gap: 10px;
    }

    .faq__item {
        border-radius: 14px;
    }

    .faq__q {
        font-size: 19px;
        padding: 22px 60px 22px 26px;
        min-height: 72px;
    }

    .faq__a {
        padding: 0 26px 26px;
    }

    .faq__a p {
        font-size: 17px;
        line-height: 1.7;
        max-width: none;
    }

    /* Comments: editorial */
    .comments-title {
        max-width: 820px;
        margin: 56px auto 18px;
        font-size: clamp(1.7rem, 2.2vw, 2.1rem);
    }

    .comments-wrap {
        max-width: 820px;
        margin: 0 auto;
    }

    /* Footer */
    .site-footer {
        max-width: 980px;
        margin: 64px auto 36px;
        padding: 36px 0 0;
    }

    .site-footer .form-disclaimer {
        font-size: 13px;
        text-align: center;
    }

    /* Floating CTA: better positioning */
    .floating-cta {
        right: 28px;
        bottom: 32px;
        padding: 14px 22px;
        min-height: 50px;
        font-size: 13.5px;
    }
}

/* ============================================================
   DESKTOP HERO REFINEMENT (≥1100px) — final layer
   ============================================================ */
@media screen and (min-width: 1100px) {
    h1 {
        font-size: clamp(2.9rem, 3.6vw, 3.8rem);
    }

    .image--first {
        max-width: 1080px;
    }

    .image,
    .image--horizontal {
        max-width: 940px;
    }

    .stats-grid {
        max-width: 940px;
    }

    .trust-strip {
        max-width: 940px;
    }

    .offer-card {
        max-width: 1040px;
        grid-template-columns: 280px 1fr;
    }
}

/* ============================================================
   SPACING RHYTHM — varied, not uniform, mobile-first
   ============================================================ */
.content > .container + .container {
    margin-top: 0;
}

.content > .information + .container,
.content > .container + .information {
    margin-top: 0;
}

/* Section dividers between editorial chunks */
.content > .container > h3 {
    position: relative;
    padding-top: 8px;
}

.content > .container > h3::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--article-accent) 0%, var(--article-accent-soft) 100%);
}

@media (min-width: 901px) {
    .content > .container > h3::before {
        width: 64px;
        height: 3px;
        margin-bottom: 22px;
    }
}

/* ============================================================
   UNIFIED FONT SYSTEM — final override
   Two families only: Libre Franklin (sans) + Spectral (serif)
   ============================================================ */

/* Sans default everywhere — body, UI, copy, controls */
html,
body,
.wrapper,
.content,
p, span, li, a, label, small, strong, em, b, time, button, input, select, textarea,
.header-head .header-head--desk .header-head-text,
.header-head .header-head--desk .header-head-text span,
.header-nav-wrap .header-nav a,
.article-meta,
.article-kicker,
.article-share a,
.image-description,
.note-text p,
.note-text p b,
.list li,
.list li p,
.article-cta p,
.responsive-block .item p,
.diagram-title,
.diagram-description,
.diagram-data,
.diagram-data div,
.product-block,
.offer-card__eyebrow,
.offer-card__content p,
.offer-card__list,
.offer-card__list li,
.offer-card__stock,
.offer-card__note,
.button,
.button--inline,
.button--offer,
.floating-cta,
.sticky-offer,
.sticky-offer strong,
.sticky-offer span,
.sticky-offer a,
.comments-summary,
.comments-item,
.comments-item-info .name,
.comments-item-info .date,
.comments-item-content .text,
.comments-item-content .text p,
.comments-load-more,
.custom-notification-content,
.notify-time,
.trust-strip li,
.trust-strip__label,
.trust-strip__label strong,
.stats-grid__label,
.ratings-block__text,
.ratings-block__text strong,
.faq__a,
.faq__a p,
.guarantee-badge,
.guarantee-badge__text,
.offer-card__countdown,
.offer-card__countdown-label,
.exit-intent-modal,
.exit-intent-modal__eyebrow,
.exit-intent-modal__text,
.exit-intent-modal__cta,
.exit-intent-modal__note,
.site-footer,
.site-footer .form-disclaimer,
.site-footer .footer-privacy,
.site-footer .footer-privacy .pr-btn,
.site-footer .footer-copy,
h2 {
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* Serif — display headlines, pull quotes, editorial voice */
h1,
h3, h4,
.thesis p,
.thesis p b,
.note-text p i,
.comments-title,
.offer-card__content h3,
#offer-title,
.faq__q,
.guarantee-badge__text strong,
.offer-card__countdown-time,
.stats-grid__number,
.exit-intent-modal__title {
    font-family: "Spectral", Georgia, "Times New Roman", serif;
}

/* Italic emphasis inside pull quotes stays serif italic */
.note-text p i,
.note.quote i,
.note.quote em {
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-style: italic;
}

/* Numerals: tabular for stats, dates, prices, countdowns */
.article-meta time,
.post-date,
.offer-card__countdown-time,
.offer-card__stock,
.offer-card__stock strong,
.stats-grid__number,
.ratings-block__text strong {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* Light hyphenation control: avoid awkward breaks in headlines */
h1, h2, h3, .offer-card__content h3, .exit-intent-modal__title {
    text-wrap: balance;
    hyphens: manual;
}

/* ============================================================
   FOOTER POLISH — subtle pills, calm rhythm, hide tracking link
   ============================================================ */

/* Hide the bottom-left injected tracking anchor visually but keep it
   in the DOM for crawlers / tracking platform. Accessible via screen reader. */
#63d9a23d-ad75-9b26-d326-1b1b1a7f60df {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
}

/* Footer container: tighter, calmer */
.site-footer {
    margin-top: 56px;
    padding: 36px 0 12px;
    border-top: 1px solid var(--article-border);
}

.site-footer .form-disclaimer-wrap {
    margin-bottom: 24px;
}

.site-footer .form-disclaimer {
    color: #6f877c;
    font-size: 13px;
    line-height: 1.65;
}

/* Footer link buttons: subtle pills instead of heavy underlines */
.site-footer .footer-privacy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
    margin: 0 0 18px;
    padding: 0;
    font-size: 13px;
}

.site-footer .footer-privacy .pr-btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--article-accent-deep);
    font-family: "Libre Franklin", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .005em;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.site-footer .footer-privacy .pr-btn:hover,
.site-footer .footer-privacy .pr-btn:focus-visible {
    background: var(--article-lavender);
    border-color: rgba(28, 209, 125, .22);
    color: var(--article-accent);
    text-decoration: none;
    outline: none;
}

.site-footer .footer-privacy .pr-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(28, 209, 125, .22);
}

.site-footer .footer-line {
    color: rgba(28, 209, 125, .28);
    font-size: 11px;
    font-weight: 400;
    user-select: none;
}

.site-footer .footer-copy {
    margin: 0;
    color: var(--article-muted);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .01em;
}

/* Mobile: stack with looser gap */
@media (max-width: 600px) {
    .site-footer {
        margin-top: 40px;
        padding: 28px 4px 16px;
    }
    .site-footer .form-disclaimer {
        font-size: 12.5px;
        text-align: left;
    }
    .site-footer .footer-privacy {
        gap: 2px 4px;
    }
    .site-footer .footer-privacy .pr-btn {
        height: 34px;
        padding: 0 11px;
        font-size: 12.5px;
    }
    .site-footer .footer-line {
        display: none; /* the row wraps cleanly without dividers on mobile */
    }
}

/* ===== Slimlex AUD pricing tiers ===== */
.price-tiers{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:22px 0 6px;
}
.price-tier{
    position:relative;
    background:#fff;
    border:1.5px solid var(--line);
    border-radius:16px;
    padding:18px 18px 16px;
    box-shadow:0 6px 18px rgba(1,106,57,.06);
    transition:transform .15s ease, box-shadow .15s ease;
}
.price-tier--popular{
    border-color:var(--accent);
    border-width:2px;
    box-shadow:0 12px 28px rgba(28,209,125,.18);
}
.price-tier--best{
    border-color:var(--accent-deep);
    border-width:2px;
    box-shadow:0 12px 28px rgba(1,106,57,.16);
}
.price-tier__flag{
    position:absolute;
    top:-11px;
    left:18px;
    background:var(--accent-deep);
    color:#fff;
    font-size:11px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    padding:4px 12px;
    border-radius:999px;
    box-shadow:0 4px 10px rgba(1,106,57,.25);
}
.price-tier--popular .price-tier__flag{background:var(--accent);}
.price-tier__head{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:10px;
    margin-bottom:8px;
}
.price-tier__qty{
    font-family:"Spectral",serif;
    font-size:20px;
    font-weight:700;
    color:var(--ink);
}
.price-tier__sub{
    font-size:13px;
    font-weight:700;
    color:var(--accent-deep);
    text-align:right;
}
.price-tier__price{
    display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    gap:2px 6px;
    margin:2px 0 4px;
}
.price-tier__now{
    font-size:30px;
    font-weight:900;
    line-height:1;
    color:var(--accent-deep);
}
.price-tier__unit{
    font-size:14px;
    font-weight:600;
    color:var(--muted);
}
.price-tier__was{
    font-size:13px;
    color:var(--muted);
    margin-bottom:2px;
}
.price-tier__was s{opacity:.8;}
.price-tier__ship{
    font-size:13px;
    font-weight:700;
    color:var(--muted);
}
.price-tier__ship--free{color:var(--accent-deep);}

@media (min-width:760px){
    .price-tiers{flex-direction:row;flex-wrap:wrap;align-items:stretch;}
    .price-tier{flex:1 1 160px;display:flex;flex-direction:column;min-width:0;}
    .price-tier__head{flex-direction:column;align-items:flex-start;gap:2px;}
    .price-tier__sub{text-align:left;}
}
