:root {
    --br-ink: #202326;
    --br-muted: #6b7178;
    --br-soft: #8a7b74;
    --br-line: #e6dfd7;
    --br-bg: #fbfaf7;
    --br-panel: #ffffff;
    --br-panel-warm: #f4eee7;
    --br-accent: #b24f5c;
    --br-accent-strong: #7d3440;
    --br-green: #28695e;
    --br-blue: #315d7c;
    --br-gold: #c48b42;
    --br-shadow: 0 18px 50px rgba(32, 35, 38, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    background: var(--br-bg);
    color: var(--br-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

.site-main {
    flex: 1 0 auto;
}

a {
    color: inherit;
    text-decoration-color: rgba(178, 79, 92, 0.34);
    text-underline-offset: 0.18em;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    word-wrap: normal;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(230, 223, 215, 0.9);
    background: rgba(251, 250, 247, 0.94);
    backdrop-filter: blur(12px);
}

.site-header__inner,
.site-footer__inner,
.content-band,
.article-shell,
.product-detail {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header__inner {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand-wrap {
    min-width: 0;
}

.site-brand {
    display: inline-flex;
    width: max-content;
    max-width: min(100%, 520px);
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-brand--has-logo {
    gap: 14px;
}

.site-brand--default-logo {
    gap: 0;
}

.site-brand__logo-frame {
    display: grid;
    width: 76px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f1eee9;
}

.site-brand__logo-frame--default {
    width: 34px;
    height: 38px;
    background: transparent;
    overflow: visible;
}

.site-brand__logo {
    width: auto;
    max-width: 70px;
    max-height: 42px;
    object-fit: contain;
}

.site-brand__logo--default {
    width: 32px;
    max-width: 32px;
    max-height: 34px;
}

.site-brand__text {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.site-brand__name {
    min-width: 0;
    color: var(--br-ink);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.site-brand--default-logo .site-brand__name {
    display: inline-flex;
    align-items: baseline;
}

.site-brand__name-part--accent {
    position: relative;
    color: var(--br-accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05em;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.06em;
    margin-left: 0.02em;
    transform: translateY(0.02em);
}

.site-brand__name-part--accent::after {
    content: "";
    position: absolute;
    top: -0.18em;
    right: -0.2em;
    width: 0.24em;
    height: 0.24em;
    border-radius: 50%;
    background: var(--br-accent);
}

.site-description {
    color: var(--br-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

.site-nav ul,
.site-footer ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 18px;
}

.site-nav a,
.site-footer a {
    color: var(--br-muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
    color: var(--br-accent-strong);
}

.site-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(230, 223, 215, 0.95);
    border-radius: 8px;
    background: #fff;
    color: var(--br-ink);
    cursor: pointer;
}

.site-nav-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-bottom: 1px solid var(--br-line);
    background: #f1eee9;
}

.hero-carousel__slides {
    display: grid;
    min-height: 610px;
}

.hero-slide {
    position: relative;
    grid-area: 1 / 1;
    display: grid;
    align-items: center;
    min-height: 610px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 560ms ease;
    background:
        linear-gradient(100deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 42%, rgba(251, 250, 247, 0.3) 100%),
        var(--hero-image, url("../images/method-review-lab-wide.webp")) center/cover;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero__content {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    max-width: 760px;
    padding: 66px 0 94px;
}

.eyebrow,
.article-header__meta,
.post-card__meta {
    color: var(--br-green);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 8px 0 18px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: 0;
}

.article-hero h1,
.product-hero h1 {
    margin: 8px 0 18px;
    font-size: clamp(42px, 6.4vw, 78px);
    line-height: 0.98;
    letter-spacing: 0;
}

.article-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
}

.product-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
}

.hero p {
    max-width: 680px;
    color: #384148;
    font-size: 19px;
}

.hero-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: var(--br-muted);
    font-size: 13px;
    font-weight: 800;
}

.hero-meta-line span + span {
    position: relative;
}

.hero-meta-line span + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--br-accent);
    transform: translateY(-50%);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 32px;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 820;
    text-decoration: none;
}

.button--primary {
    background: var(--br-accent);
    color: #fff;
}

.button--primary:hover {
    background: var(--br-accent-strong);
}

.button--ghost {
    border-color: rgba(32, 35, 38, 0.18);
    background: rgba(255, 255, 255, 0.74);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 10px;
    z-index: 2;
    transform: translateX(-50%);
}

.hero-controls button {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(32, 35, 38, 0.24);
    cursor: pointer;
}

.hero-controls button.is-active {
    background: var(--br-accent);
}

.content-band {
    padding: 58px 0;
}

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

.section-heading h1,
.section-heading h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
}

.text-link {
    color: var(--br-accent-strong);
    font-weight: 850;
    text-decoration: none;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 42px;
    align-items: start;
    padding-top: 54px;
    padding-bottom: 64px;
}

.featured-story {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    color: inherit;
}

.featured-story__media {
    position: relative;
    overflow: hidden;
    min-height: clamp(340px, 34vw, 460px);
    border-radius: 8px;
    background: #eee9e4;
}

.featured-story__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(32, 35, 38, 0.12) 100%);
    pointer-events: none;
}

.featured-story__media img {
    width: 100%;
    height: 100%;
    min-height: clamp(340px, 34vw, 460px);
    object-fit: cover;
}

.featured-story__body {
    display: grid;
    gap: 16px;
    padding: 0;
}

.featured-story__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0;
    color: var(--br-green);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-story__meta span {
    position: relative;
    color: var(--br-muted);
    letter-spacing: 0;
    text-transform: none;
}

.featured-story__meta span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--br-accent);
    transform: translateY(-50%);
}

.featured-story h2 {
    margin: 0;
    font-size: clamp(32px, 3.2vw, 50px);
    line-height: 1;
    max-width: 620px;
}

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

.featured-story__link {
    width: fit-content;
    margin-top: 4px;
}

.featured-story p,
.method-panel p,
.product-row p {
    color: var(--br-muted);
}

.featured-review-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 8px 0 2px;
    border-top: 1px solid var(--br-line);
    border-bottom: 1px solid var(--br-line);
}

.featured-review-facts div {
    min-height: 78px;
    padding: 14px 18px 14px 0;
    border-right: 1px solid var(--br-line);
    border-bottom: 1px solid var(--br-line);
}

.featured-review-facts div:nth-child(2n) {
    padding-left: 18px;
    border-right: 0;
}

