/* =========================================================
   FMB HOMEPAGE
   Homepage-specific layout and presentation only.

   Structure
   1. Shared homepage layout + Elementor normalization
   2. Shared section typography
   3. Myth of the Week
   4. Free Tools
   5. Explore by Topic
   6. Why FMB Is Different
   7. Featured Deep Dive
   8. Latest From FMB
   9. Sources We Rely On
   10. The Weekly FMB Brief
   11. Responsive rules
   12. Reduced motion
========================================================= */


/* =========================================================
   1. SHARED HOMEPAGE LAYOUT
========================================================= */

:root {
    --fmb-home-navy: var(--fmb-navy);
    --fmb-home-navy-soft: var(--fmb-navy-soft);
    --fmb-home-gold: var(--fmb-gold);
    --fmb-home-gold-dark: var(--fmb-gold-dark);
    --fmb-home-cream: var(--fmb-cream);
    --fmb-home-cream-soft: var(--fmb-off-white);
    --fmb-home-text: var(--fmb-body);
    --fmb-home-text-soft: var(--fmb-body);
    --fmb-home-border: var(--fmb-editorial-border);
}


/* Shared full-bleed behavior, shell width, Elementor normalization,
   eyebrow labels, and section-title typography live in editorial.css.
   Homepage keeps only the measures that are unique to its compositions. */

.fmb-home-tools__heading,
.fmb-home-topics__heading,
.fmb-home-deep-dive__header > div,
.fmb-home-latest__heading {
    max-width: var(--fmb-editorial-heading-max);
}

.fmb-home-tools__description,
.fmb-home-topics__description,
.fmb-home-deep-dive__section-description,
.fmb-home-latest__description {
    max-width: 920px;
}

/* =========================================================
   3. MYTH OF THE WEEK
========================================================= */

.fmb-home-myth {
    padding: 42px 0 48px;
    background: var(--fmb-home-cream);
}


.fmb-home-myth__header {
    max-width: 820px;
    margin: 0 0 24px;
}


.fmb-home-myth__description {
    max-width: 760px;
}


.fmb-home-myth__card {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.75fr);
    align-items: stretch;
    min-height: 268px;
    overflow: hidden;
    border: 1px solid var(--fmb-home-border);
    border-radius: 2px;
    background: #ffffff;
}


.fmb-home-myth__claim {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 34px 46px 34px 52px;
    background: #ffffff;
}


.fmb-home-myth__claim::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0;
    width: 3px;
    background: var(--fmb-home-gold);
}


.fmb-home-myth__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #7b8490;
}


.fmb-home-myth__topic {
    color: var(--fmb-home-gold-dark);
}


.fmb-home-myth__meta-divider {
    opacity: 0.5;
}


.fmb-home-myth__statement {
    position: relative;
    max-width: 880px;
}


.fmb-home-myth__quote {
    position: absolute;
    z-index: 0;
    top: -17px;
    left: -5px;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: rgba(168, 130, 58, 0.13);
}


.fmb-home-myth__statement h3 {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(29px, 2.35vw, 38px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.018em;
    color: var(--fmb-home-navy);
    text-wrap: balance;
}


.fmb-home-myth__verdict {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: 34px 40px;
    background: var(--fmb-home-navy);
}


.fmb-home-myth__verdict-label {
    margin: 0 0 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--fmb-home-gold);
}


.fmb-home-myth__verdict-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin: 0 0 15px;
    padding: 0 14px;
    border: 1px solid rgba(212, 182, 120, 0.78);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fmb-home-gold);
}


.fmb-home-myth__summary {
    max-width: 500px;
    margin: 0 0 20px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.82);
    text-wrap: pretty;
}


.fmb-home-myth__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 42px;
    padding-inline: 17px;
    font-size: 13px;
    text-decoration: none;
}


.fmb-home-myth__button > span:last-child {
    transition: transform 0.18s ease;
}


.fmb-home-myth__button:hover > span:last-child {
    transform: translateX(3px);
}


/* =========================================================
   4. FREE TOOLS
========================================================= */

.fmb-home-tools {
    padding: 48px 0 54px;
    background: #ffffff;
}


.fmb-home-tools__header,
.fmb-home-latest__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin: 0 0 26px;
}


.fmb-home-tools__all,
.fmb-home-latest__all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    padding-bottom: 3px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--fmb-home-navy);
    text-decoration: none;
}


.fmb-home-tools__all > span,
.fmb-home-latest__all > span {
    color: var(--fmb-home-gold-dark);
    transition: transform 0.18s ease;
}


.fmb-home-tools__all:hover > span,
.fmb-home-latest__all:hover > span {
    transform: translateX(3px);
}


.fmb-home-tool-featured {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    min-height: 310px;
    overflow: hidden;
    border: 1px solid rgba(7, 24, 47, 0.13);
    border-radius: 2px;
    background: #fbfaf7;
}


.fmb-home-tool-featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 3px;
    background: var(--fmb-home-gold);
}


.fmb-home-tool-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 46px;
}


.fmb-home-tool-featured__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 12px;
}


.fmb-home-tool-featured__category,
.fmb-home-tool-card__category {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--fmb-home-gold-dark);
}


.fmb-home-tool-featured__title {
    max-width: 760px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(29px, 2.35vw, 38px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.018em;
    color: var(--fmb-home-navy);
    text-wrap: balance;
}


.fmb-home-tool-featured__description {
    max-width: 820px;
    margin: 13px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.62;
    color: var(--fmb-home-text);
    text-wrap: pretty;
}


.fmb-home-tool-featured__details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
}


