/* ═══════════════════════════════════════════════════════════════════════════
   CAE Theme — Base Styles
   Design system colors, typography, and layout from theme.json.
   Component styles for header, footer, nav, buttons, and blocks.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Reset ───────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Custom Properties (supplement theme.json) ───────────────────────────── */

:root {
    --color-evergreen: #004F39;
    --color-brick: #B15533;
    --color-gold: #F2A518;
    --color-cream: #F7F4E2;
    --color-granite: #767769;
    --color-dark: #373436;
    --color-white: #FFFFFF;
    --color-border: #CBD4D1;
    --color-border-light: #E8E5D8;
    --color-gray-line: #C7C6C6;

    --font-body: 'Acumin Pro', sans-serif;
    --font-heading: 'Acumin Pro Condensed', sans-serif;
    --font-bookman: 'Bookman Press Sans', serif;

    --content-width: 1200px;
    --page-width: 1440px;
    --side-padding: 120px;
    --side-padding-mobile: 17px;
}

/* ─── Base Typography ─────────────────────────────────────────────────────── */

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.625;
    color: var(--color-dark);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-evergreen);
    line-height: 1.2;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.font-bookman { font-family: var(--font-bookman); }

/* ─── Layout ──────────────────────────────────────────────────────────────── */

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
}

@media (max-width: 768px) {
    .container {
        padding-left: var(--side-padding-mobile);
        padding-right: var(--side-padding-mobile);
    }
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    border-radius: 40px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.btn:hover { opacity: 0.9; }

.btn--gold {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn--green {
    background: var(--color-evergreen);
    color: var(--color-white);
}

.btn--outline-green {
    background: transparent;
    border: 2px solid var(--color-evergreen);
    color: var(--color-evergreen);
}

.btn--sm {
    padding: 8px 16px;
    font-size: 16px;
}

.btn__chevron {
    width: 16px;
    height: 16px;
}

/* ─── Header ──────────────────────────────────────────────────────────────── */

.site-header {
    width: 100%;
    background: var(--color-white);
}

.utility-bar {
    border-bottom: 1px solid var(--color-gray-line);
}

.utility-bar__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 16px var(--side-padding);
}

.utility-link {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 26px;
    border-radius: 40px;
    border: 1px solid;
    padding: 8px 16px;
    text-transform: uppercase;
}

.utility-link--green {
    color: var(--color-evergreen);
    border-color: var(--color-evergreen);
}

.utility-link--brick {
    color: var(--color-brick);
    border-color: var(--color-brick);
}

.utility-divider {
    width: 1px;
    height: 24px;
    background: var(--color-gray-line);
    margin: 0 4px;
}

.utility-icon {
    display: flex;
    align-items: center;
}

.lang-selector {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-evergreen);
    display: flex;
    align-items: center;
    gap: 4px;
}

.donate-button {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 26px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 8px 20px;
    text-transform: uppercase;
}

.main-nav {
    border-bottom: 1px solid var(--color-border-light);
}

.main-nav__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px var(--side-padding);
}

.site-logo img {
    width: 224px;
    height: 86px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 28px;
    color: var(--color-dark);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-item.current .nav-link {
    color: var(--color-evergreen);
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
    width: 100%;
}

.footer__main {
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
}

.footer__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    display: flex;
    padding: 56px var(--side-padding);
    gap: 40px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 244px;
    flex-shrink: 0;
}

.footer__brand-divider {
    width: 100%;
    height: 4px;
    background: var(--color-gold);
    margin: 8px 0;
}

.footer__social {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__social-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.footer__social-label {
    font-family: var(--font-bookman);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
}

.footer__social-handle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-granite);
    text-transform: none;
}

.footer__feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.footer__social-icons {
    display: flex;
    gap: 12px;
}

.footer__social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-evergreen);
    padding: 8px;
}

.footer__social-icons img {
    filter: brightness(0) invert(1);
}

.footer__newsletter {
    width: 410px;
    flex-shrink: 0;
    background: var(--color-cream) url('') no-repeat center / cover;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}

.footer__newsletter-label-top {
    font-family: var(--font-bookman);
    font-size: 24px;
    color: var(--color-dark);
}

.footer__newsletter-label {
    font-family: var(--font-bookman);
    font-size: 40px;
    color: var(--color-dark);
    text-transform: uppercase;
}

.footer__newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.footer__newsletter-input {
    width: 100%;
    max-width: 346px;
    height: 58px;
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    outline: none;
}

.footer__bottom {
    background: var(--color-evergreen);
}

.footer__bottom-inner {
    max-width: var(--page-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 24px var(--side-padding);
    gap: 16px;
}

.footer__ada-icon {
    flex-shrink: 0;
}

.footer__copyright {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-white);
    flex: 1;
}

.footer__credit {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-white);
}

.footer__credit a {
    color: var(--color-white);
    text-decoration: underline;
}

.footer__back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ─── Breadcrumb ──────────────────────────────────────────────────────────── */

.breadcrumb {
    padding: 40px var(--side-padding);
    max-width: var(--page-width);
    margin: 0 auto;
}

.breadcrumb a {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-granite);
}

.breadcrumb .separator {
    margin: 0 8px;
    color: var(--color-granite);
}

.breadcrumb .current {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 700;
}

/* ─── Block shared styles ─────────────────────────────────────────────────── */