.featured-review-facts div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.featured-review-facts span {
    display: block;
    margin-bottom: 4px;
    color: var(--br-muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-review-facts strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.pill,
.post-card__tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eaf4f0;
    color: var(--br-green);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.method-panel,
.sidebar-panel,
.product-verdict {
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(32, 35, 38, 0.06);
}

.method-panel {
    padding: 34px 0 0;
    border: 0;
    border-top: 1px solid var(--br-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.method-panel h2 {
    margin: 8px 0 16px;
    font-size: 30px;
    line-height: 1.1;
}

.method-panel ul,
.article-sidebar ul {
    margin: 0;
    padding-left: 19px;
    color: var(--br-muted);
}

.method-panel li + li {
    margin-top: 8px;
}

.review-method-strip {
    border-block: 1px solid var(--br-line);
    background: #fff;
}

.review-method-strip__inner {
    width: min(1160px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
    align-items: center;
    margin: 0 auto;
    padding: 34px 0;
}

.review-method-strip h2 {
    margin: 8px 0 0;
    font-size: 27px;
    line-height: 1.12;
}

.method-showcase {
    display: grid;
    gap: 16px;
}

.method-scenes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-block: 8px;
}

.method-scene {
    margin: 0;
    display: grid;
    gap: 7px;
    min-width: 0;
    --method-scene-hover: 0px;
    padding: 10px;
    border: 1px solid rgba(32, 35, 38, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 28px rgba(32, 35, 38, 0.06);
    transform: translateY(calc(var(--method-scene-offset, 0px) + var(--method-scene-hover))) rotate(var(--method-scene-tilt, 0deg));
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.method-scene:nth-child(1) {
    --method-scene-offset: 8px;
    --method-scene-tilt: -1deg;
}

.method-scene:nth-child(2) {
    --method-scene-offset: -8px;
    --method-scene-tilt: 0.8deg;
}

.method-scene:nth-child(3) {
    --method-scene-offset: 6px;
    --method-scene-tilt: -0.6deg;
}

.method-scene:nth-child(4) {
    --method-scene-offset: -6px;
    --method-scene-tilt: 0.7deg;
}

.method-scene__crop {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background-image: url("../images/method-review-lab-wide.webp");
    background-repeat: no-repeat;
    background-size: 380% auto;
    background-position: var(--method-crop-position, center);
    background-color: #eee9e4;
    transition:
        background-size 220ms ease,
        filter 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .method-scene:hover {
        --method-scene-hover: -6px;
        border-color: rgba(125, 52, 64, 0.16);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 36px rgba(32, 35, 38, 0.1);
    }

    .method-scene:hover .method-scene__crop {
        background-size: 392% auto;
        filter: saturate(1.04) contrast(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .method-scene,
    .method-scene__crop {
        transition: none;
    }

    .method-scene:hover {
        --method-scene-hover: 0px;
    }
}

.method-scene--skin {
    --method-crop-position: 6% 44%;
}

.method-scene--texture {
    --method-crop-position: 40% 70%;
}

.method-scene--wear {
    --method-crop-position: 68% 54%;
}

.method-scene--value {
    --method-crop-position: 94% 78%;
}

.method-scene strong,
.method-scene span {
    display: block;
}

.method-scene strong {
    color: var(--br-accent-strong);
    font-size: 16px;
}

.method-scene span {
    color: var(--br-muted);
    font-size: 13px;
    line-height: 1.45;
}

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

.post-card {
    overflow: hidden;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: var(--br-panel);
    box-shadow: 0 14px 36px rgba(32, 35, 38, 0.07);
}

.post-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    background: #ece7e2;
    overflow: hidden;
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

.post-card:hover .post-card__media img {
    transform: scale(1.035);
}

.post-card__body {
    display: grid;
    gap: 9px;
    padding: 18px;
}

.post-card__meta,
.article-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--br-soft);
}

.post-card h2 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
}

.post-card h2 a,
.product-row h3 a {
    text-decoration: none;
}

.post-card p {
    margin: 0;
    color: var(--br-muted);
}

.pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 48px auto 24px;
}

.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-numbers {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #fff;
    color: var(--br-muted);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.page-numbers.current {
    border-color: var(--br-accent);
    background: var(--br-accent);
    color: #fff;
}

.page-numbers.next,
.page-numbers.prev {
    min-width: 72px;
    color: var(--br-accent-strong);
}

a.page-numbers:hover {
    border-color: rgba(125, 52, 64, 0.35);
    background: #f7f3ee;
    color: var(--br-accent-strong);
}

.product-band {
    border-block: 1px solid var(--br-line);
    background: #f7f3ee;
    width: 100%;
    max-width: none;
    padding-inline: max(16px, calc((100vw - 1160px) / 2));
}

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

.product-row {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(32, 35, 38, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 34px rgba(32, 35, 38, 0.06);
}

.product-row__image {
    display: grid;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eee9e4;
    color: #fff;
    text-decoration: none;
}

.product-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-row__image-fallback {
    display: grid;
    min-height: 100%;
    align-content: end;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(40, 105, 94, 0.94), rgba(49, 93, 124, 0.82)),
        var(--br-green);
}

.product-row__image-fallback strong {
    max-width: 12ch;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.product-row__main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding: 18px;
}

.product-row h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.12;
}

.product-row__meta {
    margin: 0;
    color: var(--br-green);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-row__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-row__score {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 1px solid rgba(40, 105, 94, 0.16);
    border-radius: 999px;
    background: rgba(40, 105, 94, 0.08);
    color: var(--br-green);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
}

.product-row__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-row__tags li {
    max-width: 100%;
    padding: 6px 9px;
    border: 1px solid rgba(40, 105, 94, 0.14);
    border-radius: 999px;
    background: rgba(40, 105, 94, 0.08);
    color: var(--br-green);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.product-row__main p:not(.product-row__meta) {
    margin: 0;
    color: var(--br-muted);
    font-size: 15px;
    line-height: 1.55;
}

.product-row__link {
    display: inline-flex;
    width: fit-content;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    justify-self: start;
    margin-top: auto;
    padding: 0 14px;
    border: 1px solid rgba(125, 52, 64, 0.18);
    border-radius: 6px;
    background: #fff;
    color: var(--br-accent-strong);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.product-row__link:hover {
    border-color: rgba(125, 52, 64, 0.32);
    background: #fff8f5;
}

.reviewer-teaser {
    border-block: 1px solid rgba(32, 35, 38, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(247, 243, 238, 0.4) 46%, rgba(232, 215, 209, 0.54) 100%),
        #f7f3ee;
}

.reviewer-teaser__inner {
    width: min(1160px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(380px, 1fr);
    gap: 56px;
    align-items: center;
    margin: 0 auto;
    padding: 56px 0;
}

.reviewer-teaser__copy {
    display: grid;
    justify-items: start;
    gap: 16px;
}

.reviewer-teaser__copy h2 {
    max-width: 540px;
    margin: 0;
    font-size: 52px;
    line-height: 0.98;
}

.reviewer-teaser__copy p {
    max-width: 620px;
    margin: 0;
    color: var(--br-muted);
    font-size: 18px;
}

.reviewer-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2px 0 4px;
}

.reviewer-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid rgba(125, 52, 64, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--br-accent-strong);
    font-size: 12px;
    font-weight: 850;
}

.reviewer-lineup {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 16px;
    align-items: start;
    padding: 18px 0;
}

.reviewer-line {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 10px;
    border: 1px solid rgba(32, 35, 38, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 38px rgba(32, 35, 38, 0.06);
    color: inherit;
    text-decoration: none;
    transform: translateY(var(--reviewer-offset, 0)) rotate(var(--reviewer-tilt, 0deg));
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.reviewer-line:nth-child(6n + 1) {
    --reviewer-offset: 10px;
    --reviewer-tilt: -1.2deg;
    z-index: 1;
}

.reviewer-line:nth-child(6n + 2) {
    --reviewer-offset: -12px;
    --reviewer-tilt: 1deg;
    z-index: 3;
}

.reviewer-line:nth-child(6n + 3) {
    --reviewer-offset: 18px;
    --reviewer-tilt: -0.6deg;
    z-index: 2;
}

.reviewer-line:nth-child(6n + 4) {
    --reviewer-offset: -2px;
    --reviewer-tilt: 0.8deg;
    z-index: 2;
}

.reviewer-line:nth-child(6n + 5) {
    --reviewer-offset: 16px;
    --reviewer-tilt: -0.9deg;
    z-index: 1;
}

.reviewer-line:nth-child(6n) {
    --reviewer-offset: 2px;
    --reviewer-tilt: 1.1deg;
    z-index: 3;
}

.reviewer-line:hover {
    border-color: rgba(125, 52, 64, 0.24);
    box-shadow: 0 20px 44px rgba(32, 35, 38, 0.09);
    transform: translateY(calc(var(--reviewer-offset, 0) - 4px)) rotate(0deg);
}

.reviewer-line__photo {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(125, 52, 64, 0.13);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(231, 215, 213, 0.88)),
        #e7d7d5;
}

.reviewer-line__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

.reviewer-line__photo img[hidden],
.reviewer-line__initials[hidden] {
    display: none;
}

.reviewer-line:hover .reviewer-line__photo img {
    transform: scale(1.04);
}

.reviewer-line__initials {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--br-accent-strong);
    font-size: 24px;
    font-weight: 900;
}

.reviewer-line__body {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 2px 2px 0;
}

.reviewer-line strong,
.reviewer-line small {
    display: block;
}

.reviewer-line strong {
    font-size: 15px;
    line-height: 1.16;
}

.reviewer-line small {
    color: var(--br-muted);
    font-size: 11px;
    line-height: 1.25;
}

.not-found-hero {
    width: min(1160px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 46px;
    align-items: center;
    min-height: 560px;
    margin: 0 auto;
    padding: 64px 0;
}

.not-found-hero__copy {
    display: grid;
    justify-items: start;
    gap: 18px;
}

.not-found-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
}

.not-found-hero__copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 0;
    color: var(--br-muted);
    font-size: 19px;
    line-height: 1.58;
}

.not-found-search {
    display: flex;
    width: min(100%, 620px);
    gap: 10px;
    margin-top: 8px;
}

.not-found-search input {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(32, 35, 38, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--br-ink);
    font: inherit;
    box-shadow: 0 12px 28px rgba(32, 35, 38, 0.055);
}

.not-found-search input:focus {
    border-color: rgba(125, 52, 64, 0.48);
    outline: 3px solid rgba(178, 79, 92, 0.14);
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.not-found-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(32, 35, 38, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.7) 44%, rgba(244, 238, 231, 0.82) 100%),
        url("../images/method-review-lab-wide.webp") center/cover;
    box-shadow: var(--br-shadow);
}

.not-found-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(251, 250, 247, 0.92));
    pointer-events: none;
}

.not-found-card > * {
    position: relative;
    z-index: 1;
}

.not-found-card__number {
    display: block;
    color: rgba(125, 52, 64, 0.16);
    font-size: clamp(76px, 10vw, 118px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 0.82;
}

.not-found-card h2 {
    max-width: 360px;
    margin: 18px 0 20px;
    font-size: 28px;
    line-height: 1.08;
}

.not-found-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.not-found-links a {
    display: grid;
    gap: 3px;
    padding: 14px;
    border: 1px solid rgba(32, 35, 38, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.not-found-links a:hover {
    border-color: rgba(125, 52, 64, 0.2);
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-2px);
}

.not-found-links strong,
.not-found-links span {
    display: block;
}

.not-found-links strong {
    color: var(--br-accent-strong);
    font-size: 15px;
    line-height: 1.2;
}

.not-found-links span {
    color: var(--br-muted);
    font-size: 13px;
    line-height: 1.42;
}

.not-found-latest {
    padding-top: 0;
}

.search-hero {
    width: min(1160px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    gap: 34px;
    align-items: end;
    margin: 0 auto;
    padding: 58px 0 36px;
}

.search-hero__copy {
    display: grid;
    gap: 14px;
}

.search-hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
}

.search-hero__copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 0;
    color: var(--br-muted);
    font-size: 18px;
    line-height: 1.58;
}

.search-panel {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(32, 35, 38, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(244, 238, 231, 0.82)),
        #fff;
    box-shadow: 0 14px 34px rgba(32, 35, 38, 0.07);
}

.search-panel input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(32, 35, 38, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--br-ink);
    font: inherit;
}

.search-panel input:focus {
    border-color: rgba(125, 52, 64, 0.48);
    outline: 3px solid rgba(178, 79, 92, 0.14);
}

.search-results-band {
    padding-top: 22px;
}

.search-empty {
    display: grid;
    justify-items: start;
    gap: 16px;
    max-width: 760px;
    padding: 34px;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(32, 35, 38, 0.06);
}

.search-empty h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
}

.search-empty__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.editors-band {
    border-top: 1px solid var(--br-line);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 240, 234, 0.84)),
        #f6f1eb;
}