.fmb-home-tool-featured__details span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid var(--fmb-home-border);
    border-radius: 2px;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    color: #59677a;
}


.fmb-home-tool-featured__action {
    margin-top: 22px;
}


.fmb-home-tool-featured__action .fmb-button {
    min-height: 42px;
    padding: 9px 17px;
    font-size: 13px;
}


.fmb-home-tool-featured__disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(168, 130, 58, 0.46);
    border-radius: 2px;
    background: rgba(212, 182, 120, 0.08);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #8b6b2f;
}


.fmb-home-tool-featured__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(212, 182, 120, 0.12), transparent 55%),
        var(--fmb-home-navy);
}


.fmb-home-tool-featured__visual::before {
    content: "";
    position: absolute;
    width: 205px;
    height: 205px;
    border: 1px solid rgba(212, 182, 120, 0.11);
    border-radius: 50%;
}


.fmb-home-tool-featured__visual-ring {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(212, 182, 120, 0.22);
    border-radius: 50%;
}


.fmb-home-tool-featured__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(212, 182, 120, 0.60);
    border-radius: 50%;
    color: var(--fmb-home-gold);
}


.fmb-home-tool-featured__icon svg {
    width: 32px;
    height: 32px;
}


.fmb-home-tool-featured__visual p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.57);
}


/* Tool status */

.fmb-home-tool-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    padding: 5px 9px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.fmb-home-tool-status--available {
    border: 1px solid rgba(67, 115, 76, 0.25);
    background: rgba(67, 115, 76, 0.08);
    color: #43734c;
}


.fmb-home-tool-status--development {
    border: 1px solid rgba(168, 130, 58, 0.36);
    background: rgba(212, 182, 120, 0.10);
    color: #8f6d2f;
}


.fmb-home-tool-status--coming-soon {
    border: 1px solid rgba(101, 115, 138, 0.20);
    background: rgba(101, 115, 138, 0.07);
    color: #65738a;
}


/* Secondary tool cards */

.fmb-home-tools__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}


.fmb-home-tool-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 24px 28px 22px;
    border: 1px solid var(--fmb-home-border);
    border-radius: 2px;
    background: #ffffff;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}


.fmb-home-tool-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 28px;
    width: 38px;
    height: 2px;
    background: var(--fmb-home-gold);
}


.fmb-home-tool-card--available:hover {
    border-color: rgba(168, 130, 58, 0.45);
    box-shadow: 0 10px 24px rgba(7, 24, 47, 0.07);
    transform: translateY(-2px);
}


.fmb-home-tool-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}


.fmb-home-tool-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(168, 130, 58, 0.32);
    border-radius: 50%;
    background: var(--fmb-home-cream-soft);
    color: var(--fmb-home-gold-dark);
}


.fmb-home-tool-card__icon svg {
    width: 20px;
    height: 20px;
}


.fmb-home-tool-card__title {
    margin: 6px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 1.55vw, 28px);
    line-height: 1.14;
    font-weight: 800;
    color: var(--fmb-home-navy);
    text-wrap: balance;
}


.fmb-home-tool-card__description {
    max-width: 620px;
    margin: 10px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.56;
    color: var(--fmb-home-text-soft);
    text-wrap: pretty;
}


.fmb-home-tool-card__action {
    display: flex;
    align-items: flex-end;
    flex: 1;
    margin-top: 16px;
}


.fmb-home-tool-card__action a,
.fmb-home-tool-card__action > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--fmb-home-navy);
    text-decoration: none;
}


.fmb-home-tool-card__action > span {
    color: #7b8490;
}


.fmb-home-tool-card__action a span {
    color: var(--fmb-home-gold-dark);
    transition: transform 0.18s ease;
}


.fmb-home-tool-card__action a:hover span {
    transform: translateX(3px);
}


.fmb-home-tools__note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
    padding: 13px 16px;
    border: 1px solid rgba(168, 130, 58, 0.19);
    border-radius: 2px;
    background: var(--fmb-home-cream-soft);
}


.fmb-home-tools__note-icon {
    display: flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(168, 130, 58, 0.35);
    border-radius: 50%;
    background: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--fmb-home-gold-dark);
}


.fmb-home-tools__note p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.55;
    color: var(--fmb-home-text-soft);
    text-wrap: pretty;
}


.fmb-home-tools__note strong {
    color: var(--fmb-home-navy);
}


/* =========================================================
   5. EXPLORE BY TOPIC
========================================================= */

.fmb-home-topics {
    padding: 48px 0 56px;
    background: var(--fmb-home-cream);
    color: var(--fmb-home-navy);
}


.fmb-home-topics__header {
    margin-bottom: 26px;
}


.fmb-home-topics__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}


.fmb-home-topic-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 228px;
    padding: 24px 21px 21px;
    overflow: hidden;
    border: 1px solid rgba(7, 24, 47, 0.11);
    border-radius: 2px;
    background: #ffffff;
    color: var(--fmb-home-navy);
    text-decoration: none;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}


.fmb-home-topic-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 21px;
    width: 34px;
    height: 2px;
    background: var(--fmb-home-gold);
}


.fmb-home-topic-card:hover {
    border-color: rgba(168, 130, 58, 0.46);
    box-shadow: 0 10px 26px rgba(7, 24, 47, 0.07);
    transform: translateY(-3px);
}


