/* ══════════════════════════════════════════
       HERO / BANNER
        ══════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 516px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 94px var(--section-x);
    gap: 32px;
    overflow: hidden;
    background-image: var(--hero-bg);
    background-color: #0B1F3B;
    background-repeat: no-repeat;
    background-position: 0px -139.868px;
    background-size: 100% 187.477%;
}

.hero-section__bg {
    position: absolute;
    inset: 0;
}

.hero-section__bg-img {
    position: absolute;
    inset: 0;
}

.hero-section__bg-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-section__bg-color {
    position: absolute;
    inset: 0;
    background-color: #0b1f3b;
    opacity: 0.75;
}

.hero-section>* {
    position: relative;
    z-index: 1;
}

.hero-section__heading {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 700;
    color: var(--color-bg);
    line-height: 1.15;
    margin: 0;
}

.hero-section__subheading {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    max-width: 908px;
    margin: 0 auto;
    line-height: 1.35;
}

/* Search bar */
.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    width: 100%;
    max-width: 736px;
}

.search-bar img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-jakarta);
    font-size: 16px;
    color: #3f4254;
    background: transparent;
}

.search-bar input::placeholder {
    color: #3f4254;
}

/* ══════════════════════════════════════════
       BLOGS SECTION
        ══════════════════════════════════════════ */
.blogs-section {
    padding: 40px var(--section-x);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ── Featured Article ── */
.featured-article {
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.featured-article__img-wrap {
    flex: 1;
    min-width: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.featured-article__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.featured-article__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.featured-article__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Tag badges ── */
.badge-tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-tag--gold-light {
    background-color: var(--color-gold-light);
    color: var(--color-secondary);
}

.badge-tag--blue-light {
    background-color: #dbeafe;
    color: var(--color-body);
}

.badge-tag--red-light {
    background-color: #fee2e2;
    color: var(--color-body);
}

/* ── Read-time chip ── */
.read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-body);
}

.read-time img {
    width: 16px;
    height: 16px;
}

.featured-article__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.featured-article__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
    margin: 0;
}

.featured-article__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 24px;
    margin: 0;
}

.featured-article__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Date chip ── */
.date-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-secondary);
    line-height: 20px;
}

.date-chip img {
    width: 20px;
    height: 20px;
}

.date-chip--sm {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
}

.date-chip--sm img {
    width: 18px;
    height: 18px;
}

/* ── Read-more link ── */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
    white-space: nowrap;
    transition: opacity .2s;
}

.read-more-link:hover {
    opacity: .7;
}

.read-more-link img {
    width: 18px;
    height: 18px;
}

.read-more-link--gold {
    font-weight: 600;
    color: var(--color-gold);
}

/* ============================================================
   blogs.css  —  Full Blogs Listing Page Styles
   File: css/pages/blogs.css
   ============================================================ */

/* ════════════════════════════════════════
   1. FEATURED ARTICLE
════════════════════════════════════════ */
.blogs-featured {
    padding: 40px var(--section-x);

}

.blogs-featured__inner {
    display: flex;
    gap: 30px;
    align-items: stretch;
    background-color: #f7f2ea;
    border-radius: var(--radius-md);
    padding: 24px;
}

/* Left image */
.blogs-featured__img-wrap {
    flex: 1 0 0;
    min-width: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 200px;
}

.blogs-featured__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

/* Right content */
.blogs-featured__content {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* Figma shadow on content side */
    filter: drop-shadow(0px 2px 7.5px rgba(0,0,0,0.10));
}

.blogs-featured__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogs-featured__tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 6px 12px;
    background-color: #f9e9b6;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #171a46;
    white-space: nowrap;
}

.blogs-featured__read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 16px;
}

.blogs-featured__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blogs-featured__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #171a46;
    line-height: 1.2;
    margin: 0;
}

.blogs-featured__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 24px;
    margin: 0;
}

.blogs-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-sm);
}

.blogs-featured__date {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #171a46;
    line-height: 20px;
}

.blogs-featured__read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
}

/* ════════════════════════════════════════
   2. CATEGORY FILTER NAV
════════════════════════════════════════ */
.blogs-nav {
    padding: 0 var(--section-x) 0;
}

.blogs-nav__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f7f2ea;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-pill);
    padding: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 2px;
}

.blogs-nav__bar::-webkit-scrollbar {
    display: none;
}

.blogs-nav__item {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 24px;
    cursor: pointer;
    white-space: nowrap;
}