.editors-band__inner {
    width: min(1160px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 46px;
    align-items: center;
    margin: 0 auto;
    padding: 58px 0;
}

.editor-card h2 {
    max-width: 680px;
    margin: 8px 0 14px;
    font-size: 34px;
    line-height: 1.08;
}

.editor-card p {
    max-width: 720px;
    margin: 0;
    color: var(--br-muted);
    font-size: 18px;
}

.editor-card__link {
    display: inline-flex;
    margin-top: 22px;
}

.editor-standards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
}

.editor-standards__item {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    align-content: space-between;
    padding: 22px;
    border: 1px solid rgba(32, 35, 38, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 38px rgba(72, 48, 42, 0.045);
    overflow: hidden;
}

.editor-standards__item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: rgba(125, 52, 64, 0.38);
}

.editor-standards__item:nth-child(2)::before {
    background: rgba(40, 105, 94, 0.34);
}

.editor-standards__item:nth-child(3)::before {
    background: rgba(196, 139, 66, 0.42);
}

.editor-standards__label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: var(--br-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
}

.editor-standards strong,
.editor-standards span {
    display: block;
}

.editor-standards strong {
    color: var(--br-ink);
    font-size: 18px;
    line-height: 1.2;
}

.editor-standards span {
    margin-top: 6px;
    color: #596168;
    font-size: 14px;
    line-height: 1.45;
}

.article-shell {
    padding: 46px 0 74px;
}

.breadcrumbs {
    margin-bottom: 18px;
    color: var(--br-muted);
    font-size: 13px;
    font-weight: 760;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.breadcrumbs li + li::before {
    content: "/";
    color: #b8aca2;
}

.breadcrumbs a {
    color: var(--br-accent-strong);
    text-decoration: none;
}

.breadcrumbs span[aria-current="page"] {
    color: var(--br-muted);
}

.article-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 38px;
}

.article-hero__copy {
    display: grid;
    gap: 14px;
}

.article-hero__image {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--br-shadow);
}

.article-hero__image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.article-shell--product-review .article-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
    gap: 30px;
    align-items: start;
}

.article-shell--product-review .article-hero__image img {
    max-height: 440px;
    aspect-ratio: 4 / 3;
}

.article-shell--ingredient-guide .article-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    gap: 28px;
    padding: 24px;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(239, 246, 242, 0.9)),
        #eef4f0;
}

.article-shell--ingredient-guide .article-hero__image img {
    aspect-ratio: 1 / 1;
}

.article-shell--routine-guide .article-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    gap: 28px;
    padding: 26px;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(244, 238, 231, 0.88)),
        #f4eee7;
}

.article-shell--routine-guide .article-hero__copy {
    max-width: 860px;
}

.article-shell--routine-guide .article-hero h1 {
    font-size: clamp(38px, 4.8vw, 56px);
    line-height: 1.02;
}

.article-shell--routine-guide .article-hero__image img {
    max-height: 360px;
    aspect-ratio: 4 / 3;
}

.article-shell--routine-guide .article-body-grid {
    grid-template-columns: 250px minmax(0, 880px);
}

.article-dek {
    max-width: 680px;
    margin: 0;
    color: var(--br-muted);
    font-size: 18px;
    line-height: 1.55;
}

.byline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.byline__avatar {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: #e7d7d5;
    color: var(--br-accent-strong);
    font-size: 13px;
    font-weight: 900;
}

.byline__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.byline strong,
.byline span {
    display: block;
}

.byline span {
    color: var(--br-muted);
    font-size: 14px;
}

.article-body-grid,
.product-content-grid {
    display: grid;
    grid-template-columns: 270px minmax(0, 760px);
    gap: 44px;
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}

.sidebar-panel {
    padding: 18px;
}

.sidebar-panel p {
    color: var(--br-muted);
}

.article-toc ol {
    display: grid;
    max-height: min(520px, calc(100vh - 190px));
    gap: 8px;
    margin: 0;
    padding: 0 4px 0 0;
    list-style: none;
    overflow: auto;
    scrollbar-width: thin;
}

.article-toc__header {
    display: block;
}

.article-toc__toggle {
    display: none;
}

.article-toc a {
    display: block;
    padding: 7px 0;
    color: var(--br-muted);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.28;
    text-decoration: none;
}

.article-toc a:hover {
    color: var(--br-accent-strong);
}

.article-toc__item--h3 {
    display: none;
}

.article-content {
    max-width: 760px;
}

.product-detail .article-content {
    color: #343b3f;
}

.article-shell--ingredient-guide .article-content,
.article-shell--routine-guide .article-content {
    max-width: 880px;
}

.article-content h2,
.article-content h3 {
    margin-top: 1.75em;
    line-height: 1.15;
}

.article-content h2 {
    font-size: 30px;
}

.product-detail .article-content h2 {
    margin-top: 2.05em;
    padding-top: 0.1em;
    font-size: clamp(26px, 3.2vw, 34px);
    line-height: 1.12;
}

.product-detail .article-content p {
    margin: 1.05em 0;
}