.fmb-home-topic-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border: 1px solid rgba(168, 130, 58, 0.30);
    border-radius: 50%;
    background: var(--fmb-home-cream-soft);
    color: var(--fmb-home-gold-dark);
}


.fmb-home-topic-card__icon svg {
    width: 21px;
    height: 21px;
}


.fmb-home-topic-card__title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 1.25vw, 22px);
    line-height: 1.16;
    font-weight: 800;
    color: var(--fmb-home-navy);
    text-wrap: balance;
}


.fmb-home-topic-card__description {
    display: -webkit-box;
    margin: 10px 0 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.55;
    color: var(--fmb-home-text-soft);
    text-wrap: pretty;
}


.fmb-home-topic-card__footer {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 17px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--fmb-home-navy);
}


.fmb-home-topic-card__arrow {
    color: var(--fmb-home-gold-dark);
    transition: transform 0.18s ease;
}


.fmb-home-topic-card:hover .fmb-home-topic-card__arrow {
    transform: translateX(3px);
}


/* =========================================================
   6. WHY FMB IS DIFFERENT
========================================================= */

.fmb-home-difference {
    padding: 58px 0 62px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(212, 182, 120, 0.06), transparent 28%),
        var(--fmb-home-navy);
    color: #ffffff;
}


.fmb-home-difference__layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 2fr);
    gap: clamp(54px, 6vw, 96px);
    align-items: center;
}


.fmb-home-difference__intro {
    max-width: 470px;
}


.fmb-home-difference__eyebrow {
    margin-bottom: 11px;
    color: var(--fmb-home-gold);
}


.fmb-home-difference__title {
    max-width: 450px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 3vw, 48px);
    line-height: 1.07;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-wrap: balance;
}


.fmb-home-difference__description {
    max-width: 455px;
    margin: 17px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.68);
    text-wrap: pretty;
}


.fmb-home-difference__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--fmb-home-gold);
    text-decoration: none;
}


.fmb-home-difference__link span {
    transition: transform 0.18s ease;
}


.fmb-home-difference__link:hover span {
    transform: translateX(4px);
}


.fmb-home-difference__principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}


.fmb-home-difference-card {
    min-width: 0;
    padding: 28px 25px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}


.fmb-home-difference-card:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}


.fmb-home-difference-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 182, 120, 0.44);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    color: var(--fmb-home-gold);
}


.fmb-home-difference-card__icon svg {
    width: 20px;
    height: 20px;
}


.fmb-home-difference-card h3 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    text-wrap: balance;
}


.fmb-home-difference-card p {
    margin: 9px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.58);
    text-wrap: pretty;
}


.fmb-home-difference::after {
    content: "";
    position: absolute;
    top: 0;
    right: 7%;
    width: 1px;
    height: 100%;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(212, 182, 120, 0.10),
            transparent
        );
    pointer-events: none;
}


/* =========================================================
   7. FEATURED DEEP DIVE
========================================================= */

.fmb-home-deep-dive {
    padding: 50px 0 34px;
    background: #ffffff;
    color: var(--fmb-home-navy);
}


.fmb-home-deep-dive__header {
    margin-bottom: 26px;
}


.fmb-home-deep-dive__card {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    min-height: 390px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--fmb-home-navy);
    box-shadow: 0 12px 32px rgba(7, 24, 47, 0.09);
}


.fmb-home-deep-dive__media {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: #e9e5dc;
}


.fmb-home-deep-dive__media > a {
    display: block;
    width: 100%;
    height: 100%;
}


.fmb-home-deep-dive__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 0.35s ease;
}


.fmb-home-deep-dive__card:hover .fmb-home-deep-dive__image {
    transform: scale(1.025);
}


.fmb-home-deep-dive__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 72%, rgba(7, 24, 47, 0.18));
}


.fmb-home-deep-dive__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 390px;
    background:
        radial-gradient(circle at center, rgba(212, 182, 120, 0.15), transparent 42%),
        linear-gradient(145deg, var(--fmb-home-navy-soft), var(--fmb-home-navy));
}


.fmb-home-deep-dive__fallback-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(212, 182, 120, 0.50);
    border-radius: 50%;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--fmb-home-gold);
}


.fmb-home-deep-dive__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 4vw, 60px);
    overflow: hidden;
}


.fmb-home-deep-dive__content::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(212, 182, 120, 0.08);
    border-radius: 50%;
    pointer-events: none;
}


.fmb-home-deep-dive__content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--fmb-home-gold);
}


.fmb-home-deep-dive__meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}


.fmb-home-deep-dive__topic {
    color: var(--fmb-home-gold);
}


.fmb-home-deep-dive__divider {
    color: rgba(255, 255, 255, 0.28);
}


.fmb-home-deep-dive__title {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 2.7vw, 46px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.022em;
    text-wrap: balance;
}


.fmb-home-deep-dive__title a {
    color: #ffffff;
    text-decoration: none;
}


.fmb-home-deep-dive__title a:hover {
    color: #f3e2ba;
}


.fmb-home-deep-dive__excerpt {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 16px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.67);
    text-wrap: pretty;
}


.fmb-home-deep-dive__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
}


.fmb-home-deep-dive__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 43px;
    padding: 10px 17px;
    border: 1px solid var(--fmb-home-gold);
    border-radius: 2px;
    background: var(--fmb-home-gold);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--fmb-home-navy);
    text-decoration: none;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}


.fmb-home-deep-dive__button:hover {
    border-color: #e1c789;
    background: #e1c789;
    transform: translateY(-1px);
}


.fmb-home-deep-dive__button span {
    transition: transform 0.18s ease;
}


