/* BeeFixPro editorial and reviews pages
   Premium light surfaces, warm-gold accents, accessible focus states. */

:root {
    --editorial-ink: #14233a;
    --editorial-text: #526078;
    --editorial-muted: #7c879a;
    --editorial-line: #e5e8ee;
    --editorial-gold: #fdae02;
    --editorial-gold-deep: #ba7000;
    --editorial-cream: #fff9ed;
    --editorial-blue: #f3f7ff;
    --editorial-white: #ffffff;
    --editorial-shadow: 0 24px 70px rgba(18, 35, 62, .10);
}

.editorial-page {
    color: var(--editorial-text);
    background: #fff;
}

.editorial-page h1,
.editorial-page h2,
.editorial-page h3,
.editorial-page h4 {
    color: var(--editorial-ink);
    font-family: "Barlow", sans-serif;
    letter-spacing: -.035em;
}

.editorial-page a:focus-visible,
.editorial-page button:focus-visible,
.editorial-page input:focus-visible {
    outline: 3px solid rgba(253, 174, 2, .45);
    outline-offset: 4px;
}

.editorial-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--editorial-gold-deep);
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.editorial-kicker::before {
    width: 34px;
    height: 2px;
    border-radius: 99px;
    background: var(--editorial-gold);
    content: "";
}

.editorial-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .035em;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.editorial-button:hover {
    transform: translateY(-2px);
}

.editorial-button--gold {
    background: linear-gradient(135deg, #ffc94f 0%, #fdae02 100%);
    box-shadow: 0 13px 28px rgba(189, 114, 0, .20);
    color: #202531;
}

.editorial-button--gold:hover {
    box-shadow: 0 17px 34px rgba(189, 114, 0, .27);
    color: #202531;
}

.editorial-button--dark {
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.editorial-button--dark:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

/* Shared editorial hero */
.editorial-hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 196px 0 112px;
    background:
        radial-gradient(circle at 82% 18%, rgba(253, 174, 2, .26), transparent 25%),
        radial-gradient(circle at 10% 82%, rgba(85, 129, 211, .18), transparent 26%),
        linear-gradient(132deg, #0b172a 0%, #132846 55%, #0e1d33 100%);
}

.editorial-hero::before,
.editorial-hero::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.editorial-hero::before {
    top: 70px;
    right: -180px;
    width: 520px;
    height: 520px;
}

.editorial-hero::after {
    bottom: -260px;
    left: -170px;
    width: 540px;
    height: 540px;
}

.editorial-hero__content {
    position: relative;
    z-index: 2;
    max-width: 930px;
}

.editorial-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(54px, 6.1vw, 94px);
    font-weight: 850;
    line-height: .96;
}

.editorial-hero h1 em {
    color: #ffc44a;
    font-style: normal;
}

.editorial-hero__lead {
    max-width: 750px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 19px;
    line-height: 1.75;
}

.editorial-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.editorial-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 34px 0 0;
    padding: 0;
}

.editorial-hero__facts li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .83);
    font-size: 13px;
    font-weight: 650;
}

.editorial-hero__facts i {
    color: #ffc44a;
}

/* Blog directory */
.blog-directory {
    position: relative;
    overflow: hidden;
    padding: 104px 0 116px;
    background:
        radial-gradient(circle at 4% 6%, rgba(253, 174, 2, .08), transparent 21%),
        linear-gradient(180deg, #f9fbff 0%, #fff 100%);
}

.blog-directory__tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    align-items: end;
    gap: 40px;
    margin-bottom: 48px;
}

.blog-directory__tools h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.03;
}

.blog-search {
    position: relative;
}

.blog-search i {
    position: absolute;
    top: 50%;
    left: 20px;
    color: var(--editorial-gold-deep);
    transform: translateY(-50%);
}

.blog-search input {
    width: 100%;
    min-height: 58px;
    padding: 12px 18px 12px 50px;
    border: 1px solid #dde3ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(24, 44, 76, .07);
    color: var(--editorial-ink);
}

.blog-featured {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 44px;
}

.blog-featured-card {
    position: relative;
    display: grid;
    min-height: 310px;
    overflow: hidden;
    align-items: end;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    box-shadow: var(--editorial-shadow);
    color: #fff;
    isolation: isolate;
}