.product-detail .article-content > p:first-child {
    margin-top: 0;
    color: #3f484c;
    font-size: 18px;
    line-height: 1.72;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(230, 223, 215, 0.86);
    border-radius: 8px;
    background: #fff;
}

.article-content .wp-block-table {
    margin: 28px 0;
}

.product-detail .article-content .wp-block-table {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.article-content .wp-block-table thead {
    border-bottom: 1px solid rgba(214, 203, 194, 0.9);
}

.article-content .wp-block-table table,
.article-content .wp-block-table th,
.article-content .wp-block-table td {
    border-color: rgba(230, 223, 215, 0.72);
}

.article-content th,
.article-content td {
    padding: 14px 15px;
    border: 0;
    border-right: 1px solid rgba(230, 223, 215, 0.68);
    border-bottom: 1px solid rgba(230, 223, 215, 0.68);
    text-align: left;
    vertical-align: top;
}

.article-content tr > :last-child {
    border-right: 0;
}

.article-content tbody tr:last-child > * {
    border-bottom: 0;
}

.article-content th {
    background: rgba(244, 238, 231, 0.72);
    color: var(--br-ink);
    font-weight: 850;
}

.article-content .wp-block-image {
    margin: 34px 0;
}

.article-content .wp-block-image img {
    width: 100%;
    max-height: min(560px, 72vh);
    overflow: hidden;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    cursor: zoom-in;
    box-shadow: 0 14px 34px rgba(32, 35, 38, 0.07);
}

.article-content .wp-block-columns .wp-block-image img {
    max-height: 360px;
}

.article-content .wp-block-image figcaption {
    margin-top: 10px;
    color: var(--br-muted);
    font-size: 13px;
    line-height: 1.45;
}

.article-content .wp-block-columns {
    gap: 18px;
    margin: 32px 0;
}

.article-content .wp-block-columns .wp-block-image {
    margin: 0;
}

.br-verdict-box,
.br-callout,
.br-pro-con-grid > div,
.br-score-grid > div,
.br-step-list li {
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(32, 35, 38, 0.05);
}

.br-verdict-box,
.br-callout {
    margin: 28px 0;
    padding: 22px;
}

.br-verdict-box {
    border-left: 5px solid var(--br-green);
    background: #f5fbf8;
}

.br-verdict-box strong,
.br-callout strong {
    display: block;
    margin-bottom: 8px;
    color: var(--br-accent-strong);
    font-size: 17px;
}

.br-verdict-box p,
.br-callout p {
    margin: 0;
}

.br-score-grid,
.br-pro-con-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

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

.br-score-grid > div,
.br-pro-con-grid > div {
    padding: 18px;
}

.br-score-grid strong,
.br-pro-con-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--br-accent-strong);
}

.br-score-grid span {
    display: block;
    color: var(--br-muted);
}

.br-step-list {
    display: grid;
    gap: 0;
    margin: 28px 0;
    padding: 0 0 0 18px;
    border-left: 2px solid rgba(125, 52, 64, 0.16);
    counter-reset: br-step;
    list-style: none;
}

.br-step-list li {
    position: relative;
    min-height: 0;
    padding: 18px 0 18px 20px;
    border: 0;
    border-top: 1px solid rgba(230, 223, 215, 0.9);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    counter-increment: br-step;
}

.br-step-list li:first-child {
    border-top: 0;
}

.br-step-list li::before {
    content: "Step " counter(br-step);
    position: absolute;
    top: 20px;
    left: -20px;
    display: block;
    width: max-content;
    padding: 3px 0;
    background: var(--br-bg);
    color: var(--br-accent-strong);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: translateX(-50%);
}

.br-step-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.25;
}

.content-faq {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--br-line);
}

.content-faq .eyebrow {
    margin: 0 0 8px;
}

.product-detail .article-content .content-faq .eyebrow {
    margin: 0 0 8px;
}

.content-faq h2 {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.12;
}

.product-detail .article-content .content-faq h2 {
    margin: 0 0 16px;
    padding-top: 0;
}

.content-faq__items {
    display: grid;
    gap: 10px;
}

.content-faq__item {
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(32, 35, 38, 0.05);
}

.content-faq__item summary {
    position: relative;
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 16px 46px 16px 18px;
    color: var(--br-ink);
    font-weight: 850;
    line-height: 1.25;
    cursor: pointer;
    list-style: none;
}

.content-faq__item summary::-webkit-details-marker {
    display: none;
}

.content-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    color: var(--br-accent-strong);
    font-size: 22px;
    line-height: 1;
}

.content-faq__item[open] summary::after {
    content: "-";
}

.content-faq__item p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--br-muted);
}

.image-preview-dialog {
    width: min(1120px, calc(100vw - 32px));
    max-width: none;
    max-height: calc(100vh - 32px);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: transparent;
}

.image-preview-dialog::backdrop {
    background: rgba(32, 35, 38, 0.72);
    backdrop-filter: blur(8px);
}

.image-preview-dialog__inner {
    position: relative;
    display: grid;
    max-height: calc(100vh - 32px);
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.image-preview-dialog img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 84px);
    justify-self: center;
    border-radius: 6px;
    object-fit: contain;
}

.image-preview-dialog__close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(32, 35, 38, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--br-ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(32, 35, 38, 0.14);
}

.beauty-product-card {
    display: grid;
    grid-template-columns: 172px minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    margin: 32px 0;
    padding: 18px;
    border: 1px solid rgba(40, 105, 94, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(244, 238, 231, 0.88), rgba(255, 255, 255, 0.98) 46%),
        #fff;
    box-shadow: 0 18px 42px rgba(32, 35, 38, 0.1);
}

.article-content > .beauty-product-card:has(+ .content-faq) {
    margin-bottom: 12px;
}

.beauty-product-card__image {
    position: relative;
    display: grid;
    align-self: start;
    width: 100%;
    min-width: 0;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #eee9e4;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.beauty-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beauty-product-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(32, 35, 38, 0.08);
    border-radius: inherit;
    pointer-events: none;
}

.beauty-product-card__image-fallback {
    display: grid;
    min-height: 100%;
    align-content: space-between;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(40, 105, 94, 0.92), rgba(49, 93, 124, 0.84)),
        var(--br-green);
}