.fmb-home-deep-dive__button:hover span {
    transform: translateX(3px);
}


.fmb-home-deep-dive__note {
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
}

/* =========================================================
   8. LATEST RESEARCH & GUIDES
========================================================= */

.fmb-home-latest {
    padding: 36px 0 52px;
    background: #ffffff;
}


/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */

.fmb-home-latest__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin: 0 0 26px;
}


.fmb-home-latest__heading {
    max-width: 980px;
}


.fmb-home-latest__description {
    max-width: 900px;
}


.fmb-home-latest__all {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    flex: 0 0 auto;

    padding-bottom: 4px;

    border-bottom:
        1px solid
        rgba(168, 130, 58, 0.35);

    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    color: #07182f;
    text-decoration: none;
}


.fmb-home-latest__all span {
    color: #a8823a;

    transition: transform 0.18s ease;
}


.fmb-home-latest__all:hover {
    color: #a8823a;
}


.fmb-home-latest__all:hover span {
    transform: translateX(3px);
}


/* =========================================================
   GRID
========================================================= */

.fmb-home-latest__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.fmb-home-latest-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    height: 100%;

    overflow: hidden;

    border:
        1px solid
        rgba(7, 24, 47, 0.11);

    border-radius: 2px;

    background: #ffffff;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}


.fmb-home-latest-card:hover {
    border-color:
        rgba(168, 130, 58, 0.42);

    box-shadow:
        0 10px 26px
        rgba(7, 24, 47, 0.07);

    transform: translateY(-3px);
}


/* =========================================================
   IMAGE
========================================================= */

.fmb-home-latest-card__media {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #07182f;
}


.fmb-home-latest-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.30s ease;
}


.fmb-home-latest-card:hover
.fmb-home-latest-card__image {
    transform: scale(1.025);
}


.fmb-home-latest-card__fallback {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 800;

    color: #d4b678;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 182, 120, 0.16),
            transparent 45%
        ),
        #07182f;
}


/* =========================================================
   CARD BODY
========================================================= */

.fmb-home-latest-card__body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 21px 22px 22px;
}


/* ---------------------------------------------------------
   Meta
--------------------------------------------------------- */

.fmb-home-latest-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin: 0 0 10px;

    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: #7b8490;
}


.fmb-home-latest-card__topic {
    color: #a8823a;
}


/* ---------------------------------------------------------
   Title
--------------------------------------------------------- */

.fmb-home-latest-card__title {
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(21px, 1.55vw, 27px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.015em;

    color: #07182f;

    text-wrap: balance;
}


.fmb-home-latest-card__title a {
    color: inherit;
    text-decoration: none;
}


.fmb-home-latest-card__title a:hover {
    color: #8f6d2f;
}


/* ---------------------------------------------------------
   Excerpt
--------------------------------------------------------- */

.fmb-home-latest-card__excerpt {
    display: -webkit-box;

    margin: 12px 0 0;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.58;

    color: #65738a;

    text-wrap: pretty;
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.fmb-home-latest-card__link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    align-self: flex-start;

    margin-top: auto;
    padding-top: 18px;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    color: #07182f;
    text-decoration: none;
}


.fmb-home-latest-card__link span {
    color: #a8823a;

    transition: transform 0.18s ease;
}


.fmb-home-latest-card__link:hover span {
    transform: translateX(3px);
}


/* =========================================================
   EARLY-SITE STATE
   Do not leave a tiny single card floating in a 4-column grid.
========================================================= */

.fmb-home-latest__grid:has(
    > .fmb-home-latest-card:only-child
) {
    grid-template-columns:
        minmax(0, 680px);
}


.fmb-home-latest__grid:has(
    > .fmb-home-latest-card:first-child:nth-last-child(2)
) {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

/* =========================================================
   9. SOURCES WE RELY ON
========================================================= */

.fmb-home-sources {
    padding: 38px 0 42px;

    background: var(--fmb-home-cream);

    color: var(--fmb-home-navy);
}


/* =========================================================
   LAYOUT
========================================================= */

.fmb-home-sources__layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.95fr)
        minmax(0, 3fr);

    align-items: stretch;
}


/* =========================================================
   INTRO
========================================================= */

.fmb-home-sources__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding: 4px 38px 4px 0;

    border-right:
        1px solid
        rgba(7, 24, 47, 0.12);
}


/* Eyebrow */

.fmb-home-sources__eyebrow {
    margin: 0 0 12px;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: var(--fmb-home-gold-dark);
}


/* Heading */