.block-section {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

@media (max-width: 768px) {
    .block-section {
        padding: 0 var(--side-padding-mobile);
    }
}

/* ─── Responsive: hide/show ───────────────────────────────────────────────── */

@media (max-width: 768px) {
    .utility-bar__inner { display: none; }
    .main-nav__inner { padding: 16px var(--side-padding-mobile); }
    .nav-links { display: none; }
    .footer__inner { flex-direction: column; }
    .footer__brand { width: 100%; }
    .footer__newsletter { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA Block
   Figma source: CTA-1Button (7566:305661), CTA-2Buttons (9992:12752)
   Built forward-from-Figma 2026-04-12 by Lark.
   
   Kate-fix: Desktop layout uses flexbox percentages (52%/48%) instead of
   the original fixed 747/693px absolute widths that caused overlap in the
   1280-1440px viewport range.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Mobile-first (stacked) ─────────────────────────────────────────────── */

.cta-block {
    max-width: var(--page-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cta-block__content {
    background-color: var(--color-evergreen);
    padding: 24px var(--side-padding-mobile);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cta-block__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 579px;           /* Figma: Frame 1261152218, 579px */
}

.cta-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;                /* Figma: 20px */
    height: 20px;               /* Figma: 20px */
    flex-shrink: 0;
}

.cta-btn__icon svg {
    width: 20px;
    height: 20px;
}

.cta-block__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-block__heading {
    font-family: var(--font-bookman);
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
}

.cta-block__description {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-white);
    margin: 0;
}

.cta-block__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-block__image {
    width: 100%;
    min-height: 200px;
    background-color: #C4C4C4;
}

.cta-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-block__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--color-evergreen) 0%, #2a6b4f 100%);
}

/* ─── CTA Buttons ────────────────────────────────────────────────────────── */

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 51px;
    padding: 12px 24px 11px;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cta-btn:hover {
    opacity: 0.9;
}

.cta-btn--primary {
    background-color: var(--color-gold);
    border: none;
}

.cta-btn--outline {
    background: transparent;
    border: 1px solid var(--color-white);
}

/* ─── Tablet (768px+) ────────────────────────────────────────────────────── */

@media (min-width: 768px) {
    .cta-block__content {
        padding: 32px 40px;
        gap: 30px;
    }

    .cta-block__buttons {
        flex-direction: row;
        gap: 40px;
    }

    .cta-block__image {
        min-height: 260px;
    }
}

/* ─── Desktop (1024px+) — side-by-side layout ────────────────────────────── */

@media (min-width: 1024px) {
    .cta-block {
        flex-direction: row;
        min-height: 351px;
    }

    .cta-block__content {
        flex: 0 0 52%;          /* Figma: 747/1440 ≈ 52% */
        padding: 48px 40px 48px var(--side-padding);
        justify-content: center;
        gap: 40px;
    }

    .cta-block__inner {
        max-width: 579px;       /* Figma: Frame 1261152218 */
        gap: 40px;              /* Figma: 40px between content and button */
    }

    .cta-block__heading {
        font-size: 42px;        /* Figma: 42px */
        line-height: 50px;      /* Figma: 50px */
    }

    .cta-block__description {
        font-size: 24px;        /* Figma: 24px */
        line-height: 32px;      /* Figma: 32px */
    }

    .cta-block__image {
        flex: 0 0 48%;          /* Figma: 693/1440 ≈ 48% */
        min-height: 351px;      /* Figma: 351px */
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Support CAE Block
   Figma: CAE-SupportCAE-TheDifferentWaysToGive-V3 (19268:574309)
   Built forward-from-Figma 2026-04-13 by Sprout.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Mobile-first base ──────────────────────────────────────────────────── */

.support-cae-block {
    max-width: var(--page-width);
    margin: 0 auto;
}

/* ── Tabs ────────────────────────────────────────────────────────────────── */

.support-cae__tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px var(--side-padding-mobile);
    width: fit-content;
    margin: 0 auto;
}

.support-cae__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.support-cae__tab:not(.support-cae__tab--active) {
    background-color: var(--color-white);
    color: var(--color-granite);
}

.support-cae__tab:not(.support-cae__tab--active):hover {
    background-color: #f0f0f0;
}

.support-cae__tab--active {
    background-color: #83B390;
    color: var(--color-white);
    cursor: default;
}

/* ── Intro Section ───────────────────────────────────────────────────────── */

.support-cae__intro {
    background-color: var(--color-cream);
    margin-bottom: 32px;
    max-width: var(--content-width);    /* Figma: 1200px */
    margin-left: auto;
    margin-right: auto;
}

.support-cae__intro-banner {
    width: 100%;
    overflow: hidden;
}

.support-cae__intro-banner img {
    width: 100%;
    height: auto;
    max-height: 254px;
    object-fit: cover;
    display: block;
}

.support-cae__intro-content {
    padding: 24px var(--side-padding-mobile);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-cae__intro-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 34px;
    letter-spacing: 0.56px;
    color: var(--color-evergreen);
    text-transform: uppercase;
    margin: 0;
}

.support-cae__intro-description {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-granite);
    margin: 0;
}

/* ── Accordion ───────────────────────────────────────────────────────────── */

.support-cae__accordion {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--side-padding-mobile);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Accordion Item ──────────────────────────────────────────────────────── */

.support-cae__item {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-gray-line);
    transition: background-color 0.2s ease;
}

.support-cae__item--open {
    background-color: var(--color-cream);
    border-bottom: none;
}

/* ── Item Header (button or link) ────────────────────────────────────────── */

.support-cae__item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    min-height: 174px;          /* Figma: item row height with thumbnail */
    width: 100%;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}

a.support-cae__item-header:hover,
button.support-cae__item-header:hover {
    opacity: 0.85;
}

/* ── Thumbnail ───────────────────────────────────────────────────────────── */

.support-cae__item-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 62px;
    overflow: hidden;
}

.support-cae__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Text ────────────────────────────────────────────────────────────────── */

.support-cae__item-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-cae__item-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-evergreen);
    text-transform: none;
    margin: 0;
}

.support-cae__item-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--color-granite);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ── Chevron ─────────────────────────────────────────────────────────────── */

.support-cae__item-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.25s ease;
}

.support-cae__item-chevron svg {
    width: 13px;
    height: 22px;
}

/* Rotate chevron when open */
.support-cae__item--open .support-cae__item-chevron {
    transform: rotate(90deg);
}

/* ── Expandable Panel ────────────────────────────────────────────────────── */

.support-cae__item-panel {
    overflow: hidden;
}