.blogs-nav__item--active {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* ════════════════════════════════════════
   3. LATEST BLOGS SECTION
════════════════════════════════════════ */
.blogs-main {
    padding: 40px var(--section-x);
}

.blogs-main__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blogs-main__heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

/* ── Grid: 3 columns ── */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ════════════════════════════════════════
   BLOG CARD  —  Default State
════════════════════════════════════════ */
.blog-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    background-color: #f3f5f7;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    /* Keep height consistent in a row */
    align-self: stretch;
}

/* ════════════════════════════════════════
   BLOG CARD  —  Hover State (card #1 = reference)
   Cream bg + 1.5px gold border + gold title & CTA
════════════════════════════════════════ */
.blog-card:hover {
    background-color: #f7f2ea;
    border: 1.5px solid var(--color-gold);
}

.blog-card:hover .blog-card__title {
    color: var(--color-gold);
}

.blog-card:hover .blog-card__read-more span {
    color: var(--color-gold);
}

/* ── Thumbnail ── */
.blog-card__img-wrap {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

/* ── Card content area ── */
.blog-card__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Tag + read time row */
.blog-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Tag pill */
.blog-card__tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-body);
    white-space: nowrap;
}

/* Tag colour variants */
.blog-card__tag--blue   { background-color: #dbeafe; }
.blog-card__tag--yellow { background-color: #f9e9b6; }
.blog-card__tag--red    { background-color: #fee2e2; }

/* Read time */
.blog-card__time {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 6px 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 16px;
    white-space: nowrap;
}

/* Date row */
.blog-card__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    line-height: normal;
    white-space: nowrap;
}

/* Body: title + desc + CTA */
.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-card__title {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 26px;
    margin: 0;
}

.blog-card__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 24px;
    margin: 0;
}

/* Read more link */
.blog-card__read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 28px;
}

.blog-card__read-more span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

/* ════════════════════════════════════════
   PAGINATION
════════════════════════════════════════ */
.blogs-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Prev / Next buttons reuse .btn-primary, just tweak sizes */
.blogs-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.blogs-pagination__btn--prev {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid #d2d2cc;
}

.blogs-pagination__btn--next {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
}

/* Arrow icons on pagination buttons */
.blogs-pagination__btn--prev .btn-primary__arrow {
    transform: rotate(-135deg);
}

.blogs-pagination__btn--next .btn-primary__arrow {
    transform: rotate(45deg);
}

/* Page numbers row */
.blogs-pagination__numbers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 310px;
}

.blogs-pagination__num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    font-family: var(--font-jakarta);
    font-size: 16px;
    font-weight: 400;
    color: #171a46;
    cursor: pointer;
}