.fmb-home-sources__title {
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(29px, 2.35vw, 38px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.018em;

    color: var(--fmb-home-navy);

    text-wrap: balance;
}


/* Gold underline */

.fmb-home-sources__accent {
    display: block;

    width: 48px;
    height: 3px;

    margin-top: 13px;

    background: var(--fmb-home-gold-dark);
}


/* Description */

.fmb-home-sources__description {
    max-width: 410px;

    margin: 14px 0 0;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.65;

    color: var(--fmb-home-text);

    text-wrap: pretty;
}
/* =========================================================
   SOURCES — ORGANIZATION ROW
========================================================= */

.fmb-home-sources__organizations {
    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    align-items: stretch;

    min-width: 0;

    /* Remove the gap that created the double vertical line */
    padding-left: 0;
}


/* Individual organization */

.fmb-home-source-name {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    min-height: 126px;

    padding: 18px;

    text-align: center;

    /* Only separators BETWEEN organizations */
    border-right:
        1px solid
        rgba(7, 24, 47, 0.11);
}


/* Do NOT add another line beside the intro */
.fmb-home-source-name:first-child {
    border-left: none;
}


/* No unnecessary outside line at the far right */
.fmb-home-source-name:last-child {
    border-right: none;
}


.fmb-home-source-name span {
    display: block;

    max-width: 145px;

    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.015em;

    color: var(--fmb-home-navy);

    text-wrap: balance;
}
/* =========================================================
   10. THE WEEKLY FMB BRIEF
========================================================= */

.fmb-home-newsletter {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0;
    overflow: hidden !important;
    background: #07182f;
    color: #ffffff;
    box-sizing: border-box;
}

.fmb-home-newsletter *,
.fmb-home-newsletter *::before,
.fmb-home-newsletter *::after {
    box-sizing: border-box;
}


/* =========================================================
   NEWSLETTER SHELL
   Full width on desktop so the image reaches the right edge.
========================================================= */

.fmb-home-newsletter > .fmb-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   DESKTOP BANNER
   Fixed height keeps the image controlled and aligned.
========================================================= */

.fmb-home-newsletter__layout {
    display: grid;
    min-width: 0;
    max-width: 100%;
    grid-template-columns:
        minmax(300px, 0.90fr)
        minmax(560px, 1.45fr)
        minmax(330px, 0.90fr);
    align-items: stretch;
    width: 100%;
    height: 310px;
    min-height: 310px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 182, 120, 0.18);
    border-bottom: 1px solid rgba(212, 182, 120, 0.18);
}

.fmb-home-newsletter__layout--no-image {
    grid-template-columns:
        minmax(320px, 0.95fr)
        minmax(620px, 1.55fr);
}


/* =========================================================
   LEFT: EDITORIAL COPY
========================================================= */

.fmb-home-newsletter__content,
.fmb-home-newsletter__form-column,
.fmb-home-newsletter__form-panel,
.fmb-home-newsletter__media {
    min-width: 0;
    max-width: 100%;
}

.fmb-home-newsletter__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    height: 100%;
    padding:
        36px
        clamp(28px, 3vw, 44px)
        36px
        max(4vw, calc((100vw - 1440px) / 2));
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.fmb-home-newsletter__eyebrow {
    gap: 12px;
    margin-bottom: 13px;
    color: var(--fmb-home-gold);
}


.fmb-home-newsletter__title {
    max-width: 430px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(31px, 2.35vw, 40px);
    line-height: 1.07;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-wrap: balance;
}

.fmb-home-newsletter__description {
    max-width: 430px;
    margin: 13px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    text-wrap: pretty;
}


/* =========================================================
   CENTER: FORM COLUMN
========================================================= */

.fmb-home-newsletter__form-column {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 100%;
    padding: 26px 30px;
}

.fmb-home-newsletter__form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 720px;
    min-width: 0;
    padding: 24px 26px 22px;
    border: 1px solid rgba(212, 182, 120, 0.34);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.018);
}


/* =========================================================
   RESET BREVO PRESENTATION
========================================================= */

.fmb-home-newsletter .sib-form,
.fmb-home-newsletter .sib-form-container,
.fmb-home-newsletter .sib-container--medium,
.fmb-home-newsletter .sib-container--horizontal,
.fmb-home-newsletter .sib-input,
.fmb-home-newsletter .sib-form-block,
.fmb-home-newsletter .form__entry,
.fmb-home-newsletter .form__label-row,
.fmb-home-newsletter .entry__field {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}


/* =========================================================
   FORM ROW
========================================================= */

.fmb-home-newsletter__fields {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        220px;
    align-items: start;
    gap: 12px;
}

.fmb-home-newsletter__email-wrap,
.fmb-home-newsletter__button-wrap {
    min-width: 0;
}


/* =========================================================
   EMAIL INPUT
========================================================= */

.fmb-home-newsletter input#EMAIL,
.fmb-home-newsletter__email {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0 18px !important;
    border: 1px solid #d8dde5 !important;
    border-radius: 2px !important;
    outline: 0;
    background: #ffffff !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #07182f !important;
    -webkit-text-fill-color: #07182f !important;
    caret-color: #07182f !important;
    opacity: 1 !important;
    box-shadow: none !important;
    appearance: none;
}

.fmb-home-newsletter input#EMAIL::placeholder,
.fmb-home-newsletter__email::placeholder {
    font-family: "Inter", sans-serif !important;
    color: #778397 !important;
    -webkit-text-fill-color: #778397 !important;
    opacity: 1 !important;
}

.fmb-home-newsletter input#EMAIL:focus,
.fmb-home-newsletter__email:focus {
    border-color: var(--fmb-home-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 182, 120, 0.13) !important;
}

.fmb-home-newsletter input#EMAIL:-webkit-autofill,
.fmb-home-newsletter input#EMAIL:-webkit-autofill:hover,
.fmb-home-newsletter input#EMAIL:-webkit-autofill:focus {
    -webkit-text-fill-color: #07182f !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    transition: background-color 9999s ease-out;
}


/* =========================================================
   NEWSLETTER BUTTON
========================================================= */

.fmb-home-newsletter__button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100% !important;
    min-width: 0;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0 20px !important;
    border: 1px solid var(--fmb-home-gold) !important;
    border-radius: 2px !important;
    background: var(--fmb-home-gold) !important;
    cursor: pointer;
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    white-space: nowrap;
    color: #07182f !important;
    -webkit-text-fill-color: #07182f !important;
    box-shadow: none !important;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.fmb-home-newsletter__button:hover {
    border-color: #e2c98e !important;
    background: #e2c98e !important;
    transform: translateY(-1px);
}