.support-cae__item-panel[hidden] {
    display: none;
}

.support-cae__panel-body {
    background-color: var(--color-brick);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Panel Text ──────────────────────────────────────────────────────────── */

.support-cae__panel-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-white);
}

.support-cae__panel-text p {
    margin-bottom: 1em;
}

.support-cae__panel-text p:last-child {
    margin-bottom: 0;
}

/* ── Detail List (key-value) ─────────────────────────────────────────────── */

.support-cae__panel-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--color-white);
}

.support-cae__detail-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.support-cae__detail-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    min-width: 140px;
}

.support-cae__detail-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.support-cae__detail-row::before {
    content: none;
}

/* ── Separator colon between label and value ─────────────────────────────── */

.support-cae__detail-label::after {
    content: " :";
    font-weight: 400;
    margin-left: 8px;
}

/* ── Callout Card ────────────────────────────────────────────────────────── */

.support-cae__callout {
    background-color: var(--color-cream);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.support-cae__callout-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-cae__callout-heading {
    font-family: var(--font-bookman);
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    color: var(--color-evergreen);
    text-transform: uppercase;
    margin: 0;
}

.support-cae__callout-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-granite);
}

.support-cae__callout-desc a {
    color: var(--color-evergreen);
    font-weight: 700;
    text-decoration: underline;
}

.support-cae__callout-desc p {
    margin-bottom: 0;
}

.support-cae__callout-image {
    width: 100%;
    min-height: 160px;
}

.support-cae__callout-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Tablet (768px+) ────────────────────────────────────────────────────── */

@media (min-width: 768px) {
    .support-cae__tabs {
        gap: 24px;
        padding: 20px 40px;
    }

    .support-cae__tab {
        font-size: 20px;
        line-height: 28px;
        padding: 12px 24px;
    }

    .support-cae__intro-content {
        padding: 32px 40px;
    }

    .support-cae__intro-heading {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: 0.72px;
    }

    .support-cae__intro-description {
        font-size: 20px;
        line-height: 28px;
    }

    .support-cae__accordion {
        padding: 0 40px;
        gap: 28px;
    }

    .support-cae__item-header {
        padding: 20px;
        gap: 24px;
    }

    .support-cae__item-thumb {
        width: 160px;
        height: 100px;
    }

    .support-cae__item-title {
        font-size: 20px;
        line-height: 28px;
    }

    .support-cae__item-desc {
        font-size: 18px;
        line-height: 26px;
        -webkit-line-clamp: 2;
    }

    .support-cae__panel-body {
        padding: 24px;
        gap: 28px;
    }

    .support-cae__panel-text {
        font-size: 18px;
        line-height: 26px;
    }

    .support-cae__detail-label {
        font-size: 18px;
        line-height: 26px;
        min-width: 170px;
    }

    .support-cae__detail-value {
        font-size: 18px;
        line-height: 26px;
    }

    .support-cae__callout {
        flex-direction: row;
    }

    .support-cae__callout-content {
        flex: 1;
        padding: 32px;
    }

    .support-cae__callout-heading {
        font-size: 26px;
        line-height: 36px;
    }

    .support-cae__callout-desc {
        font-size: 18px;
        line-height: 26px;
    }

    .support-cae__callout-image {
        flex: 0 0 40%;
        min-height: 200px;
    }
}

/* ─── Desktop (1024px+) ──────────────────────────────────────────────────── */

@media (min-width: 1024px) {
    .support-cae__tabs {
        gap: 32px;              /* Figma: 32px */
        padding: 0;             /* Figma: no container padding */
        margin: 0 auto;
    }

    .support-cae__tab {
        font-size: 24px;        /* Figma: 24px */
        line-height: 32px;      /* Figma: 32px */
        padding: 12px 24px;
    }

    .support-cae__intro-content {
        max-width: 1120px;       /* Figma: 1120px */
        margin: 40px auto;       /* Figma: ~40px vertical space between banner and content */
        padding: 0;              /* Figma: no padding on content frame */
        gap: 12px;               /* Figma: 12px */
    }

    .support-cae__intro-heading {
        font-size: 48px;        /* Figma: 48px */
        line-height: 56px;      /* Figma: 56px */
        letter-spacing: 0.96px; /* Figma: 0.96 */
    }

    .support-cae__intro-description {
        font-size: 24px;        /* Figma: 24px */
        line-height: 32px;      /* Figma: 32px */
    }

    .support-cae__accordion {
        padding: 0;             /* Figma: no padding, max-width handles constraint */
        gap: 32px;              /* Figma: 32px gap between items */
    }

    .support-cae__item-header {
        padding: 20px;          /* Figma: 20px padding */
        gap: 28px;              /* Figma: 28px gap */
    }

    .support-cae__item-thumb {
        width: 216px;           /* Figma: 216px */
        height: 134px;          /* Figma: 134px */
    }

    .support-cae__item-title {
        font-size: 24px;        /* Figma: 24px */
        line-height: 32px;      /* Figma: 32px */
    }

    .support-cae__item-desc {
        font-size: 20px;        /* Figma: 20px */
        line-height: 28px;      /* Figma: 28px */
        display: block;
    }

    .support-cae__panel-body {
        padding: 24px;          /* Figma: 24px */
        gap: 32px;              /* Figma: 32px */
    }

    .support-cae__panel-text {
        font-size: 20px;        /* Figma: 20px */
        line-height: 28px;      /* Figma: 28px */
    }

    .support-cae__detail-row {
        gap: 19px;              /* Figma: 19px */
    }

    .support-cae__detail-label {
        font-size: 20px;        /* Figma: 20px */
        line-height: 28px;      /* Figma: 28px */
        min-width: 197px;       /* Figma: 197px */
    }

    .support-cae__detail-value {
        font-size: 20px;        /* Figma: 20px */
        line-height: 28px;      /* Figma: 28px */
    }

    .support-cae__callout {
        min-height: 232px;      /* Figma: 232px — min so content can flex */
    }

    .support-cae__callout-content {
        padding: 48px;          /* Figma: 48px */
        width: 550px;           /* Figma: 550px */
        flex: none;
    }

    .support-cae__callout-heading {
        font-size: 30px;        /* Figma: 30px */
        line-height: 40px;      /* Figma: 40px */
    }

    .support-cae__callout-desc {
        font-size: 20px;        /* Figma: 20px */
        line-height: 28px;      /* Figma: 28px */
    }

    .support-cae__callout-image {
        flex: 1;
        min-height: 100%;
    }
}