.beauty-product-card__image-fallback span {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.beauty-product-card__image-fallback strong {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.beauty-product-card__body {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
}

.beauty-product-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.beauty-product-card__label {
    margin: 0;
    color: var(--br-green);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.beauty-product-card h3 {
    margin: 0;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.08;
}

.beauty-product-card__brand {
    margin: -4px 0 0;
    color: var(--br-muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.3;
}

.beauty-product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.beauty-product-card__tags li {
    max-width: 100%;
    padding: 6px 10px;
    border: 1px solid rgba(40, 105, 94, 0.14);
    border-radius: 999px;
    background: rgba(40, 105, 94, 0.08);
    color: var(--br-green);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.beauty-product-card__reason {
    margin: 2px 0 0;
    color: var(--br-ink);
    font-size: 15px;
    line-height: 1.55;
}

.beauty-product-card__actions {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.beauty-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 6px;
    background: var(--br-accent);
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(178, 79, 92, 0.22);
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.beauty-product-card__button::after {
    content: none;
}

.beauty-product-card__button:hover {
    background: var(--br-accent-strong);
    box-shadow: 0 12px 26px rgba(125, 52, 64, 0.24);
    transform: translateY(-1px);
}

.article-content > .beauty-product-card--standard:has(+ .beauty-product-card--standard),
.article-content > .beauty-product-card--standard + .beauty-product-card--standard {
    display: inline-grid;
    width: calc(50% - 16px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 12px 30px 0;
    padding: 14px;
    vertical-align: top;
}

.article-content > .beauty-product-card--standard + .beauty-product-card--standard {
    margin-right: 0;
}

.article-content > .beauty-product-card--standard:has(+ .beauty-product-card--standard) .beauty-product-card__image,
.article-content > .beauty-product-card--standard + .beauty-product-card--standard .beauty-product-card__image {
    aspect-ratio: 16 / 9;
}

.article-content > .beauty-product-card--standard:has(+ .beauty-product-card--standard) .beauty-product-card__image-fallback,
.article-content > .beauty-product-card--standard + .beauty-product-card--standard .beauty-product-card__image-fallback {
    min-height: 160px;
}

.article-content > .beauty-product-card--standard:has(+ .beauty-product-card--standard) .beauty-product-card__image-fallback strong,
.article-content > .beauty-product-card--standard + .beauty-product-card--standard .beauty-product-card__image-fallback strong {
    font-size: 24px;
}

.article-content > .beauty-product-card--standard:has(+ .beauty-product-card--standard) h3,
.article-content > .beauty-product-card--standard + .beauty-product-card--standard h3 {
    font-size: 22px;
}

.article-content > .beauty-product-card--standard:has(+ .beauty-product-card--standard) .beauty-product-card__reason,
.article-content > .beauty-product-card--standard + .beauty-product-card--standard .beauty-product-card__reason {
    font-size: 14px;
}

.beauty-product-card--inline {
    grid-template-columns: 78px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    padding: 12px;
    border-color: rgba(40, 105, 94, 0.16);
    background: #fff;
    box-shadow: 0 10px 28px rgba(32, 35, 38, 0.08);
}

.beauty-product-card--inline .beauty-product-card__image {
    width: 78px;
}

.beauty-product-card--inline .beauty-product-card__body {
    gap: 5px;
}

.beauty-product-card--inline h3 {
    font-size: 18px;
    line-height: 1.15;
}

.beauty-product-card--inline .beauty-product-card__reason {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--br-muted);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.beauty-product-card__button--quiet {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(125, 52, 64, 0.18);
    background: #fff;
    color: var(--br-accent-strong);
    font-size: 13px;
    box-shadow: none;
}

.beauty-product-card__button--quiet:hover {
    background: rgba(178, 79, 92, 0.08);
    color: var(--br-accent-strong);
    box-shadow: none;
}

.beauty-product-card--note {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
    gap: 22px;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    border-color: rgba(191, 151, 88, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 249, 239, 0.94), rgba(255, 255, 255, 0.98)),
        #fff;
    box-shadow: 0 14px 34px rgba(32, 35, 38, 0.08);
}

.beauty-product-card--note .beauty-product-card__note-copy {
    display: grid;
    gap: 9px;
}

.beauty-product-card--note h3,
.beauty-product-card--note h4 {
    margin: 0;
    line-height: 1.12;
}

.beauty-product-card--note h3 {
    font-size: 24px;
}

.beauty-product-card--note h4 {
    font-size: 18px;
}

.beauty-product-card--note .beauty-product-card__reason {
    margin: 0;
    color: var(--br-muted);
}

.beauty-product-card__note-product {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(40, 105, 94, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
}

.beauty-product-card__note-product .beauty-product-card__image {
    width: 74px;
}

.beauty-product-card__note-product .beauty-product-card__image-fallback {
    padding: 9px;
}

.beauty-product-card__note-product .beauty-product-card__image-fallback span {
    display: none;
}

.beauty-product-card__note-product .beauty-product-card__image-fallback strong {
    font-size: 16px;
    line-height: 0.95;
}

.beauty-product-card__note-body {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.beauty-product-card__note-product .beauty-product-card__tags {
    margin: 0;
}

.beauty-product-card__note-product .beauty-product-card__tags li {
    font-size: 11px;
}

.beauty-product-card__note-product .beauty-product-card__button {
    justify-self: start;
}

.beauty-product-compare {
    display: grid;
    gap: 16px;
    margin: 34px 0;
    padding: 18px;
    border: 1px solid rgba(40, 105, 94, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(244, 238, 231, 0.7), rgba(255, 255, 255, 0.98) 52%),
        #fff;
    box-shadow: 0 18px 42px rgba(32, 35, 38, 0.09);
}

.beauty-product-compare__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--br-line);
}

.beauty-product-compare__label {
    margin: 0 0 4px;
    color: var(--br-green);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.beauty-product-compare__header h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.08;
}

.beauty-product-compare__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.beauty-product-compare__item {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(40, 105, 94, 0.12);
    border-radius: 8px;
    background: #fff;
}

.beauty-product-compare__image {
    position: relative;
    display: grid;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee9e4;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.beauty-product-compare__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beauty-product-compare__body {
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 14px;
}

.beauty-product-compare__body h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1.12;
}

.beauty-product-compare__body p {
    margin: 0;
    color: var(--br-muted);
    font-size: 14px;
    line-height: 1.5;
}

.topic-panel {
    display: grid;
    gap: 16px;
}

.topic-panel .eyebrow {
    margin: 0;
}

.topic-group {
    display: grid;
    gap: 8px;
}

.topic-group + .topic-group {
    margin-top: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--br-line);
}

.topic-group strong {
    color: var(--br-ink);
    font-size: 14px;
}

.topic-group div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.topic-group a {
    display: inline-flex;
    max-width: 100%;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #eaf4f0;
    color: var(--br-green);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
}

.product-detail {
    padding: 44px 0 76px;
}

.product-mobile-cta {
    display: none;
}

@keyframes br-mobile-cta-pulse {
    0%,
    100% {
        box-shadow: 0 10px 26px rgba(109, 42, 58, 0.24);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 16px 34px rgba(109, 42, 58, 0.32);
        transform: translateY(-1px);
    }
}

@keyframes br-mobile-cta-shine {
    0% {
        transform: translateX(-125%) skewX(-18deg);
    }

    100% {
        transform: translateX(260%) skewX(-18deg);
    }
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 44px;
}

.product-hero__image {
    overflow: hidden;
    border-radius: 8px;
    background: #eee9e4;
    box-shadow: var(--br-shadow);
}

.product-hero__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-hero__copy > p {
    max-width: 620px;
    color: var(--br-muted);
    font-size: 18px;
    line-height: 1.6;
}

.product-hero--scorecard {
    grid-template-areas:
        "copy image"
        "score image";
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #f7f3ee;
}

.product-hero--scorecard .product-hero__copy {
    grid-area: copy;
    align-self: end;
}

.product-hero--scorecard .product-scorecard {
    grid-area: score;
    align-self: start;
}

.product-hero--scorecard .product-hero__image {
    grid-area: image;
}

.product-hero--scorecard .product-hero__image {
    box-shadow: none;
}

.product-hero--scorecard .product-hero__image img {
    height: 100%;
    min-height: 320px;
    aspect-ratio: auto;
    object-fit: cover;
}

.product-scorecard {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    gap: 14px;
}

.product-scorecard__rating {
    display: grid;
    gap: 2px;
    align-content: center;
    min-height: 150px;
    padding: 18px;
    border: 1px solid rgba(32, 35, 38, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(32, 35, 38, 0.06);
}

.product-scorecard__rating span,
.product-scorecard__rating small {
    color: var(--br-muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-scorecard__rating strong {
    color: var(--br-accent-strong);
    font-size: 54px;
    line-height: 0.95;
}

.product-facts--scorecard {
    grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
    gap: 12px;
}

.product-facts--scorecard div {
    display: grid;
    align-content: start;
    gap: 6px;
    min-height: 0;
}

.product-facts--scorecard dd {
    color: #323b40;
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.product-facts--scorecard div:first-child dd {
    font-size: 22px;
    line-height: 1.1;
}

.product-hero--editorial {
    grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--br-shadow);
}

.product-hero--editorial.product-hero--no-image {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.product-hero--editorial .product-hero__image {
    position: relative;
    align-self: stretch;
    min-height: 0;
    border-radius: 8px;
    box-shadow: none;
}

.product-hero--editorial .product-hero__image img {
    height: 100%;
    min-height: clamp(360px, 40vw, 560px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
}

.product-hero--editorial .product-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(32, 35, 38, 0.08));
    pointer-events: none;
}

.product-hero--editorial .product-hero__copy {
    display: grid;
    align-content: center;
    padding: 18px;
}

.product-editor-note {
    margin: 2px 0 24px;
    padding: 18px;
    border: 1px solid rgba(40, 105, 94, 0.18);
    border-radius: 8px;
    background: #f5fbf8;
}

.product-editor-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--br-green);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-editor-note p {
    margin: 0;
    color: #4e5f5b;
}

.product-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 14px;
}

.product-facts--stacked {
    grid-template-columns: 1fr;
    margin: 0;
}

.product-facts--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 14px;
}

.product-facts div {
    padding: 14px;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #fff;
}

.product-facts dt {
    color: var(--br-muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.product-facts dd {
    margin: 4px 0 0;
    font-weight: 850;
}

.product-best-for {
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 1px solid rgba(109, 42, 58, 0.16);
    border-radius: 8px;
    background: #fff8f5;
}

.product-best-for--hero {
    margin-top: 0;
    padding: 14px 16px;
    border-color: rgba(32, 35, 38, 0.1);
    border-left: 3px solid rgba(40, 105, 94, 0.42);
    background: #fbfaf7;
}

.product-best-for span {
    display: block;
    margin-bottom: 8px;
    color: var(--br-accent-strong);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-best-for p {
    margin: 0;
    color: #3f4548;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.55;
}

.product-best-for--hero span {
    margin-bottom: 6px;
    color: var(--br-green);
}

.product-best-for--hero p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--br-muted);
    font-weight: 650;
    line-height: 1.45;
}

.product-best-for ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-best-for li {
    max-width: 100%;
    padding: 7px 10px;
    border: 1px solid rgba(109, 42, 58, 0.13);
    border-radius: 999px;
    background: #fff;
    color: var(--br-accent-strong);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.product-content-grid {
    grid-template-columns: minmax(0, 760px) 330px;
}

.product-detail--scorecard .product-content-grid {
    grid-template-columns: minmax(0, 1fr);
}

.product-detail--scorecard .article-content {
    max-width: none;
}

.product-detail--editorial .product-content-grid {
    grid-template-columns: minmax(0, 720px) minmax(290px, 360px);
    gap: 42px;
}

.product-verdict {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(32, 35, 38, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(32, 35, 38, 0.06);
    backdrop-filter: blur(10px);
}

.product-verdict h2,
.product-verdict h3 {
    margin-top: 0;
}

.product-verdict h2 {
    margin-bottom: 2px;
    font-size: 24px;
    line-height: 1.1;
}

.product-verdict__section {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(230, 223, 215, 0.9);
    border-radius: 8px;
    background: #fbfaf7;
}

.product-verdict__section h3 {
    margin: 0;
    color: var(--br-accent-strong);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-verdict__section p {
    margin: 0;
    color: var(--br-muted);
    font-size: 14px;
    line-height: 1.62;
}

.product-verdict--inline {
    position: static;
    display: grid;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.product-pro-con {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.product-pro-con > div {
    padding: 16px;
    border: 1px solid var(--br-line);
    border-radius: 8px;
    background: #fff;
}

.product-pro-con h3 {
    color: var(--br-accent-strong);
    font-size: 17px;
}

.product-pro-con p {
    margin: 0;
    color: var(--br-muted);
}

.reviewer-hero,
.author-profile {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.reviewer-hero .eyebrow,
.reviewer-principles .eyebrow,
.reviewer-grid-section .eyebrow,
.reviewer-card .eyebrow {
    color: #8e4a43;
}

.reviewer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.42fr);
    gap: 56px;
    align-items: end;
    padding: 76px 0 34px;
    border-bottom: 1px solid rgba(154, 77, 72, 0.16);
}

.reviewer-hero h1,
.author-profile h1 {
    max-width: 820px;
    margin: 8px 0 16px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
}

.reviewer-hero p,
.author-profile__copy > p {
    max-width: 760px;
    color: var(--br-muted);
    font-size: 19px;
}

.reviewer-hero__copy {
    display: grid;
    align-content: center;
    min-height: 360px;
    padding: 0;
}

.reviewer-hero__panel {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(154, 77, 72, 0.22);
}

.reviewer-hero__panel div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(154, 77, 72, 0.22);
}

.reviewer-hero__panel dt,
.reviewer-principles__list span,
.reviewer-card__intro > span {
    color: #9a4d48;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.reviewer-hero__panel dd {
    margin: 0;
    color: #7d3440;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3.3vw, 38px);
    font-weight: 700;
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.reviewer-principles {
    display: grid;
    width: min(1160px, calc(100% - 32px));
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: 54px;
    margin: 0 auto;
    padding: 42px 0;
    border-bottom: 1px solid rgba(154, 77, 72, 0.16);
}

.reviewer-principles__intro h2 {
    max-width: 360px;
    margin: 8px 0 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.04;
}

.reviewer-principles__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reviewer-principles__list li {
    padding: 4px 24px 4px 0;
    border-right: 1px solid rgba(154, 77, 72, 0.18);
}

.reviewer-principles__list li + li {
    padding-left: 24px;
}

.reviewer-principles__list li:last-child {
    border-right: 0;
}

.reviewer-principles__list strong {
    display: block;
    margin: 22px 0 8px;
    font-size: 19px;
    line-height: 1.12;
}

.reviewer-principles__list p {
    margin: 0;
    color: #74645c;
    line-height: 1.55;
}

.reviewer-grid-section {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 80px;
}

.reviewer-grid-heading {
    margin-bottom: 8px;
}

.reviewer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(154, 77, 72, 0.18);
}

.reviewer-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    min-height: 100%;
    padding: 34px 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid rgba(154, 77, 72, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: border-color 160ms ease;
}

.reviewer-card:hover {
    border-color: rgba(178, 79, 92, 0.32);
    box-shadow: none;
    transform: none;
}

.reviewer-card__avatar {
    position: relative;
}

.reviewer-card__avatar span,
.author-profile__avatar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eadbd4;
    color: var(--br-accent-strong);
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(125, 52, 64, 0.12);
}

.reviewer-card__avatar span {
    width: 168px;
    height: 190px;
    font-size: 34px;
}

.author-profile__avatar span {
    width: 132px;
    height: 132px;
    font-size: 34px;
}

.reviewer-card__avatar img,
.author-profile__avatar img {
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: inset 0 0 0 1px rgba(125, 52, 64, 0.12);
}

.reviewer-card__avatar img {
    width: 168px;
    height: 190px;
}

.author-profile__avatar img {
    width: 132px;
    height: 132px;
}

.reviewer-card__intro {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.reviewer-card__intro > span {
    padding-top: 8px;
    color: #c48b42;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.reviewer-card h2 {
    margin: 4px 0 10px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.1;
}

.reviewer-card h2 a {
    text-decoration: none;
}

.reviewer-card__body > p {
    max-width: 780px;
    margin: 0;
    color: var(--br-muted);
    font-size: 17px;
}

.reviewer-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: baseline;
    margin-top: 14px;
    color: #8a7b74;
    font-size: 14px;
    font-weight: 800;
}

.reviewer-card__actions span {
    color: #7a6258;
}

.reviewer-card__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 820px;
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(154, 77, 72, 0.16);
}

.reviewer-detail,
.author-profile__facts div {
    display: grid;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.reviewer-detail strong,
.author-profile__facts strong {
    color: #9a4d48;
}

.reviewer-detail span,
.author-profile__facts span {
    color: #675a54;
}

.author-profile {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 58px 0 30px;
}

.author-profile__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 840px;
}

.site-footer {
    flex-shrink: 0;
    border-top: 1px solid var(--br-line);
    background: #fff;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    color: var(--br-muted);
    font-size: 14px;
}

@media (max-width: 960px) {
    body.site-nav-open {
        overflow: hidden;
    }

    body.site-nav-open::before {
        content: "";
        position: fixed;
        inset: 70px 0 0;
        z-index: 10;
        background: rgba(32, 35, 38, 0.28);
    }

    .site-footer__inner,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header__inner {
        display: grid;
        min-height: 68px;
        grid-template-columns: minmax(0, 1fr) 42px;
        align-items: center;
        gap: 10px 14px;
        padding: 10px 0;
    }

    .site-brand-wrap,
    .site-brand {
        width: 100%;
        max-width: 100%;
    }

    .site-brand__text {
        flex: 1;
    }

    .site-description {
        overflow-wrap: anywhere;
    }

    .site-nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        z-index: 30;
        width: 100%;
    }

    .js .site-nav {
        display: none;
    }

    .site-nav-open .site-nav {
        display: block;
    }

    .site-nav ul {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 0;
        border: 1px solid rgba(230, 223, 215, 0.95);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(32, 35, 38, 0.06);
    }

    .site-nav a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 11px 12px;
        border-radius: 0;
        background: transparent;
    }

    .site-nav a:hover {
        background: rgba(247, 243, 238, 0.72);
    }

    .site-nav li {
        border-bottom: 1px solid rgba(230, 223, 215, 0.72);
    }

    .site-nav li:nth-child(2n + 1) {
        border-right: 1px solid rgba(230, 223, 215, 0.72);
    }

    .site-nav li:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .site-nav-open .site-nav-toggle__bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-nav-open .site-nav-toggle__bar:nth-child(2) {
        opacity: 0;
    }

    .site-nav-open .site-nav-toggle__bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

    .feature-layout,
    .featured-story,
    .review-method-strip__inner,
    .reviewer-teaser__inner,
    .article-hero,
    .article-body-grid,
    .product-hero,
    .product-content-grid,
    .reviewer-hero,
    .reviewer-grid,
    .author-profile,
    .not-found-hero,
    .search-hero {
        grid-template-columns: 1fr;
    }

    .search-hero {
        align-items: start;
        gap: 22px;
        padding: 42px 0 24px;
    }

    .not-found-hero {
        min-height: 0;
        gap: 28px;
        padding: 44px 0;
    }

    .not-found-card {
        max-width: 620px;
    }

    .reviewer-teaser__copy h2 {
        font-size: 42px;
    }

    .reviewer-lineup {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reviewer-hero {
        gap: 16px;
        padding-top: 34px;
    }

    .reviewer-hero__copy {
        min-height: 0;
    }

    .reviewer-hero__panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reviewer-principles {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .reviewer-principles__intro h2 {
        max-width: 640px;
    }

    .reviewer-principles__list {
        grid-template-columns: 1fr;
    }

    .reviewer-principles__list li,
    .reviewer-principles__list li + li {
        padding: 18px 0;
        border-right: 0;
        border-top: 1px solid rgba(154, 77, 72, 0.16);
    }

    .feature-layout {
        gap: 28px;
    }

    .featured-story {
        gap: 22px;
    }

    .featured-story__media,
    .featured-story__media img {
        min-height: 360px;
    }

    .method-panel {
        padding: 28px 0;
    }

    .article-sidebar,
    .product-verdict {
        position: static;
    }

    .product-hero__image {
        order: -2;
    }

    .product-hero__copy {
        order: -1;
    }

    .product-hero__image img {
        max-height: 420px;
        aspect-ratio: 16 / 9;
    }

    .product-hero--scorecard,
    .product-hero--editorial {
        gap: 24px;
    }

    .product-hero--scorecard {
        grid-template-areas:
            "image"
            "copy"
            "score";
        grid-template-columns: 1fr;
    }

    .product-hero--scorecard .product-scorecard {
        grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .product-hero--scorecard .product-facts--scorecard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-hero--scorecard .product-hero__image img,
    .product-hero--editorial .product-hero__image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
        object-fit: cover;
    }

    .product-hero--editorial .product-hero__copy {
        padding: 0 0 10px;
    }

    .product-detail--editorial .product-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-body-grid {
        gap: 24px;
    }

    .article-sidebar {
        display: contents;
    }

    .article-toc {
        order: -1;
    }

    .article-content {
        order: 0;
    }

    .topic-panel {
        order: 2;
    }

    .article-shell--ingredient-guide .article-hero,
    .article-shell--routine-guide .article-hero,
    .article-shell--product-review .article-hero,
    .article-shell--routine-guide .article-body-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .hero-carousel__slides,
    .hero-slide {
        min-height: 500px;
    }

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

    .method-scene:nth-child(2n) {
        --method-scene-offset: -4px;
    }

    .method-scene:nth-child(2n + 1) {
        --method-scene-offset: 6px;
    }

    .method-scene__crop {
        background-size: 320% auto;
    }

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

}

@media (max-width: 760px) {
    .single-beauty_product .product-detail {
        padding-bottom: calc(150px + env(safe-area-inset-bottom));
    }

    .single-beauty_product .site-footer {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .product-mobile-cta {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 40;
        display: grid;
        justify-items: center;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(32, 35, 38, 0.12);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 -12px 32px rgba(32, 35, 38, 0.12);
        backdrop-filter: blur(12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .js .product-mobile-cta {
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
    }

    .js .product-mobile-cta.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .admin-bar .product-mobile-cta {
        bottom: 0;
    }

    .product-mobile-cta__button {
        position: relative;
        overflow: hidden;
        width: calc(100vw - 32px);
        max-width: 560px;
        min-height: 50px;
        margin: 0;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--br-accent), var(--br-accent-strong));
        letter-spacing: 0.01em;
        animation: br-mobile-cta-pulse 2.6s ease-in-out infinite;
    }

    .product-mobile-cta__button::before {
        content: "";
        position: absolute;
        top: -30%;
        bottom: -30%;
        left: 0;
        width: 38%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
        animation: br-mobile-cta-shine 3.2s ease-in-out infinite;
        pointer-events: none;
    }

    .product-mobile-cta__button::after {
        content: "→";
        position: relative;
        margin-left: 8px;
        font-size: 18px;
        line-height: 1;
        transition: transform 160ms ease;
    }

    .product-mobile-cta__button span {
        position: relative;
        z-index: 1;
    }

    .product-mobile-cta__button:hover::after,
    .product-mobile-cta__button:focus-visible::after {
        transform: translateX(3px);
    }

    .product-mobile-cta__button:active {
        transform: translateY(1px);
        animation-play-state: paused;
    }

    @media (prefers-reduced-motion: reduce) {
        .product-mobile-cta__button,
        .product-mobile-cta__button::before {
            animation: none;
        }

        .product-mobile-cta__button::after {
            transition: none;
        }
    }

    .reviewer-teaser__inner {
        gap: 28px;
        padding: 44px 0;
    }

    .reviewer-lineup {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .editors-band__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 42px 0;
    }

    .editor-standards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .editor-standards__item {
        gap: 32px;
        padding: 20px;
    }

    .product-hero--scorecard,
    .product-hero--editorial {
        padding: 20px;
    }

    .product-scorecard__rating strong {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .review-method-strip__inner {
        gap: 18px;
        padding: 26px 0;
    }

    .review-method-strip h2 {
        font-size: 24px;
    }

    .method-scenes {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-block: 0;
    }

    .method-scene,
    .method-scene:nth-child(2n),
    .method-scene:nth-child(2n + 1) {
        --method-scene-offset: 0px;
        --method-scene-tilt: 0deg;
    }

    .method-scene {
        grid-template-columns: 88px minmax(0, 1fr);
        align-items: center;
        gap: 4px 12px;
        padding: 8px;
        transform: none;
    }

    .method-scene__crop {
        grid-row: 1 / span 2;
        width: 88px;
        height: 66px;
        aspect-ratio: auto;
        background-size: 360% auto;
    }

    .method-scene strong {
        align-self: end;
        font-size: 15px;
    }

    .method-scene span:not(.method-scene__crop) {
        align-self: start;
        font-size: 13px;
    }

    .not-found-hero {
        padding: 34px 0 42px;
    }

    .not-found-hero h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.03;
    }

    .not-found-hero__copy > p:not(.eyebrow) {
        font-size: 17px;
    }

    .not-found-search {
        display: grid;
        gap: 10px;
    }

    .not-found-search .button,
    .not-found-actions .button {
        width: 100%;
    }

    .not-found-actions {
        width: 100%;
    }

    .not-found-card {
        padding: 22px;
    }

    .search-hero {
        padding: 32px 0 18px;
    }

    .search-hero h1 {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.04;
    }

    .search-hero__copy > p:not(.eyebrow) {
        font-size: 17px;
    }

    .search-panel {
        padding: 14px;
    }

    .search-panel .button,
    .search-empty__links,
    .search-empty__links .button {
        width: 100%;
    }

    .search-empty {
        padding: 22px;
    }

    .product-detail {
        width: min(100% - 32px, 1160px);
        padding-top: 28px;
    }

    .article-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .article-toc {
        padding: 14px 16px;
    }

    .article-toc__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .article-toc__header .eyebrow {
        margin: 0;
    }

    .article-toc__toggle {
        display: inline-flex;
        min-height: 34px;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        border: 1px solid rgba(125, 52, 64, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.8);
        color: var(--br-accent-strong);
        font: inherit;
        font-size: 13px;
        font-weight: 850;
        line-height: 1;
        cursor: pointer;
    }

    .js .article-toc ol {
        display: none;
    }

    .js .article-toc.is-open ol {
        display: grid;
        max-height: 320px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(230, 223, 215, 0.78);
    }

    .breadcrumbs {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .breadcrumbs ol {
        flex-wrap: nowrap;
        align-items: center;
        gap: 6px;
    }

    .breadcrumbs li {
        min-width: 0;
        flex: 0 0 auto;
    }

    .breadcrumbs li:last-child {
        flex: 1 1 auto;
    }

    .breadcrumbs span[aria-current="page"] {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .article-hero h1 {
        font-size: clamp(32px, 9vw, 40px);
        line-height: 1.03;
    }

    .article-shell--ingredient-guide .article-hero,
    .article-shell--routine-guide .article-hero,
    .article-shell--product-review .article-hero {
        gap: 14px;
        padding: 14px;
    }

    .article-shell--ingredient-guide .article-hero__image,
    .article-shell--routine-guide .article-hero__image,
    .article-shell--product-review .article-hero__image {
        width: 100%;
    }

    .article-shell--ingredient-guide .article-hero__image img,
    .article-shell--routine-guide .article-hero__image img,
    .article-shell--product-review .article-hero__image img {
        width: 100%;
        height: 170px;
        max-height: none;
        aspect-ratio: auto;
    }

    .article-content .wp-block-table {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 24px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .article-content .wp-block-table table {
        width: 620px;
        min-width: 620px;
        max-width: none;
        table-layout: fixed;
    }

    .article-content th,
    .article-content td {
        padding: 12px;
        font-size: 14px;
        line-height: 1.45;
    }

    .product-detail .article-content > p:first-child {
        font-size: 17px;
        line-height: 1.66;
    }

    .product-detail .article-content h2 {
        margin-top: 1.7em;
    }

    .article-content .wp-block-image,
    .article-content .wp-block-columns {
        margin: 26px 0;
    }

    .article-content .wp-block-image img {
        max-height: 320px;
    }

    .article-content .wp-block-columns {
        display: grid;
        gap: 14px;
    }

    .article-dek {
        font-size: 17px;
    }

    .post-grid,
    .beauty-product-card,
    .product-facts {
        grid-template-columns: 1fr;
    }

    .product-hero .product-facts--compact,
    .product-scorecard .product-facts--stacked {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-hero--scorecard .product-scorecard {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    .product-hero--scorecard .product-facts--scorecard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-scorecard__rating,
    .product-facts div,
    .product-best-for,
    .product-editor-note {
        padding: 13px;
    }

    .product-scorecard__rating strong {
        font-size: 42px;
    }

    .product-scorecard .product-facts--stacked div:last-child,
    .product-best-for {
        grid-column: 1 / -1;
    }

    .article-content > .beauty-product-card--standard:has(+ .beauty-product-card--standard),
    .article-content > .beauty-product-card--standard + .beauty-product-card--standard {
        display: grid;
        width: 100%;
        margin: 24px 0;
    }

    .beauty-product-card--inline {
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
        padding: 12px;
    }

    .beauty-product-card--inline .beauty-product-card__image {
        width: 64px;
    }

    .beauty-product-card--inline .beauty-product-card__actions {
        grid-column: 1 / -1;
        margin-top: 2px;
    }

    .beauty-product-card--inline h3 {
        font-size: 17px;
    }

    .beauty-product-card--inline .beauty-product-card__reason {
        -webkit-line-clamp: 3;
    }

    .beauty-product-card--inline .beauty-product-card__button,
    .beauty-product-card--note .beauty-product-card__button,
    .beauty-product-compare .beauty-product-card__button {
        width: 100%;
    }

    .beauty-product-card--note,
    .beauty-product-card__note-product,
    .beauty-product-compare__grid {
        grid-template-columns: 1fr;
    }

    .beauty-product-card__note-product {
        align-items: start;
    }

    .beauty-product-compare {
        padding: 14px;
    }

    .beauty-product-compare__header {
        display: grid;
        gap: 4px;
    }

    .featured-review-facts,
    .method-scenes {
        grid-template-columns: 1fr;
    }

    .method-scenes {
        padding-block: 0;
    }

    .method-scene,
    .method-scene:nth-child(2n),
    .method-scene:nth-child(2n + 1) {
        --method-scene-offset: 0;
        --method-scene-tilt: 0deg;
    }

    .featured-story__media,
    .featured-story__media img {
        min-height: 280px;
    }

    .featured-story h2 {
        font-size: 32px;
        line-height: 1.05;
    }

    .featured-review-facts div,
    .featured-review-facts div:nth-child(2n),
    .featured-review-facts div:nth-last-child(-n + 2) {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid var(--br-line);
    }

    .featured-review-facts div:last-child {
        border-bottom: 0;
    }

    .product-comparison {
        grid-template-columns: 1fr;
    }

    .product-pro-con {
        grid-template-columns: 1fr;
    }

    .product-facts {
        grid-template-columns: 1fr;
    }

    .product-hero--scorecard,
    .product-hero--editorial {
        padding: 16px;
    }

    .method-scene__crop {
        aspect-ratio: 16 / 9;
        background-size: 230% auto;
    }

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

    .reviewer-hero__copy {
        padding: 0;
    }

    .reviewer-hero__panel {
        grid-template-columns: 1fr;
    }

    .reviewer-principles {
        padding: 30px 0;
    }

    .reviewer-card {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 16px;
        padding: 22px 0;
    }

    .reviewer-card__body {
        display: contents;
    }

    .reviewer-card__avatar span {
        width: 112px;
        height: 128px;
    }

    .reviewer-card__avatar img {
        width: 112px;
        height: 128px;
    }

    .reviewer-card__avatar span {
        font-size: 22px;
    }

    .reviewer-card__intro {
        grid-column: 2;
        align-self: center;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .reviewer-card__intro > span {
        padding-top: 0;
        font-size: 22px;
    }

    .reviewer-card h2 {
        margin-bottom: 0;
    }

    .reviewer-card__body > p,
    .reviewer-card__actions,
    .reviewer-card__details {
        grid-column: 1 / -1;
    }

    .reviewer-card__details {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reviewer-detail,
    .author-profile__facts div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .reviewer-teaser__copy h2 {
        font-size: 36px;
    }

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

    .editor-standards {
        grid-template-columns: 1fr;
    }

    .editor-standards__item {
        gap: 18px;
    }

    .reviewer-line {
        padding: 10px;
        transform: none;
    }

    .reviewer-line:hover {
        transform: translateY(-2px);
    }

    .br-score-grid,
    .br-pro-con-grid {
        grid-template-columns: 1fr;
    }

    .site-nav ul,
    .site-footer ul {
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-nav ul {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-nav li,
    .site-nav li:nth-child(2n + 1) {
        border-right: 0;
        border-bottom: 1px solid rgba(230, 223, 215, 0.72);
    }

    .site-nav li:last-child {
        border-bottom: 0;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.04;
    }

    .article-hero h1 {
        font-size: 40px;
    }

    .product-hero h1 {
        font-size: clamp(34px, 9vw, 40px);
        line-height: 1.04;
    }

    .product-hero {
        gap: 20px;
        margin-bottom: 30px;
    }

    .product-hero__copy > p {
        font-size: 16px;
    }

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

    .hero__content {
        padding: 42px 0 88px;
    }

    .hero__actions {
        display: grid;
        margin-bottom: 0;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero-controls {
        bottom: 28px;
        left: 50%;
    }

    .featured-story__media img {
        min-height: 260px;
    }
}