.blogs-pagination__num--active {
    background-color: #f7f2ea;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .blogs-featured,
    .blogs-nav,
    .blogs-main {
        padding-left: 40px;
        padding-right: 40px;
    }

    .blogs-featured__title {
        font-size: 28px;
    }

    .blogs-main__heading {
        font-size: 34px;
    }

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

    .blogs-nav__bar {
        justify-content: flex-start;
    }

    .blogs-pagination__numbers {
        width: auto;
        gap: 4px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .blogs-featured,
    .blogs-nav,
    .blogs-main {
        padding-left: 24px;
        padding-right: 24px;
    }

    .blogs-featured {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .blogs-featured__inner {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }

    .blogs-featured__img-wrap {
        min-height: 200px;
    }

    .blogs-featured__title {
        font-size: 22px;
    }

    .blogs-featured__desc {
        font-size: 15px;
    }

    .blogs-main__heading {
        font-size: 26px;
    }

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

    .blogs-pagination {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .blogs-pagination__numbers {
        width: 100%;
        max-width: 310px;
        justify-content: center;
        gap: 4px;
    }

    .blogs-pagination__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   svc-grid-section  —  Our Services (4 × 2 Card Grid)
   File: css/pages/services.css  (append to existing file)
   ============================================================ */

/* ── Section wrapper ── */
.svc-grid-section {
    background-color: #f7f6f3;
    padding: 80px var(--section-x);
}

.svc-grid-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* ════════════════════════════════════════
   HEADER BLOCK
════════════════════════════════════════ */
.svc-grid-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.svc-grid-section__title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin: 0;
}

.svc-grid-section__title--gold {
    color: var(--color-gold);
}

.svc-grid-section__subtitle {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    color: #0f2447;
    line-height: 24px;
    margin: 0;
    max-width: 740px;
}

/* ════════════════════════════════════════
   CARDS GRID  —  4 columns × 2 rows
════════════════════════════════════════ */
.svc-grid-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
}

/* ════════════════════════════════════════
   SERVICE CARD  —  Default State
════════════════════════════════════════ */
.svc-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    background-color: var(--color-white);
    border: 1px solid #f7f2ea;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    /* Equal height within each row */
    min-height: 290px;
}

/* ════════════════════════════════════════
   SERVICE CARD  —  Hover State
   (taken exactly from "Business Insurance" hover card in Figma)
   border-color → 1.5px gold  |  box-shadow lift
════════════════════════════════════════ */
.svc-card:hover {
    border: 1.5px solid var(--color-gold);
    box-shadow: 0px 6px 12px 0px rgba(10, 18, 41, 0.10);
}

/* ── Top content group ── */
.svc-card__top {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

/* Icon square — cream bg */
.svc-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 2px;
    background-color: #f7f3e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title */
.svc-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 26px;
    margin: 0;
}

/* Description */
.svc-card__desc {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    color: #0f2447;
    line-height: 24px;
    margin: 0;
}

/* ── CTA row ── */
.svc-card__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.svc-card__cta span:first-child {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.1px;
    white-space: nowrap;
}

/* Arrow — rotated 45deg to become northeast arrow */
.svc-card__cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    font-size: 14px;
    color: var(--color-gold);
    line-height: 1;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet — 2 columns */
@media (max-width: 1024px) {
    .svc-grid-section {
        padding: 60px 40px;
    }

    .svc-grid-section__title {
        font-size: 34px;
    }

    .svc-grid-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .svc-card {
        min-height: auto;
    }
}

/* Mobile — 1 column */
@media (max-width: 767px) {
    .svc-grid-section {
        padding: 48px 24px;
    }

    .svc-grid-section__title {
        font-size: 26px;
    }

    .svc-grid-section__subtitle {
        font-size: 15px;
    }

    .svc-grid-section__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-card {
        min-height: auto;
    }
}

/* ── blog-hero ── */

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 94px var(--section-x);
    border-radius: 0 0 50px 50px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

    /* Base: solid dark navy */
    background-color: #0b1f3b;

    /* Layered: radial gold-to-dark gradient at 20% opacity, then solid navy */
    background-image:
        radial-gradient(
            ellipse at 76% 31%,
            rgba(201, 167, 92, 1)   0%,
            rgba(151, 125, 69, 1)   7.7%,
            rgba(101, 84, 46, 1)    15.4%,
            rgba(75, 63, 35, 1)     19.3%,
            rgba(50, 42, 23, 1)     23.1%,
            rgba(25, 21, 12, 1)     27%,
            rgba(0, 0, 0, 1)        30.8%
        );
    background-blend-mode: overlay;
}

/* Pseudo overlay keeps opacity at 0.2 as per Figma */
.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            ellipse at 76% 31%,
            rgba(201, 167, 92, 1)   0%,
            rgba(151, 125, 69, 1)   7.7%,
            rgba(101, 84, 46, 1)    15.4%,
            rgba(75, 63, 35, 1)     19.3%,
            rgba(50, 42, 23, 1)     23.1%,
            rgba(25, 21, 12, 1)     27%,
            rgba(0, 0, 0, 0)        30.8%
        );
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.blog-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 987px;
    width: 100%;
    margin: 0 auto;
}

/* ── Back link ── */
.blog-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    line-height: 14px;
}

/* ── Meta row ── */
.blog-hero__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

/* Category pill */
.blog-hero__category {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #fee2e2;
    border-radius: var(--radius-pill);
    font-family: var(--font-jakarta);
    font-size: 14px;
    font-weight: 500;
    color: #171a46;
    line-height: 20px;
    white-space: nowrap;
}

/* Date */
.blog-hero__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

/* Read time */
.blog-hero__read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 6px 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 16px;
    white-space: nowrap;
}

/* ── Title ── */
.blog-hero__title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin: 0;
    width: 100%;
}

/* ── Subtitle ── */
.blog-hero__subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 24px;
    margin: 0;
    width: 100%;
}