/* ─── Wide Desktop (1440px+) ─────────────────────────────────────────────── */

@media (min-width: 1440px) {
    .support-cae__intro-banner img {
        max-height: 254px;      /* Figma: 254px */
    }

    .support-cae__intro-content {
        max-width: 1120px;      /* Figma: 1120px content frame */
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Hero Block
   Full-width hero with farm photo bg, cream wave overlay, content + illustration.
   Figma source: CAE-1440-Hero (19095:38861), CAE-375-Hero (19143:405459)
   Built forward-from-Figma 2026-04-13 by Lark.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Mobile-first base ──────────────────────────────────────────────────── */

.hero-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ── Background Image ────────────────────────────────────────────────────── */

.hero-block__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-block__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Wave Overlay ────────────────────────────────────────────────────────── */

.hero-block__wave {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px var(--side-padding-mobile);
    min-height: 700px;
}

.hero-block__wave-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 10px;
}

/* ── Illustration ────────────────────────────────────────────────────────── */

.hero-block__illustration {
    width: 288px;
    height: 251px;
    flex-shrink: 0;
    margin-bottom: 12px;
}

.hero-block__illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Content ─────────────────────────────────────────────────────────────── */

.hero-block__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    max-width: 296px;
}

.hero-block__heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    line-height: 54px;
    letter-spacing: 0px;
    color: var(--color-evergreen);
    text-transform: uppercase;
    margin: 0;
}

.hero-block__description {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--color-granite);
    margin: 0;
}

/* ── Button ──────────────────────────────────────────────────────────────── */

.hero-block__button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px 11px;
    background-color: var(--color-gold);
    border-radius: 40px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    width: 100%;
    max-width: 296px;
}

.hero-block__button:hover {
    opacity: 0.85;
}

.hero-block__button-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.hero-block__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.hero-block__button-icon svg {
    width: 20px;
    height: 20px;
}

/* ── Bottom Wave Transition ──────────────────────────────────────────────── */

.hero-block__bottom-wave {
    position: relative;
    z-index: 1;
    margin-top: -1px;
    line-height: 0;
}

.hero-block__bottom-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Tablet (768px+) ────────────────────────────────────────────────────── */

@media (min-width: 768px) {
    .hero-block__wave {
        padding: 32px 40px;
        min-height: 500px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 32px;
    }

    .hero-block__wave-shape {
        border-radius: 0;
    }

    .hero-block__content {
        order: 1;
        align-items: flex-start;
        text-align: left;
        max-width: 480px;
    }

    .hero-block__illustration {
        order: 2;
        width: 320px;
        height: 250px;
        margin-bottom: 0;
    }

    .hero-block__heading {
        font-size: 52px;
        line-height: 58px;
    }

    .hero-block__description {
        font-size: 26px;
        line-height: 36px;
    }

    .hero-block__button {
        width: auto;
    }
}

/* ─── Desktop (1024px+) ──────────────────────────────────────────────────── */

@media (min-width: 1024px) {
    .hero-block__wave {
        padding: 40px var(--side-padding);
        min-height: 457px;
        gap: 40px;
    }

    .hero-block__content {
        max-width: 560px;
        gap: 12px;
    }

    .hero-block__illustration {
        width: 380px;
        height: 300px;
    }

    .hero-block__heading {
        font-size: 58px;
        line-height: 64px;
    }

    .hero-block__description {
        font-size: 28px;
        line-height: 38px;
    }
}

/* ─── Wide Desktop (1440px+) ─────────────────────────────────────────────── */

@media (min-width: 1440px) {
    .hero-block {
        max-width: var(--page-width);
        margin: 0 auto;
    }

    .hero-block__wave {
        min-height: 457px;      /* Figma: 457px */
        padding: 40px 120px;    /* Figma: side padding */
    }

    .hero-block__content {
        max-width: 637px;       /* Figma: 637px */
        min-height: 265px;      /* Figma: 265px */
        justify-content: center;
    }

    .hero-block__heading {
        font-size: 64px;        /* Figma: 64px */
        line-height: 70px;      /* Figma: 70px */
    }

    .hero-block__description {
        font-size: 30px;        /* Figma: 30px */
        line-height: 40px;      /* Figma: 40px */
    }

    .hero-block__button {
        width: 296px;           /* Figma: 296px */
    }

    .hero-block__illustration {
        width: 446px;           /* Figma: 446px */
        height: 348px;          /* Figma: 348px */
    }

    .hero-block__bottom-wave svg {
        height: 102px;          /* Figma: 102px */
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Donate Block
   CTA banner, info cards, donation form (layout-only, no payment processor).
   Figma source: CAE-FLOW-SupportCAE-Donate-General-DonateOnce-V7 (19268:584395)
   Built forward-from-Figma 2026-04-16 by Lark.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Mobile-first base ──────────────────────────────────────────────────── */

.donate-block {
    max-width: var(--page-width);
    margin: 0 auto;
}

/* ── Section Tabs ────────────────────────────────────────────────────────── */

.donate-block__tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px var(--side-padding-mobile);
    width: fit-content;
    margin: 0 auto;
}

.donate-block__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    background-color: var(--color-white);
    color: var(--color-granite);
}

.donate-block__tab:hover {
    background-color: #f0f0f0;
}

.donate-block__tab--active {
    background-color: #83B390;
    color: var(--color-white);
    cursor: default;
}

