/* Fundraising landing — hero only; scoped under .fundraising-site */

.fundraising-site {
    color-scheme: light;
    --fr-teal: #2a8fa8;
    --fr-teal-bright: #3db3cf;
    --fr-teal-dark: #1f6b7d;
    --fr-purple: #4b3e8e;
    --fr-purple-dark: #2d2658;
    --fr-page: #d4dce6;
    --fr-text: #0f172a;
}

.fundraising-site {
    background: var(--fr-page);
    color: var(--fr-text);
    font-family: "Poppins", system-ui, -apple-system, sans-serif;
}

.fundraising-site .fundraising-hero {
    background: linear-gradient(145deg, var(--fr-purple-dark) 0%, var(--fr-purple) 45%, var(--fr-teal-dark) 100%);
    color: #ffffff;
    padding: clamp(2.25rem, 7vw, 4.5rem) clamp(1.5rem, 6vw, 3.5rem) clamp(3rem, 9vw, 5rem);
    position: relative;
    overflow: hidden;
}

.fundraising-site .fundraising-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 0% 0%, rgba(61, 179, 207, 0.35) 0%, transparent 52%),
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(75, 62, 142, 0.45) 0%, transparent 48%);
    pointer-events: none;
}

.fundraising-site .fundraising-hero__inner {
    max-width: min(92vw, 62rem);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.fundraising-site .fundraising-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e2e8f0;
    margin: 0 0 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--fr-teal-bright);
    display: inline-block;
}

.fundraising-site .fundraising-hero__title {
    font-size: clamp(0.85rem, 2.8vw, 2.15rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.1rem;
    color: #ffffff;
    letter-spacing: 0.04em;
    text-align: center;
}

.fundraising-site .fundraising-hero__title-line {
    display: block;
    white-space: nowrap;
}

@media (max-width: 420px) {
    .fundraising-site .fundraising-hero__title-line {
        white-space: normal;
    }
}

/* High schools (and similar): sentence-case headline, not all-caps two-line rack */
.fundraising-site .fundraising-hero__title--schools {
    letter-spacing: normal;
    font-size: clamp(1.15rem, 2.75vw, 1.8rem);
    line-height: 1.38;
    font-weight: 700;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.fundraising-site .fundraising-hero__lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #e2e8f0;
    margin: 0 0 1.85rem;
}

.fundraising-site .fundraising-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    justify-content: center;
}

.fundraising-site a.fundraising-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    padding: 0.88rem 1.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.fundraising-site a.fundraising-cta--primary {
    color: #ffffff;
    background-color: var(--fr-teal-dark);
    background-image: linear-gradient(180deg, var(--fr-teal) 0%, var(--fr-teal-dark) 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fundraising-site a.fundraising-cta--primary:hover,
.fundraising-site a.fundraising-cta--primary:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05);
}

.fundraising-site a.fundraising-cta--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.fundraising-site a.fundraising-cta--ghost:hover,
.fundraising-site a.fundraising-cta--ghost:focus {
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.24);
}

.fundraising-site .fundraising-cta svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}