.fmb-home-newsletter__button-text {
    display: inline-block;
}

.fmb-home-newsletter__arrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #07182f;
    transition: transform 0.18s ease;
}

.fmb-home-newsletter__button:hover .fmb-home-newsletter__arrow {
    transform: translateX(3px);
}

/* Hide Brevo's circular loading icon so it never appears as a stray symbol. */
.fmb-home-newsletter .progress-indicator__icon,
.fmb-home-newsletter .sib-hide-loader-icon {
    display: none !important;
}


/* =========================================================
   PRIVACY / SUPPORTING COPY
========================================================= */

.fmb-home-newsletter__privacy {
    margin: 14px 0 0 !important;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    text-wrap: pretty;
}


/* =========================================================
   BREVO STATUS MESSAGES
========================================================= */

/* Hidden until Brevo activates one of the panels. */
.fmb-home-newsletter .sib-form-message-panel {
    display: none;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border-radius: 3px !important;
    font-family: "Inter", sans-serif !important;
    text-align: left !important;
}

/* Brevo active-class state. */
.fmb-home-newsletter
.sib-form-message-panel.sib-form-message-panel--active {
    display: block !important;
}

/* Brevo inline-display fallbacks. */
.fmb-home-newsletter
.sib-form-message-panel[style*="display: block"],
.fmb-home-newsletter
.sib-form-message-panel[style*="display:block"],
.fmb-home-newsletter
.sib-form-message-panel[style*="display: flex"],
.fmb-home-newsletter
.sib-form-message-panel[style*="display:flex"] {
    display: block !important;
}

.fmb-home-newsletter .sib-form-message-panel__text {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 11px 13px !important;
    text-align: left !important;
}

.fmb-home-newsletter__message-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.fmb-home-newsletter__message-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.fmb-home-newsletter .sib-form-message-panel__inner-text {
    display: block;
    margin: 0 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
}

.fmb-home-newsletter__message--success {
    border: 1px solid rgba(212, 182, 120, 0.46) !important;
    background: rgba(212, 182, 120, 0.08) !important;
    color: #ffffff !important;
}

.fmb-home-newsletter__message--success
.fmb-home-newsletter__message-icon {
    color: var(--fmb-home-gold);
}

.fmb-home-newsletter__message--error {
    border: 1px solid rgba(229, 126, 126, 0.42) !important;
    background: rgba(160, 45, 45, 0.16) !important;
    color: #ffe1e1 !important;
}

.fmb-home-newsletter__message--error
.fmb-home-newsletter__message-icon {
    color: #ef9e9e;
}

.fmb-home-newsletter__field-error {
    display: block;
    margin: 6px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    font-family: "Inter", sans-serif !important;
    font-size: 10px !important;
    line-height: 1.4 !important;
    color: #ffd7d7 !important;
}


/* =========================================================
   RIGHT: FIXED IMAGE PANEL
   The image is always cropped into this rectangle.
========================================================= */

.fmb-home-newsletter__media {
    position: relative;
    align-self: stretch;
    width: 100% !important;
    height: 310px !important;
    min-height: 310px !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    background-color: #0b1b2e;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.fmb-home-newsletter__media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 35px;
    background:
        linear-gradient(
            90deg,
            rgba(7, 24, 47, 0.15),
            transparent
        );
    pointer-events: none;
}


/* =========================================================
   BREVO HONEYPOT
========================================================= */