/* ── Subtabs ─────────────────────────────────────────────────────────────── */

.donate-block__subtabs {
    padding: 0 var(--side-padding-mobile);
    margin-bottom: 24px;
}

.donate-block__subtabs-inner {
    display: flex;
    justify-content: center;
    gap: 32px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
}

.donate-block__subtab {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    color: var(--color-granite);
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease;
}

.donate-block__subtab:hover {
    color: var(--color-evergreen);
}

.donate-block__subtab--active {
    color: var(--color-evergreen);
    font-weight: 700;
    border-bottom-color: var(--color-gold);
}

/* ── CTA Banner ──────────────────────────────────────────────────────────── */

.donate-block__cta {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px var(--side-padding-mobile);
    overflow: hidden;
}

.donate-block__cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.donate-block__cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.donate-block__cta-heading {
    font-family: var(--font-bookman);
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
}

.donate-block__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px 11px;
    background-color: var(--color-gold);
    border-radius: 40px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    color: var(--color-white);
}

.donate-block__cta-button:hover {
    opacity: 0.85;
}

.donate-block__cta-button span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.donate-block__cta-icon {
    display: flex;
    width: 20px;
    height: 20px;
}

/* ── Tax Notice ──────────────────────────────────────────────────────────── */

.donate-block__tax-notice {
    background-color: var(--color-evergreen);
    padding: 16px var(--side-padding-mobile);
    text-align: center;
}

.donate-block__tax-notice p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--color-white);
    margin: 0;
}

/* ── Thank You Section ───────────────────────────────────────────────────── */

.donate-block__thankyou {
    padding: 48px var(--side-padding-mobile);
    text-align: center;
}

.donate-block__thankyou-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 34px;
    color: var(--color-evergreen);
    text-transform: uppercase;
    margin: 0 0 32px;
}

.donate-block__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donate-block__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
}

.donate-block__card-icon {
    width: 48px;
    height: 48px;
}

.donate-block__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.donate-block__card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--color-evergreen);
    text-transform: uppercase;
    margin: 0;
}

.donate-block__card-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-granite);
    margin: 0;
}

/* ── Donation Form Section ───────────────────────────────────────────────── */

.donate-block__form-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px var(--side-padding-mobile);
}

.donate-block__form-intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.donate-block__form-heading {
    font-family: var(--font-bookman);
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--color-evergreen);
    text-transform: uppercase;
    margin: 0;
}

.donate-block__form-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-granite);
    margin: 0;
}

.donate-block__form {
    background-color: var(--color-cream);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donate-block__form-label {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 28px;
    color: var(--color-evergreen);
    text-transform: uppercase;
}

/* ── Frequency Toggle ────────────────────────────────────────────────────── */

.donate-block__frequency {
    display: flex;
    gap: 0;
}

.donate-block__freq-tab {
    flex: 1;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-granite);
}

.donate-block__freq-tab--active {
    background-color: var(--color-evergreen);
    color: var(--color-white);
    border-color: var(--color-evergreen);
}

/* ── Amount Selector ─────────────────────────────────────────────────────── */

.donate-block__amounts-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-granite);
    margin-bottom: 12px;
}

.donate-block__amounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.donate-block__amount {
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-dark);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.donate-block__amount:hover {
    border-color: var(--color-evergreen);
}

.donate-block__amount--selected {
    border-color: var(--color-evergreen);
    background-color: var(--color-evergreen);
    color: var(--color-white);
}

.donate-block__amount-other {
    grid-column: span 2;
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    padding: 0 16px;
}

.donate-block__amount-currency {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-granite);
    margin-right: 4px;
}

.donate-block__amount-input {
    flex: 1;
    padding: 14px 0;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-dark);
    border: none;
    outline: none;
    background: transparent;
}

.donate-block__amount-input::placeholder {
    color: var(--color-granite);
}

/* ── Dedication Checkbox ─────────────────────────────────────────────────── */

.donate-block__dedication {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.donate-block__dedication-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-evergreen);
}

.donate-block__dedication-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-dark);
}

/* ── Submit Button ───────────────────────────────────────────────────────── */

.donate-block__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--color-gold);
    border-radius: 40px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    align-self: flex-start;
}

.donate-block__submit:hover {
    opacity: 0.85;
}

.donate-block__submit-icon {
    display: flex;
    width: 20px;
    height: 20px;
}

/* ─── Tablet (768px+) ────────────────────────────────────────────────────── */

@media (min-width: 768px) {
    .donate-block__cta {
        min-height: 350px;
        padding: 48px 40px;
    }

    .donate-block__cta-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .donate-block__thankyou {
        padding: 56px 40px;
    }

    .donate-block__thankyou-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .donate-block__cards {
        flex-direction: row;
        gap: 24px;
    }

    .donate-block__card {
        flex: 1;
    }

    .donate-block__form-section {
        flex-direction: row;
        padding: 56px 40px;
        gap: 40px;
    }

    .donate-block__form-intro {
        flex: 1;
        text-align: left;
    }

    .donate-block__form {
        flex: 1;
    }

    .donate-block__amounts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .donate-block__amount-other {
        grid-column: span 3;
    }
}

/* ─── Desktop (1024px+) ──────────────────────────────────────────────────── */

@media (min-width: 1024px) {
    .donate-block__tabs {
        gap: 32px;              /* Figma: 32px */
        padding: 0;
    }

    .donate-block__tab {
        font-size: 24px;        /* Figma: 24px */
        line-height: 32px;      /* Figma: 32px */
    }

    .donate-block__subtab {
        font-size: 20px;
        line-height: 28px;
    }

    .donate-block__cta {
        min-height: 400px;
        padding: 56px var(--side-padding);
    }

    .donate-block__cta-heading {
        font-size: 42px;
        line-height: 50px;
        max-width: 700px;
    }

    .donate-block__thankyou {
        padding: 64px var(--side-padding);
    }

    .donate-block__thankyou-heading {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 40px;
    }

    .donate-block__card-title {
        font-size: 24px;
        line-height: 32px;
    }

    .donate-block__card-desc {
        font-size: 18px;
        line-height: 26px;
    }

    .donate-block__form-section {
        padding: 64px var(--side-padding);
        gap: 60px;
    }

    .donate-block__form-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .donate-block__form-desc {
        font-size: 18px;
        line-height: 26px;
    }

    .donate-block__form {
        padding: 40px 32px;
    }
}

