/* ===== DONATE HERO ===== */
.donate-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 360px;
    margin-top: -80px;
    overflow: hidden;
}

.donate-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% center;
    z-index: 0;
}

.donate-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(1, 51, 101, 0.72) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.donate-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    padding-top: 80px;
}

.donate-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f0cf87;
    margin-bottom: 1rem;
}

.donate-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-bottom: 1.2rem;
}

.donate-hero-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    line-height: 1.7;
}

/* ===== REASON CARDS ===== */
.donate-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.donate-reason-card {
    background-color: #f4f4f4;
    border-radius: 3px;
    padding: 32px 28px;
    border-left: 3px solid transparent;
    transition: border-left-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.donate-reason-card:hover {
    border-left-color: #0172CA;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.donate-reason-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #013365;
    margin-bottom: 0.75rem;
}

.donate-reason-card p {
    font-size: 0.975rem;
    color: #444;
    line-height: 1.75;
}

/* ===== IMPACT STRIP ===== */
.donate-impact-strip {
    background: linear-gradient(135deg, #013365 0%, #0172CA 100%);
    padding: 56px 64px;
    text-align: center;
    margin: 0;
}

.donate-impact-strip h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.donate-impact-strip p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== CTA CENTER MODIFIER ===== */
.section-inner--center {
    text-align: center;
}

.section-inner--center > hr {
    margin-left: auto;
    margin-right: auto;
}

.section-inner--center .section-body {
    margin: 0 auto 2.5rem;
    color: #444;
}

.donate-stripe-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 20px 60px;
    background-color: #013365;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(1, 51, 101, 0.25);
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.donate-stripe-btn:hover {
    background-color: #0172CA;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(1, 114, 202, 0.35);
}

.donate-secure-note {
    margin-top: 1.25rem;
    font-size: 0.8rem !important;
    color: #888 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .donate-hero {
        height: 50vh;
        margin-top: -64px;
    }

    .donate-hero-content {
        padding-top: 64px;
    }

    .donate-hero-content h1 {
        font-size: 2.1rem;
    }

    .donate-reasons {
        grid-template-columns: 1fr;
    }

    .donate-photos-row {
        grid-template-columns: 1fr;
    }

    .donate-photo-wide {
        aspect-ratio: 16 / 9;
    }

    .donate-impact-strip {
        padding: 40px 28px;
    }

    .donate-impact-strip h2 {
        font-size: 1.4rem;
    }

    .donate-stripe-btn {
        padding: 18px 36px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .donate-hero-content h1 {
        font-size: 1.7rem;
    }

    .donate-stripe-btn {
        display: block;
        text-align: center;
    }
}