/* ── Cover image ── */
.blog-hero__cover {
    width: 100%;
    height: 316px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.blog-hero__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .blog-hero {
        padding: 70px 40px;
        border-radius: 0 0 36px 36px;
    }

    .blog-hero__title {
        font-size: 38px;
    }

    .blog-hero__cover {
        height: 260px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .blog-hero {
        padding: 48px 24px;
        border-radius: 0 0 24px 24px;
    }

    .blog-hero__inner {
        gap: 18px;
    }

    .blog-hero__meta {
        gap: 12px;
    }

    .blog-hero__title {
        font-size: 28px;
    }

    .blog-hero__subtitle {
        font-size: 15px;
    }

    .blog-hero__cover {
        height: 200px;
    }
}

/* ── blog-body ── */

.blog-body {
    background-color: var(--color-white);
    padding: 40px var(--section-x);
}

.blog-body__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* ════════════════════════════════════════
   LEFT — Article Content
════════════════════════════════════════ */
.blog-body__content {
    flex: 0 0 750px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

/* Article H1 */
.blog-body__article-title {
    font-family: var(--font-ui);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 36px;
    margin: 0;
    width: 100%;
}

/* Gold section headings */
.blog-body__section-heading {
    font-family: var(--font-jakarta);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 32px;
    margin: 0;
    width: 100%;
}

/* Body text paragraphs */
.blog-body__text {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    font-family: var(--font-jakarta);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 26px;
}

.blog-body__text p {
    margin: 0 0 26px 0;
}

.blog-body__text p:last-child {
    margin-bottom: 0;
}

/* Bullet list */
.blog-body__list {
    width: 100%;
    padding-left: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: var(--font-jakarta);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 0;
    list-style: disc;
}

.blog-body__list li {
    line-height: 24px;
    margin-bottom: 24px;
}

.blog-body__list li:last-child {
    margin-bottom: 0;
}

/* ── Share bar ── */
.blog-body__share-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    padding: 10px;
    width: 100%;
}

.blog-body__share-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-jakarta);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.blog-body__share-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 101px;
}

.blog-body__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Divider ── */
.blog-body__divider {
    width: 100%;
    border: none;
    border-top: 1px solid #e0e5ea;
    margin: 0;
}

/* ── Footer: disclaimer + contact ── */
.blog-body__footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.blog-body__disclaimer {
    font-family: var(--font-jakarta);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 24px;
    margin: 0;
    width: 100%;
}

.blog-body__contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.blog-body__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    text-decoration: none;
    font-family: var(--font-nunito);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

/* ════════════════════════════════════════
   RIGHT — Sticky Sidebar Form
════════════════════════════════════════ */
.blog-body__sidebar {
    flex: 0 0 431px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* Form card wrapper */
.blog-sidebar-form {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

/* Dark navy header */
.blog-sidebar-form__header {
    background-color: var(--color-primary);
    padding: 24px;
    display: flex;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.blog-sidebar-form__header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-sidebar-form__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 28px;
    margin: 0;
}

.blog-sidebar-form__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 24px;
    margin: 0;
}

/* White body with gold border */
.blog-sidebar-form__body {
    background-color: var(--color-white);
    border: 1px solid var(--color-gold);
    border-top: none;
    padding: 24px;
    border-radius: 0 0 20px 20px;
}

/* Fields stack */
.blog-sidebar-form__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Inputs */
.bsf-input {
    width: 100%;
    height: 36px;
    padding: 4px 12px;
    background-color: var(--color-white);
    border: 1px solid #e0e5ea;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 20px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.bsf-input::placeholder {
    color: #999999;
}

.bsf-input:focus {
    border-color: var(--color-body);
}

/* Select wrapper */
.bsf-select-wrap {
    position: relative;
    width: 100%;
}

.bsf-select-wrap .bsf-input {
    padding-right: 36px;
    cursor: pointer;
    color: #999999;
}

.bsf-select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Disclaimer notice */
.bsf-notice {
    width: 100%;
    background-color: #f7f6f3;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 16px;
    box-sizing: border-box;
}

.bsf-notice p {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    line-height: 16px;
    margin: 0;
}

.bsf-notice strong {
    color: var(--color-gold);
    font-weight: 700;
}

/* Submit button */
.bsf-submit {
    width: 100%;
    justify-content: center;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet: shrink columns, keep side-by-side */
@media (max-width: 1200px) {
    .blog-body {
        padding-left: 40px;
        padding-right: 40px;
    }

    .blog-body__content {
        flex: 1 1 0;
    }

    .blog-body__sidebar {
        flex: 0 0 360px;
    }
}

/* Tablet narrow: stack columns */
@media (max-width: 1024px) {
    .blog-body__inner {
        flex-direction: column;
        gap: 40px;
    }

    .blog-body__content {
        flex: unset;
        width: 100%;
    }

    .blog-body__sidebar {
        flex: unset;
        width: 100%;
        position: static;
    }

    .blog-sidebar-form {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .blog-body {
        padding: 32px 24px;
    }

    .blog-body__article-title {
        font-size: 24px;
        line-height: 30px;
    }

    .blog-body__section-heading {
        font-size: 20px;
    }

    .blog-body__share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
    }

    .blog-body__contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .blog-body__contact-item {
        font-size: 15px;
    }
}