/* ─── Wide Desktop (1440px+) ─────────────────────────────────────────────── */

@media (min-width: 1440px) {
    .donate-block__cta-heading {
        font-size: 48px;        /* Figma: estimate */
        line-height: 56px;
    }

    .donate-block__thankyou-heading {
        font-size: 48px;        /* Figma: estimate */
        line-height: 56px;
    }

    .donate-block__form-heading {
        font-size: 42px;        /* Figma: estimate */
        line-height: 50px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   Donate — Vermont Farm Fund Block
   Figma: Support CAE > Donate > Vermont Farm Fund (19268:584283)
   Built forward-from-Figma 2026-04-16 by Sprout.
   QA pass: all values verified against Figma spec 2026-04-16.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Mobile-first base (375px) ─────────────────────────────────────────── */

.donate-vff-block {
    max-width: var(--page-width);
    margin: 0 auto;
    font-family: var(--font-body);
}

/* ── Top-level Tabs (pill style — matches support-cae tabs) ────────────── */

.donate-vff__tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px var(--side-padding-mobile);
    width: fit-content;
    margin: 0 auto;
}

.donate-vff__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;                          /* Figma: rounded-[5px] */
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.donate-vff__tab:not(.donate-vff__tab--active) {
    background-color: var(--color-white);        /* Figma: Tab Style: Green — bg-white */
    color: var(--color-granite);                 /* Figma: #767769 */
}

.donate-vff__tab:not(.donate-vff__tab--active):hover {
    background-color: #f0f0f0;
}

.donate-vff__tab--active {
    background-color: #83B390;                   /* Figma: Tab Style 4 — bg-[#83b390] */
    color: var(--color-white);                   /* Figma: white text */
    cursor: default;
}

/* ── Subtabs ─────────────────────────────────────────────────────────────── */

.donate-vff__subtabs {
    background-color: var(--color-white);
    border-bottom: 1px solid #C7C6C6;           /* Figma: border-[#c7c6c6] border-b */
}

.donate-vff__subtabs-inner {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 0 var(--side-padding-mobile);
    flex-wrap: wrap;
}

.donate-vff__subtab {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-granite);                 /* Figma: #767769 */
    text-decoration: none;
    padding-bottom: 12px;                        /* Figma: pb-[12px] */
    position: relative;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.donate-vff__subtab:not(.donate-vff__subtab--active):hover {
    color: var(--color-evergreen);
}

.donate-vff__subtab--active {
    color: var(--color-granite);                 /* Figma: same granite text when active */
    cursor: default;
}

.donate-vff__subtab--active::after {
    content: '';
    position: absolute;
    bottom: -1px;                                /* sits on the container border */
    left: 0;
    right: 0;
    height: 4px;                                 /* Figma: border-b-4 */
    background-color: var(--color-gold);         /* Figma: border-[#f2a518] */
    border-radius: 2px 2px 0 0;
}

/* ── Content with Image ──────────────────────────────────────────────────── */

.donate-vff__content-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px var(--side-padding-mobile);
    background-color: var(--color-white);
    max-width: var(--content-width);             /* Figma: 1200px wide */
    margin: 0 auto;
}

.donate-vff__content-image {
    width: 100%;
    overflow: hidden;
}

.donate-vff__content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.donate-vff__content-text {
    display: flex;
    flex-direction: column;
    gap: 12px;                                   /* Figma: gap-[12px] */
}

.donate-vff__content-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    line-height: 38px;
    letter-spacing: 0.64px;
    color: var(--color-brick);                   /* Figma: #B15533 */
    margin: 0;
}

.donate-vff__content-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
    color: var(--color-granite);                 /* Figma: #767769 */
}

.donate-vff__content-description p {
    margin: 0 0 12px;
}

.donate-vff__content-description p:last-child {
    margin-bottom: 0;
}

.donate-vff__content-description strong,
.donate-vff__content-description b {
    font-weight: 700;
}

.donate-vff__content-description a {
    color: var(--color-evergreen);               /* Figma: #004F39 */
    text-decoration: underline;
}

/* ── Donation Section ────────────────────────────────────────────────────── */

.donate-vff__donation-section {
    display: flex;
    flex-direction: column;
    max-width: var(--content-width);             /* Figma: 1200px wide */
    margin: 0 auto;
}

.donate-vff__donation-bg {
    width: 100%;
    min-height: 200px;
    background-color: var(--color-evergreen);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px var(--side-padding-mobile);
}

.donate-vff__tax-notice {
    background-color: rgba(255, 255, 255, 0.85); /* Figma: bg-[rgba(255,255,255,0.85)] */
    padding: 24px 20px;
    border-radius: 4px;
    width: 100%;
    text-align: center;                          /* Figma: text-center */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.donate-vff__tax-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 34px;
    color: var(--color-brick);                   /* Figma: #B15533 */
    margin: 0;
}

.donate-vff__tax-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
    color: var(--color-granite);                 /* Figma: #767769 */
    margin: 0;
}

/* ── Donation Methods Panel ──────────────────────────────────────────────── */

.donate-vff__methods-panel {
    background-color: var(--color-evergreen);    /* Figma: bg-[#004f39] */
    padding: 24px var(--side-padding-mobile);
    display: flex;
    flex-direction: column;                      /* Figma: flex-col — cards stack vertically */
    gap: 24px;                                   /* Figma: gap-[24px] between cards */
    align-items: center;
}