.blog-featured-card::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: var(--feature-image) center/cover no-repeat;
    content: "";
    transition: transform .5s ease;
}

.blog-featured-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 20, 39, .08) 0%, rgba(8, 20, 39, .92) 88%);
    content: "";
}

.blog-featured-card:hover::before {
    transform: scale(1.04);
}

.blog-featured-card:hover {
    color: #fff;
}

.blog-featured-card__category {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ffc24a;
    color: #252a33;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.blog-featured-card h3 {
    max-width: 580px;
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 2.7vw, 40px);
    font-weight: 800;
    line-height: 1.05;
}

.blog-featured-card__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 750;
}

.blog-category {
    margin-top: 28px;
    padding: 34px;
    border: 1px solid var(--editorial-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(22, 41, 73, .07);
}

.blog-category:nth-of-type(2n) {
    background: linear-gradient(145deg, #fffaf0, #fff);
}

.blog-category:nth-of-type(3n) {
    background: linear-gradient(145deg, #f3f7ff, #fff);
}

.blog-category__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.blog-category__heading h2 {
    margin: 0;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 800;
}

.blog-category__count {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(253, 174, 2, .12);
    color: #9c5f00;
    font-size: 12px;
    font-weight: 800;
}

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

.blog-card {
    display: flex;
    min-height: 120px;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid #e6e9ef;
    border-radius: 18px;
    background: #fff;
    color: var(--editorial-ink);
    box-shadow: 0 8px 20px rgba(19, 38, 66, .045);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.blog-card:hover {
    border-color: rgba(253, 174, 2, .46);
    box-shadow: 0 14px 30px rgba(19, 38, 66, .09);
    color: var(--editorial-ink);
    transform: translateY(-3px);
}

.blog-card__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(145deg, #fff8e7, #ffecbc);
    color: #a76500;
    font-size: 16px;
}

.blog-card strong {
    display: block;
    color: var(--editorial-ink);
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.25;
}

.blog-card small {
    display: block;
    margin-top: 8px;
    color: var(--editorial-muted);
    font-size: 12px;
    line-height: 1.4;
}

.blog-empty {
    display: none;
    padding: 45px;
    border: 1px dashed #d8dde7;
    border-radius: 22px;
    text-align: center;
}

/* Reviews */
.reviews-hero__stats {
    display: grid;
    max-width: 820px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 38px;
}

.reviews-hero__stat {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 17px;
    background: rgba(255, 255, 255, .06);
}

.reviews-hero__stat strong {
    display: block;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-size: 31px;
    font-weight: 850;
    line-height: 1;
}

.reviews-hero__stat span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.35;
}

.reviews-team,
.reviews-wall,
.reviews-explore {
    padding: 104px 0;
}

.reviews-team {
    background: linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.reviews-section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.reviews-section-heading h2 {
    margin: 0;
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 820;
    line-height: .98;
}

.reviews-section-heading p {
    margin: 18px 0 0;
    font-size: 17px;
    line-height: 1.7;
}

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

.reviews-team-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border: 1px solid #e4e7ed;
    border-radius: 26px;
    background: #e9edf3;
    box-shadow: 0 18px 40px rgba(20, 39, 68, .09);
}

.reviews-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .45s ease;
}

.reviews-team-card:hover img {
    transform: scale(1.035);
}

.reviews-team-card__caption {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 17px;
    background: rgba(11, 24, 43, .88);
    backdrop-filter: blur(12px);
    color: #fff;
}

.reviews-team-card__caption strong {
    display: block;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-size: 20px;
}

.reviews-team-card__caption span {
    display: block;
    margin-top: 3px;
    color: #ffc34a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.reviews-mentions {
    padding: 70px 0;
    background: #0f1d32;
}

.reviews-mentions h2 {
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
}

.reviews-mentions__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.reviews-mention {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 17px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.reviews-mention i {
    display: block;
    margin-bottom: 9px;
    color: #ffc34a;
    font-size: 18px;
}

.reviews-wall {
    background:
        radial-gradient(circle at 90% 5%, rgba(253, 174, 2, .10), transparent 20%),
        #fff;
}

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

.review-story {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--editorial-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(21, 40, 71, .07);
}

.review-story__avatar {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffd66f, #fdae02);
    color: #202733;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 850;
}

.review-story__stars {
    color: #f2a400;
    letter-spacing: .11em;
}

.review-story p {
    margin: 13px 0 18px;
    color: #3e4d63;
    font-size: 16px;
    line-height: 1.68;
}

.review-story strong {
    color: var(--editorial-ink);
    font-family: "Barlow", sans-serif;
}

.review-story small {
    display: block;
    margin-top: 2px;
    color: var(--editorial-muted);
}

.reviews-platforms {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.reviews-platform {
    display: flex;
    min-height: 94px;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 1px solid #e3e7ee;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 38, 67, .06);
}

.reviews-platform img {
    width: 100%;
    max-width: 190px;
    height: 42px;
    object-fit: contain;
}

.reviews-explore {
    background: #f4f7fc;
}

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

.reviews-explore__panel {
    padding: 34px;
    border: 1px solid #e0e5ed;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(18, 37, 65, .07);
}

.reviews-explore__panel h3 {
    margin: 0 0 20px;
    font-size: 27px;
    font-weight: 800;
}

.reviews-explore__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.reviews-explore__links a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    border: 1px solid #e6e9ef;
    border-radius: 14px;
    color: var(--editorial-ink);
    font-size: 13px;
    font-weight: 700;
}

.reviews-explore__links a:hover {
    border-color: rgba(253, 174, 2, .44);
    color: #945900;
}

/* Article */
.article-hero {
    min-height: 620px;
    padding-bottom: 92px;
}

.article-hero h1 {
    max-width: 980px;
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: 1;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 27px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
}

.article-meta i {
    color: #ffc24a;
}

.article-layout {
    padding: 92px 0 112px;
    background: #fff;
}

.article-layout__grid {
    display: grid;
    grid-template-columns: minmax(0, 780px) minmax(260px, 340px);
    align-items: start;
    justify-content: space-between;
    gap: 54px;
}

.article-prose {
    color: #46556b;
    font-size: 17px;
    line-height: 1.82;
}

.article-prose__lead {
    margin: 0 0 36px;
    padding: 27px 30px;
    border-left: 4px solid var(--editorial-gold);
    border-radius: 0 20px 20px 0;
    background: var(--editorial-cream);
    color: #29394f;
    font-size: 19px;
    font-weight: 520;
}

.article-prose h2 {
    margin: 48px 0 18px;
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.08;
}

.article-prose h3 {
    margin: 28px 0 12px;
    font-size: 25px;
    font-weight: 780;
}

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

.article-prose ul,
.article-prose ol {
    margin: 17px 0 25px;
    padding-left: 24px;
}

.article-prose li {
    margin-bottom: 11px;
}

.article-callout {
    margin: 36px 0;
    padding: 28px;
    border: 1px solid rgba(253, 174, 2, .26);
    border-radius: 22px;
    background: linear-gradient(145deg, #fffaf0, #fff);
}

.article-callout strong {
    display: block;
    margin-bottom: 7px;
    color: var(--editorial-ink);
    font-family: "Barlow", sans-serif;
    font-size: 20px;
}

.article-faq details {
    margin-top: 12px;
    border: 1px solid #e3e7ed;
    border-radius: 16px;
    background: #fff;
}

.article-faq summary {
    padding: 18px 20px;
    color: var(--editorial-ink);
    cursor: pointer;
    font-family: "Barlow", sans-serif;
    font-weight: 750;
}

.article-faq details p {
    padding: 0 20px 18px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.article-sidebar__card {
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid #e2e6ed;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(20, 40, 70, .08);
}

.article-sidebar__image {
    height: 190px;
    background: var(--article-image) center/cover no-repeat;
}

.article-sidebar__body {
    padding: 25px;
}

.article-sidebar__body h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.08;
}

.article-sidebar__body p {
    margin: 13px 0 20px;
    font-size: 14px;
    line-height: 1.6;
}

.article-sidebar__body .editorial-button {
    width: 100%;
}

.article-sidebar__links {
    padding: 23px;
    border: 1px solid #e3e7ee;
    border-radius: 22px;
    background: #f8faff;
}

.article-sidebar__links h3 {
    margin: 0 0 13px;
    font-size: 20px;
}

.article-sidebar__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid #e4e8ef;
    color: #44546b;
    font-size: 13px;
    font-weight: 650;
}

.article-sidebar__links a:last-child {
    border-bottom: 0;
}

.article-sidebar__links a:hover {
    color: #955a00;
}

.article-disclaimer {
    margin-top: 34px;
    padding-top: 23px;
    border-top: 1px solid #e4e8ef;
    color: #768196;
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 1199px) {
    .blog-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .article-layout__grid {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 34px;
    }
}

@media (max-width: 991px) {
    .editorial-hero {
        min-height: 0;
        padding: 128px 0 82px;
    }

    .editorial-hero h1 {
        font-size: clamp(46px, 8vw, 70px);
    }

    .blog-directory__tools,
    .article-layout__grid {
        grid-template-columns: 1fr;
    }

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

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

    .reviews-wall__grid,
    .reviews-explore__grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .editorial-hero {
        padding: 104px 0 68px;
    }

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

    .editorial-hero__lead {
        font-size: 17px;
        line-height: 1.65;
    }

    .editorial-hero__actions .editorial-button {
        width: 100%;
    }

    .blog-directory,
    .reviews-team,
    .reviews-wall,
    .reviews-explore,
    .article-layout {
        padding: 72px 0 80px;
    }

    .blog-featured,
    .blog-card-grid,
    .reviews-team__grid,
    .reviews-wall__grid,
    .reviews-platforms,
    .reviews-explore__links,
    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-featured-card {
        min-height: 280px;
        padding: 26px;
    }

    .blog-category {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .blog-category__heading {
        align-items: flex-start;
    }

    .blog-card {
        min-height: 108px;
    }

    .reviews-team-card {
        min-height: 420px;
    }

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

    .review-story {
        grid-template-columns: 1fr;
        padding: 23px;
    }

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

    .article-prose {
        font-size: 16px;
        line-height: 1.75;
    }

    .article-prose__lead {
        padding: 23px;
        font-size: 17px;
    }
}

@media (max-width: 430px) {
    .reviews-hero__stats,
    .reviews-mentions__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-featured-card::before,
    .blog-card,
    .reviews-team-card img,
    .editorial-button {
        transition: none;
    }
}

/* ==========================================================
   FINAL LIGHT-GOLD THEME — BLOG + CLIENT REVIEWS
   Deliberately placed last so the shared template cannot
   restore navy surfaces on these two premium landing pages.
========================================================== */
body.blog-page,
body.reviews-page {
    --editorial-ink: #30291f;
    --editorial-text: #675d4f;
    --editorial-muted: #887b69;
    --editorial-line: #ead9b7;
    --editorial-gold: #f5b323;
    --editorial-gold-deep: #956000;
    --editorial-cream: #fff9ec;
    --editorial-blue: #fff4d8;
    --editorial-shadow: 0 24px 64px rgba(137, 91, 16, .12);
    margin: 0 !important;
    padding: 0 !important;
    color: var(--editorial-text);
    background: #fffdf8;
}

/* Keep Blog flush with the top edge, including after a local-file reload. */
body.blog-page > .page-wrapper {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
}

body.blog-page > .skip-link,
body.blog-page > .custom-cursor__cursor,
body.blog-page > .custom-cursor__cursor-two {
    position: fixed !important;
}

body.blog-page #main-content,
body.blog-page .editorial-hero {
    margin-top: 0 !important;
}

body.blog-page .main-header,
body.reviews-page .main-header {
    top: 0 !important;
}

body.blog-page .editorial-hero,
body.reviews-page .editorial-hero {
    border-bottom: 1px solid #e7cd98;
    background:
        radial-gradient(circle at 82% 15%, rgba(245, 179, 35, .29), transparent 28%),
        radial-gradient(circle at 8% 88%, rgba(224, 176, 77, .17), transparent 29%),
        linear-gradient(132deg, #fffdf8 0%, #fff6e2 56%, #f7e1b0 100%) !important;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .72);
}

body.blog-page .editorial-hero::before,
body.blog-page .editorial-hero::after,
body.reviews-page .editorial-hero::before,
body.reviews-page .editorial-hero::after {
    border-color: rgba(166, 105, 0, .18);
}

body.blog-page .editorial-hero h1,
body.reviews-page .editorial-hero h1 {
    color: #2d271f !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}

body.blog-page .editorial-hero h1 em,
body.reviews-page .editorial-hero h1 em {
    color: #b87300 !important;
}

body.blog-page .editorial-hero__lead,
body.reviews-page .editorial-hero__lead {
    color: #6f6251 !important;
}

body.blog-page .editorial-kicker,
body.reviews-page .editorial-kicker {
    color: #936000;
}

body.blog-page .editorial-button--dark,
body.reviews-page .editorial-button--dark {
    border-color: #dfbd77;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 27px rgba(129, 84, 10, .09);
    color: #3a3023;
}

body.blog-page .editorial-button--dark:hover,
body.reviews-page .editorial-button--dark:hover {
    border-color: #c99b41;
    background: #fff;
    color: #815200;
}

body.blog-page .editorial-hero__facts li,
body.reviews-page .reviews-hero__stat {
    border-color: rgba(177, 119, 18, .26);
    background: rgba(255, 255, 255, .60);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
    color: #574a39;
}

body.blog-page .editorial-hero__facts i {
    color: #a96b00;
}

body.reviews-page .reviews-hero__stat strong {
    color: #30281f;
}

body.reviews-page .reviews-hero__stat span {
    color: #746653;
}

/* Warm, premium Blog directory and article cards. */
body.blog-page .blog-directory {
    background:
        radial-gradient(circle at 5% 5%, rgba(245, 179, 35, .12), transparent 23%),
        linear-gradient(180deg, #fffaf0 0%, #fffdf9 42%, #fff 100%);
}

body.blog-page .blog-search input,
body.blog-page .blog-card,
body.blog-page .blog-category {
    border-color: #ead9b7;
}

body.blog-page .blog-category,
body.blog-page .blog-category:nth-of-type(2n),
body.blog-page .blog-category:nth-of-type(3n) {
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), #fff7e5);
    box-shadow: 0 18px 46px rgba(136, 90, 15, .08);
}

body.blog-page .blog-card__icon {
    border: 1px solid #efd49d;
    background: linear-gradient(145deg, #fffdf7, #ffe8b5);
    color: #9a6200;
}

body.blog-page .blog-featured-card {
    border-color: rgba(190, 131, 28, .38);
    box-shadow: 0 24px 56px rgba(118, 78, 14, .15);
    color: #30281f;
}

body.blog-page .blog-featured-card::after {
    background: linear-gradient(180deg, rgba(255, 250, 237, .08) 0%, rgba(255, 246, 224, .72) 48%, rgba(255, 249, 237, .98) 100%);
}

body.blog-page .blog-featured-card h3 {
    color: #2e281f;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .74);
}

body.blog-page .blog-featured-card__more,
body.blog-page .blog-featured-card:hover {
    color: #7f5200;
}

/* Reviews: two centered people, champagne captions and light sections. */
body.reviews-page .reviews-team {
    background: linear-gradient(180deg, #fffdf9 0%, #fff6e4 100%);
}

body.reviews-page .reviews-team__grid {
    max-width: 900px;
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    gap: 28px;
    margin-inline: auto;
}

body.reviews-page .reviews-team-card {
    border-color: #dfc48d;
    background: #f4ead7;
    box-shadow: 0 22px 48px rgba(122, 80, 13, .14);
}

body.reviews-page .reviews-team-card__caption {
    border-color: rgba(189, 132, 34, .46);
    background: rgba(255, 249, 235, .93);
    box-shadow: 0 13px 30px rgba(105, 69, 13, .15);
    color: #30281f;
}

body.reviews-page .reviews-team-card__caption strong {
    color: #30281f;
}

body.reviews-page .reviews-team-card__caption span {
    color: #956000;
}

body.reviews-page .reviews-mentions {
    border-block: 1px solid #e5c98f;
    background:
        radial-gradient(circle at 88% 12%, rgba(245, 179, 35, .18), transparent 26%),
        linear-gradient(135deg, #fff7e5, #f7e2b5);
}

body.reviews-page .reviews-mentions h2 {
    color: #30281f;
}

body.reviews-page .reviews-mention {
    border-color: #dfc38b;
    background: rgba(255, 255, 255, .66);
    box-shadow: 0 12px 26px rgba(118, 77, 12, .08);
    color: #5d5141;
}

body.reviews-page .reviews-mention i {
    color: #a86b00;
}

body.reviews-page .reviews-wall {
    background:
        radial-gradient(circle at 90% 5%, rgba(245, 179, 35, .12), transparent 22%),
        #fffdf9;
}

body.reviews-page .review-story,
body.reviews-page .reviews-platform,
body.reviews-page .reviews-explore__panel {
    border-color: #ead8b4;
    box-shadow: 0 15px 38px rgba(126, 84, 18, .08);
}

body.reviews-page .reviews-explore {
    background: linear-gradient(180deg, #fff8e9, #fffdf9);
}

body.reviews-page .reviews-explore__links a {
    border-color: #ead9b7;
}

/* Match the cream-and-gold finish of index.html, including the footer. */
body.blog-page .site-footer.premium-footer,
body.reviews-page .site-footer.premium-footer {
    border-top-color: #e2c994;
    background: linear-gradient(180deg, #fff7e5, #f7ead0);
}

body.blog-page .premium-footer__bottom,
body.reviews-page .premium-footer__bottom {
    border-top-color: #dec28a;
}

body.blog-page .premium-footer__column h3,
body.reviews-page .premium-footer__column h3 {
    color: #352d23;
}

body.blog-page .main-menu .main-menu__list > li > a,
body.reviews-page .main-menu .main-menu__list > li > a,
body.blog-page .main-menu__call-number a,
body.reviews-page .main-menu__call-number a {
    color: #342d24;
}

@media (max-width: 767px) {
    body.reviews-page .reviews-team__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ==========================================================
   PREMIUM LIGHT-GOLD ARTICLE SYSTEM — ALL 112 BLOG GUIDES
========================================================== */
body.article-page {
    --editorial-ink: #30291f;
    --editorial-text: #675d4f;
    --editorial-muted: #887b69;
    --editorial-line: #ead9b7;
    --editorial-gold: #f5b323;
    --editorial-gold-deep: #956000;
    --editorial-cream: #fff8e9;
    --editorial-blue: #fff4d8;
    --editorial-shadow: 0 24px 64px rgba(137, 91, 16, .12);
    color: var(--editorial-text);
    background: #fffdf8;
}

body.article-page .editorial-hero {
    border-bottom: 1px solid #e5c98f;
    background:
        radial-gradient(circle at 84% 15%, rgba(245, 179, 35, .28), transparent 27%),
        radial-gradient(circle at 8% 88%, rgba(213, 158, 53, .16), transparent 29%),
        linear-gradient(132deg, #fffdf8 0%, #fff5df 56%, #f5dda9 100%) !important;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .82);
}

body.article-page .editorial-hero::before,
body.article-page .editorial-hero::after {
    border-color: rgba(158, 99, 0, .18);
}

body.article-page .editorial-kicker {
    color: #956000;
}

body.article-page .editorial-hero h1 {
    color: #2f281f !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .78);
}

body.article-page .editorial-hero__lead {
    color: #6e6150 !important;
}

body.article-page .article-meta span {
    border-color: rgba(177, 119, 18, .29);
    background: rgba(255, 255, 255, .66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88), 0 9px 21px rgba(126, 82, 11, .06);
    color: #5d5141;
}

body.article-page .article-meta i {
    color: #a66a00;
}

body.article-page .article-layout {
    background:
        radial-gradient(circle at 94% 6%, rgba(245, 179, 35, .09), transparent 21%),
        linear-gradient(180deg, #fffdf9 0%, #fff9ef 100%);
}

body.article-page .article-prose {
    color: #625747;
}

body.article-page .article-prose h2,
body.article-page .article-prose h3,
body.article-page .article-faq summary,
body.article-page .article-sidebar__body h2,
body.article-page .article-sidebar__links h3 {
    color: #30291f;
}

body.article-page .article-prose__lead {
    border: 1px solid #ead19e;
    border-left: 5px solid #e3a11c;
    background: linear-gradient(135deg, #fffaf0, #f9e7be);
    box-shadow: 0 15px 34px rgba(128, 84, 13, .08);
    color: #4e4436;
}

body.article-page .article-callout {
    border-color: #e5c78c;
    background:
        radial-gradient(circle at 95% 0%, rgba(245, 179, 35, .13), transparent 27%),
        linear-gradient(145deg, #fffdf8, #fff3d6);
    box-shadow: 0 13px 30px rgba(128, 83, 12, .07);
}

body.article-page .article-faq details {
    border-color: #ead8b4;
    background: #fffdf9;
    box-shadow: 0 8px 22px rgba(124, 82, 16, .055);
}

body.article-page .article-sidebar__card {
    border-color: #dfbd78;
    background: linear-gradient(180deg, #fff 0%, #fff8e9 100%);
    box-shadow: 0 20px 44px rgba(123, 80, 13, .13), 0 0 0 5px rgba(245, 179, 35, .055);
}

body.article-page .article-sidebar__image {
    border-bottom: 1px solid #e1c181;
}

body.article-page .article-sidebar__links {
    border-color: #dfc590;
    background:
        radial-gradient(circle at 90% 4%, rgba(245, 179, 35, .13), transparent 27%),
        linear-gradient(145deg, #fffaf0, #f7e5bd);
    box-shadow: 0 16px 34px rgba(124, 81, 13, .09);
}

body.article-page .article-sidebar__links a {
    border-bottom-color: #e1c998;
    color: #5a4d3c;
}

body.article-page .article-sidebar__links a:hover {
    color: #8c5800;
}

body.article-page .article-disclaimer {
    border-top-color: #e1c998;
    color: #887965;
}

body.article-page .site-footer.premium-footer {
    border-top-color: #e2c994;
    background: linear-gradient(180deg, #fff7e5, #f7ead0);
}

body.article-page .premium-footer__bottom {
    border-top-color: #dec28a;
}

body.article-page .premium-footer__column h3,
body.article-page .main-menu .main-menu__list > li > a,
body.article-page .main-menu__call-number a {
    color: #342d24;
}

/* More compact, index-style team showcase with a double gold contour. */
body.reviews-page .reviews-team {
    padding: 82px 0;
}

body.reviews-page .reviews-team > .container {
    position: relative;
    overflow: hidden;
    max-width: 980px;
    padding: 48px 54px 54px;
    border: 1px solid #ddb66d;
    border-radius: 36px;
    background:
        radial-gradient(circle at 94% 6%, rgba(245, 179, 35, .16), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, .98), #fff5dd);
    box-shadow: 0 27px 64px rgba(122, 79, 12, .14), inset 0 1px 0 rgba(255, 255, 255, .92);
    isolation: isolate;
}

body.reviews-page .reviews-team > .container::before {
    position: absolute;
    z-index: -1;
    inset: 10px;
    border: 1px solid rgba(210, 157, 55, .33);
    border-radius: 28px;
    content: "";
    pointer-events: none;
}

body.reviews-page .reviews-team .reviews-section-heading {
    max-width: 680px;
    margin-bottom: 32px;
}

body.reviews-page .reviews-team .reviews-section-heading h2 {
    font-size: clamp(36px, 4.1vw, 54px);
}

body.reviews-page .reviews-team__grid {
    max-width: 730px;
    grid-template-columns: repeat(2, minmax(0, 340px));
    gap: 28px;
}

body.reviews-page .reviews-team-card {
    width: 100%;
    height: 460px;
    min-height: 0;
    border: 1px solid #d5a84f;
    border-radius: 28px;
    box-shadow: 0 0 0 6px rgba(245, 179, 35, .07), 0 22px 44px rgba(112, 72, 10, .17);
}

body.reviews-page .reviews-team-card::after {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 220, 150, .50);
    border-radius: 21px;
    content: "";
    pointer-events: none;
}

body.reviews-page .reviews-team-card__caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px 16px;
}

body.reviews-page .reviews-team-card__caption strong {
    font-size: 19px;
}

@media (max-width: 767px) {
    body.reviews-page .reviews-team {
        padding: 60px 0;
    }

    body.reviews-page .reviews-team > .container {
        width: calc(100% - 24px);
        padding: 38px 22px 42px;
        border-radius: 28px;
    }

    body.reviews-page .reviews-team > .container::before {
        inset: 7px;
        border-radius: 22px;
    }

    body.reviews-page .reviews-team__grid {
        max-width: 350px;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    body.reviews-page .reviews-team-card {
        height: 420px;
    }
}