.fmb-home-newsletter .input--hidden {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* =========================================================
   NEWSLETTER: SMALL DESKTOP
========================================================= */

@media (max-width: 1180px) {

    .fmb-home-newsletter__layout {
        grid-template-columns:
            minmax(260px, 0.80fr)
            minmax(470px, 1.35fr)
            minmax(270px, 0.80fr);
        height: 300px;
        min-height: 300px;
    }

    .fmb-home-newsletter__content {
        padding: 34px 28px;
    }

    .fmb-home-newsletter__title {
        font-size: 34px;
    }

    .fmb-home-newsletter__form-column {
        padding: 22px;
    }

    .fmb-home-newsletter__form-panel {
        padding: 22px;
    }

    .fmb-home-newsletter__fields {
        grid-template-columns:
            minmax(0, 1fr)
            190px;
    }

    .fmb-home-newsletter__media {
        height: 300px;
        min-height: 300px;
    }
}


/* =========================================================
   NEWSLETTER: TABLET
   Decorative image is desktop-only. Keep copy + form aligned.
========================================================= */

@media (max-width: 1024px) {

    .fmb-home-newsletter__layout,
    .fmb-home-newsletter__layout--no-image {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .fmb-home-newsletter__media {
        display: none;
    }

    .fmb-home-newsletter__content,
    .fmb-home-newsletter__form-column {
        min-height: 280px;
    }

    .fmb-home-newsletter__content {
        padding: 32px max(4vw, 24px);
        text-align: left;
    }

    .fmb-home-newsletter__form-column {
        padding: 22px;
    }

    .fmb-home-newsletter__fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fmb-home-newsletter__button {
        width: 100% !important;
    }

    .fmb-home-newsletter__privacy {
        text-align: left;
    }
}


/* =========================================================
   NEWSLETTER: MOBILE
========================================================= */

@media (max-width: 760px) {

    .fmb-home-newsletter__layout,
    .fmb-home-newsletter__layout--no-image {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .fmb-home-newsletter__content {
        min-height: 0;
        padding: 30px max(18px, 5vw) 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .fmb-home-newsletter__eyebrow {
        font-size: 9px;
    }

    .fmb-home-newsletter__title {
        max-width: 500px;
        font-size: 31px;
    }

    .fmb-home-newsletter__description {
        font-size: 13px;
    }

    .fmb-home-newsletter__form-column {
        min-height: 0;
        padding: 0 20px 26px;
    }

    .fmb-home-newsletter__form-panel {
        max-width: none;
        padding: 19px;
    }

    .fmb-home-newsletter__fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fmb-home-newsletter__button {
        width: 100% !important;
    }

    .fmb-home-newsletter__privacy {
        text-align: left;
    }

    .fmb-home-newsletter__media {
        display: none;
    }
}


/* =========================================================
   NEWSLETTER: NARROW MOBILE
========================================================= */

@media (max-width: 420px) {

    .fmb-home-newsletter__content {
        padding-left: 17px;
        padding-right: 17px;
    }

    .fmb-home-newsletter__form-column {
        padding: 16px;
    }

    .fmb-home-newsletter__form-panel {
        padding: 16px;
    }

    .fmb-home-newsletter__title {
        font-size: 29px;
    }

}

/* =========================================================
   11. RESPONSIVE
========================================================= */

/* Small desktop / large tablet */
@media (max-width: 1280px) {

    .fmb-home-topics__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .fmb-home-topic-card {
        min-height: 216px;
    }

    .fmb-home-sources__layout {
        grid-template-columns: minmax(290px, 0.9fr) minmax(0, 2.1fr);
    }

    .fmb-home-sources__organizations {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fmb-home-source-name {
        min-height: 100px;
        border-bottom: 1px solid rgba(7, 24, 47, 0.11);
    }
}


/* Tablet */
@media (max-width: 960px) {

    .fmb-home-myth,
    .fmb-home-tools,
    .fmb-home-topics,
    .fmb-home-deep-dive,
    .fmb-home-latest {
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .fmb-home-myth__card {
        grid-template-columns: 1fr;
    }

    .fmb-home-myth__claim {
        padding: 32px 36px 34px 40px;
    }

    .fmb-home-myth__verdict {
        padding: 32px 36px;
    }

    .fmb-home-myth__summary {
        max-width: 720px;
    }

    .fmb-home-tool-featured {
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    .fmb-home-tool-featured__content {
        padding: 32px 34px;
    }

    .fmb-home-difference__layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .fmb-home-difference__intro,
    .fmb-home-difference__title,
    .fmb-home-difference__description {
        max-width: 760px;
    }

    .fmb-home-deep-dive__card {
        grid-template-columns: 1fr;
    }

    .fmb-home-deep-dive__media,
    .fmb-home-deep-dive__image,
    .fmb-home-deep-dive__fallback {
        min-height: 300px;
    }

    .fmb-home-deep-dive__media {
        max-height: 390px;
    }

    .fmb-home-latest {
        padding: 34px 0 46px;
    }

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

    .fmb-home-latest__grid:has(> .fmb-home-latest-card:only-child) {
        grid-template-columns: 1fr;
    }
}


/* Sources stack slightly earlier */
@media (max-width: 900px) {

    .fmb-home-sources {
        padding: 38px 0 42px;
    }

    .fmb-home-sources__layout {
        grid-template-columns: 1fr;
    }

    .fmb-home-sources__intro {
        max-width: 700px;
        padding: 0 0 25px;
        border-right: 0;
    }

    .fmb-home-sources__description {
        max-width: 680px;
    }

    .fmb-home-sources__organizations {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-top: 1px solid rgba(7, 24, 47, 0.11);
    }

    .fmb-home-source-name {
        min-height: 88px;
    }
}


/* Small tablet */
@media (max-width: 760px) {

    .fmb-home-tools__header,
    .fmb-home-latest__header {
        display: block;
    }

    .fmb-home-tools__all,
    .fmb-home-latest__all {
        margin-top: 16px;
    }

    .fmb-home-tool-featured {
        grid-template-columns: 1fr;
    }

    .fmb-home-tool-featured__visual {
        min-height: 190px;
    }

    .fmb-home-tools__grid {
        grid-template-columns: 1fr;
    }

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

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

    .fmb-home-difference-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .fmb-home-difference-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}


/* Mobile */
@media (max-width: 640px) {

    .fmb-home-myth,
    .fmb-home-tools,
    .fmb-home-topics,
    .fmb-home-deep-dive,
    .fmb-home-latest {
        padding-top: 36px;
        padding-bottom: 42px;
    }

    .fmb-home-difference {
        padding: 44px 0 48px;
    }

    .fmb-home-sources {
        padding: 30px 0 32px;
    }

    .fmb-home-sources__intro {
        max-width: none;
        padding: 0 0 22px;
        border-right: 0;
    }

    .fmb-home-sources__eyebrow {
        margin-bottom: 9px;
        font-size: 8px;
        letter-spacing: 0.14em;
    }

    .fmb-home-sources__title {
        font-size: 28px;
        line-height: 1.06;
    }

    .fmb-home-sources__accent {
        width: 40px;
        height: 2px;
        margin-top: 11px;
    }

    .fmb-home-sources__description {
        max-width: 100%;
        margin-top: 12px;
        font-size: 12px;
        line-height: 1.55;
    }

    .fmb-home-myth__header,
    .fmb-home-deep-dive__header {
        margin-bottom: 20px;
    }

    .fmb-home-myth__claim {
        padding: 30px 24px 32px 28px;
    }

    .fmb-home-myth__claim::before {
        top: 28px;
        bottom: 28px;
    }

    .fmb-home-myth__statement h3 {
        font-size: 28px;
    }

    .fmb-home-myth__verdict {
        padding: 30px 28px 32px;
    }

    .fmb-home-myth__button {
        width: 100%;
    }

    .fmb-home-tool-featured__content {
        padding: 29px 24px 31px;
    }

    .fmb-home-tool-featured__title {
        font-size: 28px;
    }

    .fmb-home-tool-featured__visual {
        min-height: 170px;
    }

    .fmb-home-tool-card {
        min-height: 0;
        padding: 23px 22px;
    }

    .fmb-home-tools__note {
        align-items: flex-start;
    }

    .fmb-home-difference__title {
        font-size: 32px;
    }

    .fmb-home-deep-dive__media,
    .fmb-home-deep-dive__image,
    .fmb-home-deep-dive__fallback {
        min-height: 230px;
    }

    .fmb-home-deep-dive__content {
        padding: 30px 24px 32px;
    }

    .fmb-home-deep-dive__title {
        font-size: 30px;
    }

    .fmb-home-deep-dive__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .fmb-home-latest {
        padding: 32px 0 40px;
    }

    .fmb-home-latest__header {
        display: block;
        margin-bottom: 20px;
    }

    .fmb-home-latest__all {
        margin-top: 16px;
    }

    .fmb-home-latest__grid,
    .fmb-home-latest__grid:has(> .fmb-home-latest-card:first-child:nth-last-child(2)) {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fmb-home-latest-card__body {
        padding: 20px;
    }

    .fmb-home-latest-card__title {
        font-size: 24px;
    }

    .fmb-home-sources__organizations {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0;
        border-top: 1px solid rgba(7, 24, 47, 0.11);
        border-left: 1px solid rgba(7, 24, 47, 0.11);
    }

    .fmb-home-source-name,
    .fmb-home-source-name:first-child,
    .fmb-home-source-name:last-child {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 68px;
        padding: 12px 10px;
        border: 0;
        border-right: 1px solid rgba(7, 24, 47, 0.11);
        border-bottom: 1px solid rgba(7, 24, 47, 0.11);
        text-align: center;
    }

    .fmb-home-source-name span {
        max-width: 150px;
        font-size: 17px;
        line-height: 1.05;
    }
}


/* Narrow mobile */
@media (max-width: 520px) {

    .fmb-home-topics__grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .fmb-home-topic-card {
        min-height: 0;
        padding: 22px 21px;
    }

    .fmb-home-topic-card__description {
        -webkit-line-clamp: 3;
    }

    .fmb-home-difference__principles {
        grid-template-columns: 1fr;
    }

    .fmb-home-difference-card,
    .fmb-home-difference-card:first-child {
        padding: 23px 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.13);
        border-right: 1px solid rgba(255, 255, 255, 0.13);
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .fmb-home-difference-card:last-child {
        border-bottom: 0;
    }

    .fmb-home-difference-card__icon {
        margin-bottom: 14px;
    }
}


/* Very small mobile */
@media (max-width: 340px) {

    .fmb-home-sources__organizations {
        grid-template-columns: 1fr;
    }

    .fmb-home-source-name,
    .fmb-home-source-name:first-child,
    .fmb-home-source-name:last-child {
        min-height: 58px;
    }

    .fmb-home-source-name span {
        font-size: 16px;
    }
}


/* =========================================================
   12. REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {

    .fmb-home-myth__button > span:last-child,
    .fmb-home-tools__all > span,
    .fmb-home-tool-card,
    .fmb-home-tool-card__action a span,
    .fmb-home-topic-card,
    .fmb-home-topic-card__arrow,
    .fmb-home-difference__link span,
    .fmb-home-deep-dive__image,
    .fmb-home-deep-dive__button,
    .fmb-home-deep-dive__button span,
    .fmb-home-latest__all > span,
    .fmb-home-latest-card,
    .fmb-home-latest-card__image,
    .fmb-home-latest-card__link span,
    .fmb-home-newsletter__button,
    .fmb-home-newsletter__arrow {
        transition: none;
    }

    .fmb-home-tool-card--available:hover,
    .fmb-home-topic-card:hover,
    .fmb-home-deep-dive__button:hover,
    .fmb-home-latest-card:hover,
    .fmb-home-newsletter__button:hover {
        transform: none;
    }

    .fmb-home-deep-dive__card:hover .fmb-home-deep-dive__image,
    .fmb-home-latest-card:hover .fmb-home-latest-card__image {
        transform: none;
    }
}

/* =========================================================
   FMB TOOL CARD CTA — SITEWIDE TOOL PATTERN
   ========================================================= */
.fmb-home-tool-card__action {
    align-items: stretch;
    width: 100%;
}

.fmb-home-tool-card__action a {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--fmb-home-gold-dark);
    border-radius: 4px;
    background: #fff;
    color: var(--fmb-home-navy);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.fmb-home-tool-card__action a span {
    color: currentColor;
}

.fmb-home-tool-card__action a:hover,
.fmb-home-tool-card__action a:focus-visible {
    border-color: var(--fmb-home-gold);
    background: var(--fmb-home-gold);
    color: var(--fmb-home-navy);
    box-shadow: 0 8px 18px rgba(7, 24, 47, .08);
    transform: translateY(-1px);
}