.donate-vff__method-card {
    background-color: var(--color-cream);        /* Figma: bg-[#f7f4e2] */
    border-radius: 5px;                          /* Figma: rounded-[5px] */
    padding: 24px;                               /* Figma: p-[24px] */
    display: flex;
    flex-direction: column;                      /* stacked on mobile */
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: center;
}

.donate-vff__method-icon {
    width: 100px;                                /* Figma: size-[100px] */
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.donate-vff__method-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.donate-vff__method-content {
    display: flex;
    flex-direction: column;
    gap: 8px;                                    /* Figma: gap-[8px] */
    flex: 1;
}

.donate-vff__method-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--color-granite);                 /* Figma: #767769 */
    margin: 0;
}

.donate-vff__method-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
    color: var(--color-granite);                 /* Figma: #767769 */
}

.donate-vff__method-description p {
    margin: 0 0 8px;
}

.donate-vff__method-description p:last-child {
    margin-bottom: 0;
}

.donate-vff__method-description a {
    color: var(--color-evergreen);
    text-decoration: underline;
}

.donate-vff__method-button {
    align-self: center;
    margin-top: auto;
}

/* ── Testimonial ─────────────────────────────────────────────────────────── */

.donate-vff__testimonial {
    display: flex;
    flex-direction: column;
    background-color: var(--color-cream);        /* Figma: bg-[#f7f4e2] */
    overflow: hidden;
    max-width: var(--content-width);             /* Figma: 1200px wide */
    margin: 0 auto;
}

.donate-vff__testimonial-image-wrap {
    width: 100%;
    border-left: 8px solid var(--color-gold);    /* Figma: border-l-8 border-[#f2a518] */
    overflow: hidden;
}

.donate-vff__testimonial-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.donate-vff__testimonial-quote-wrap {
    background-color: var(--color-white);        /* Figma: bg-white */
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    flex: 1;
}

.donate-vff__testimonial-mark {
    font-family: var(--font-bookman);
    font-size: 72px;
    line-height: 1;
    color: var(--color-brick);                   /* Figma: #B15533 */
    display: block;
    margin-bottom: -20px;
    user-select: none;
}

.donate-vff__testimonial-quote {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
    color: var(--color-granite);                 /* Figma: #767769 */
    margin: 0;
    font-style: normal;
}

.donate-vff__testimonial-attribution {
    border-top: 1px solid #C7C6C6;              /* Figma: Line 41 divider */
    max-width: 624px;                            /* Figma: 624px wide divider */
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.donate-vff__testimonial-name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--color-brick);                   /* Figma: #B15533 */
    margin: 0;
}

.donate-vff__testimonial-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-granite);                 /* Figma: #767769 */
    margin: 0;
}

/* ─── Tablet (768px+) ────────────────────────────────────────────────────── */

@media (min-width: 768px) {

    .donate-vff__tabs {
        gap: 24px;
        padding: 20px 40px;
    }

    .donate-vff__tab {
        font-size: 20px;
        line-height: 28px;
        padding: 12px 24px;
    }

    .donate-vff__subtabs-inner {
        gap: 48px;
        padding: 0 40px;
    }

    .donate-vff__subtab {
        font-size: 18px;
    }

    .donate-vff__content-section {
        padding: 40px 40px;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .donate-vff__content-image {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .donate-vff__content-text {
        flex: 1;
    }

    .donate-vff__content-heading {
        font-size: 36px;
        line-height: 42px;
    }

    .donate-vff__content-description {
        font-size: 20px;
        line-height: 28px;
    }

    .donate-vff__donation-bg {
        min-height: 260px;
        padding: 32px 40px;
    }

    .donate-vff__tax-notice {
        padding: 32px 40px;
        gap: 16px;
    }

    .donate-vff__tax-heading {
        font-size: 36px;
        line-height: 42px;
    }

    .donate-vff__tax-text {
        font-size: 20px;
        line-height: 28px;
    }

    /* Cards stay vertical, but each card becomes horizontal row */
    .donate-vff__method-card {
        flex-direction: row;                     /* Figma: horizontal row per card */
        align-items: center;
        gap: 24px;
        text-align: left;
    }

    .donate-vff__methods-panel {
        padding: 32px 40px;
    }

    .donate-vff__method-button {
        align-self: center;
        flex-shrink: 0;
    }

    .donate-vff__testimonial {
        flex-direction: row;
    }

    .donate-vff__testimonial-image-wrap {
        width: 40%;
        flex-shrink: 0;
    }

    .donate-vff__testimonial-image-wrap img {
        height: 100%;
        object-fit: cover;
    }

    .donate-vff__testimonial-quote-wrap {
        padding: 32px 40px;
    }
}

/* ─── Desktop (1024px+) ──────────────────────────────────────────────────── */

@media (min-width: 1024px) {

    .donate-vff__tabs {
        gap: 32px;                               /* Figma: 32px gap */
        padding: 0;
        margin: 0 auto;
        width: fit-content;
    }

    .donate-vff__tab {
        font-size: 24px;                        /* Figma: 24px */
        line-height: 32px;                      /* Figma: 32px */
        padding: 12px 24px;                     /* Figma: px-[24px] py-[12px] */
    }

    .donate-vff__subtabs-inner {
        gap: 93px;                               /* Figma: 93px gap between subtabs */
        padding: 0 var(--side-padding);
    }

    .donate-vff__subtab {
        font-size: 20px;                        /* Figma: 20px Acumin Pro Condensed Regular */
        line-height: 28px;                      /* Figma: 28px */
        padding-bottom: 12px;                   /* Figma: pb-[12px] */
    }

    .donate-vff__content-section {
        padding: 0;
        justify-content: space-between;          /* Figma: justify-between */
        align-items: center;
    }

    .donate-vff__content-image {
        flex: 0 0 510px;                        /* Figma: 510px wide */
        max-width: 510px;
    }

    .donate-vff__content-text {
        width: 626px;                            /* Figma: 626px wide */
        flex: none;
    }

    .donate-vff__content-heading {
        font-size: 48px;                        /* Figma: 48px Acumin Pro Condensed Black */
        line-height: 56px;                      /* Figma: 56px */
        letter-spacing: 0.96px;                 /* Figma: tracking-[0.96px] */
    }

    .donate-vff__content-description {
        font-size: 24px;                        /* Figma: 24px Acumin Pro Regular */
        line-height: 32px;                      /* Figma: 32px */
    }

    .donate-vff__donation-bg {
        min-height: 389px;                      /* Figma: 389px tall */
        padding: 56px 48px;                     /* Figma: overlay at y=56, x=48 */
    }

    .donate-vff__tax-notice {
        max-width: 1104px;                      /* Figma: 1104px wide */
        min-height: 212px;                      /* Figma: 212px tall */
        padding: 40px;                          /* Figma: heading at y=40 within overlay */
        justify-content: center;
    }

    .donate-vff__tax-heading {
        font-size: 48px;                        /* Figma: 48px Acumin Pro Condensed Black */
        line-height: 56px;                      /* Figma: 56px */
    }

    .donate-vff__tax-text {
        font-size: 24px;                        /* Figma: 24px Acumin Pro Regular */
        line-height: 32px;                      /* Figma: 32px */
    }

    /* Methods panel: cards remain stacked, each card is horizontal */
    .donate-vff__methods-panel {
        padding: 40px 48px;                     /* Figma: inner container at x=39 y=40 */
        gap: 24px;                               /* Figma: gap-[24px] between cards */
    }

    .donate-vff__method-card {
        max-width: 1026px;                      /* Figma: inner frame 1026px wide */
        gap: 31px;                               /* Figma: gap-[31px] between icon/text/button */
        padding: 24px;                          /* Figma: p-[24px] */
    }

    .donate-vff__method-content {
        width: 654px;                            /* Figma: 654px text area */
        flex: none;
    }

    .donate-vff__method-title {
        font-size: 24px;                        /* Figma: 24px Acumin Pro Bold */
        line-height: 32px;                      /* Figma: 32px */
    }

    .donate-vff__method-description {
        font-size: 24px;                        /* Figma: 24px Acumin Pro Regular */
        line-height: 32px;                      /* Figma: 32px */
    }

    /* Testimonial */
    .donate-vff__testimonial {
        min-height: 426px;                      /* Figma: 426px tall */
        align-items: stretch;
    }

    .donate-vff__testimonial-image-wrap {
        width: 352px;                            /* Figma: 352px wide */
        flex: 0 0 352px;
        height: 330px;                           /* Figma: 330px tall */
        margin: 48px 0 48px 48px;               /* Figma: 48px inset from edges */
        align-self: flex-start;
    }

    .donate-vff__testimonial-image-wrap img {
        height: 330px;                           /* Figma: 330px */
        object-fit: cover;
    }

    .donate-vff__testimonial-quote-wrap {
        flex: 1;
        border-radius: 0 5px 5px 0;             /* Figma: rounded-br-[5px] rounded-tr-[5px] */
        padding: 48px;                           /* Figma: inset from edge */
        width: 752px;                            /* Figma: 752px wide */
        min-height: 330px;                       /* Figma: 330px */
        margin: 48px 48px 48px 0;               /* Figma: 48px inset from edges */
        align-self: flex-start;
        justify-content: flex-start;
    }

    .donate-vff__testimonial-mark {
        font-size: 120px;                       /* Figma: 120px Bookman Press Sans */
        line-height: 1;
        color: var(--color-brick);              /* Figma: #B15533 */
        margin-bottom: -32px;
    }

    .donate-vff__testimonial-quote {
        font-size: 24px;                        /* Figma: 24px Acumin Pro Regular */
        line-height: 32px;                      /* Figma: 32px */
    }

    .donate-vff__testimonial-attribution {
        max-width: 624px;                        /* Figma: 624px wide divider */
    }

    .donate-vff__testimonial-name {
        font-size: 24px;                        /* Figma: 24px Acumin Pro Bold */
        line-height: 32px;                      /* Figma: 32px */
        color: var(--color-brick);              /* Figma: #B15533 */
    }

    .donate-vff__testimonial-title {
        font-size: 20px;                        /* Figma: 20px Acumin Pro Regular */
        line-height: 28px;                      /* Figma: 28px */
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   Breadcrumb — Reusable component
   Figma: Breadcrumb component (4151:425120)
   Auto-generated from WordPress page hierarchy via cae_breadcrumb().
   Built forward-from-Figma 2026-04-16 by Sprout.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Mobile-first base ──────────────────────────────────────────────────── */

.cae-breadcrumb {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 12px var(--side-padding-mobile);
}

.cae-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cae-breadcrumb__item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.cae-breadcrumb__link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-granite);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cae-breadcrumb__link:hover {
    color: var(--color-evergreen);
    text-decoration: underline;
}

.cae-breadcrumb__current {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: var(--color-evergreen);
}

.cae-breadcrumb__separator {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-granite);
    padding: 0 6px;
}

/* ─── Tablet (768px+) ────────────────────────────────────────────────────── */

@media (min-width: 768px) {
    .cae-breadcrumb {
        padding: 16px 40px;
    }

    .cae-breadcrumb__link,
    .cae-breadcrumb__current,
    .cae-breadcrumb__separator {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ─── Desktop (1024px+) ──────────────────────────────────────────────────── */

@media (min-width: 1024px) {
    .cae-breadcrumb {
        padding: 20px var(--side-padding);    /* Figma: x=120 from page edge */
    }

    .cae-breadcrumb__link,
    .cae-breadcrumb__current,
    .cae-breadcrumb__separator {
        font-size: 18px;            /* Figma: 18px */
        line-height: 26px;          /* Figma: 26px */
    }

    .cae-breadcrumb__separator {
        padding: 0 8px;             /* Figma: 8px horizontal padding */
    }
}
