/* =========================================================
   CELEBRATION CHURCH
   GIVE PAGE
   ========================================================= */

:root {
    --give-red: #06699A;
    --give-red-dark: #115079;
    --give-black: #000000;
    --give-charcoal: #282828;
    --give-white: #ffffff;
    --give-off-white: #f8f7f5;
    --give-pink: #f8eaea;
    --give-cream: #f8eee5;
    --give-border: #e7e4e1;
    --give-muted: #777777;
    --give-blue: #e8f3ff;
    --give-blue-strong: #0878f9;
    --give-container: 1240px;
}


/* =========================================================
   RESET
   ========================================================= */

.give-page,
.give-page *,
.give-page *::before,
.give-page *::after {
    box-sizing: border-box;
}

.give-page {
    margin: 0;
    padding: 0;
    background: var(--give-white);
    color: var(--give-black);
    font-family: "DM Sans", Arial, sans-serif;
    overflow-x: hidden;
}

.give-page img,
.give-page svg {
    max-width: 100%;
}

.give-page a {
    color: inherit;
    text-decoration: none;
}

.give-page button,
.give-page input {
    font: inherit;
}

.give-page button {
    border: 0;
}

.give-page section {
    position: relative;
}

.give-container {
    width: min(
        calc(100% - 80px),
        var(--give-container)
    );

    margin-inline: auto;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.give-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   REVEAL
   ========================================================= */

.give-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.give-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   HEADER
   ========================================================= */

.give-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 1000;

    height: 86px;

    background: rgba(0, 0, 0, 0.96);

    color: var(--give-white);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.give-header__inner {
    width: min(
        calc(100% - 70px),
        1400px
    );

    height: 100%;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* LOGO */

.give-logo {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    flex-shrink: 0;
}

.give-logo__word {
    display: flex;
    flex-direction: column;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;
    line-height: 0.95;

    font-weight: 700;

    letter-spacing: 0.11em;
}

.give-logo__word span:last-child {
    margin-top: 4px;
}

.give-logo__mark {
    position: relative;

    width: 27px;
    height: 20px;

    display: inline-block;
}

.give-logo__mark span {
    position: absolute;

    width: 17px;
    height: 10px;

    border: 2px solid var(--give-red);

    border-radius: 999px;

    transform: rotate(45deg);
}

.give-logo__mark span:first-child {
    left: 0;
    top: 4px;
}

.give-logo__mark span:last-child {
    right: 0;
    top: 4px;

    transform: rotate(-45deg);
}


/* NAVIGATION */

.give-navigation {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.3vw, 38px);
}

.give-navigation a {
    position: relative;

    color: rgba(255, 255, 255, 0.9);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.15em;

    white-space: nowrap;

    transition: color 0.25s ease;
}

.give-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 1px;

    background: var(--give-red);

    transition: width 0.25s ease;
}

.give-navigation a:hover,
.give-navigation a.is-active {
    color: var(--give-white);
}

.give-navigation a:hover::after,
.give-navigation a.is-active::after {
    width: 100%;
}


/* MENU BUTTON */

.give-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    background: transparent;

    cursor: pointer;
}

.give-menu-toggle span {
    display: block;

    width: 22px;
    height: 1px;

    margin: 5px auto;

    background: var(--give-white);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.give-menu-toggle.is-open span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.give-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.give-menu-toggle.is-open span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.give-hero {
    min-height: 74vh;
    height: 760px;

    max-height: 900px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--give-black);
}

.give-hero__image {
    position: absolute;
    inset: 0;

    background-image:
        url("/img/9.jpg");

    background-size: cover;
    background-position: center 48%;

    transform: scale(1.03);

    animation: giveHeroZoom 12s ease-out forwards;
}

@keyframes giveHeroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.give-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 35%,
            rgba(0, 0, 0, 0.72) 100%
        );
}

.give-hero__content {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 40px),
        900px
    );

    margin-top: 55px;

    text-align: center;

    color: var(--give-white);
}

.give-eyebrow {
    margin: 0 0 15px;

    color: var(--give-red);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.23em;

    line-height: 1.2;
}

.give-eyebrow--hero {
    color: var(--give-white);
    opacity: 0.9;
}

.give-eyebrow--light {
    color: #ff7777;
}

.give-hero__title {
    margin: 0;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: clamp(
        68px,
        9.2vw,
        142px
    );

    line-height: 0.82;

    font-weight: 400;

    letter-spacing: -0.015em;

    text-transform: uppercase;
}

.give-red {
    color: var(--give-red);
}

.give-hero__description {
    width: min(
        100%,
        600px
    );

    margin: 35px auto 0;

    color: rgba(255, 255, 255, 0.86);

    font-size: 15px;

    line-height: 1.7;
}

.give-hero__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
}

.give-button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 27px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.16em;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.give-button:hover {
    transform: translateY(-3px);
}

.give-button--light {
    color: var(--give-black);
    background: var(--give-white);
}

.give-button--light:hover {
    background: var(--give-red);
    color: var(--give-white);
}

.give-button--outline {
    color: var(--give-white);

    border: 1px solid rgba(255, 255, 255, 0.55);

    background: rgba(0, 0, 0, 0.18);
}

.give-button--outline:hover {
    border-color: var(--give-white);
    background: var(--give-white);
    color: var(--give-black);
}

.give-button--dark {
    background: var(--give-black);
    color: var(--give-white);
}

.give-scroll-indicator {
    position: absolute;

    z-index: 3;

    bottom: 28px;
    left: 50%;

    width: 24px;
    height: 38px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;

    transform: translateX(-50%);
}

.give-scroll-indicator span {
    position: absolute;

    top: 7px;
    left: 50%;

    width: 3px;
    height: 7px;

    border-radius: 10px;

    background: var(--give-white);

    transform: translateX(-50%);

    animation: giveScroll 1.6s infinite;
}

@keyframes giveScroll {
    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 8px);
    }
}


/* =========================================================
   GENERAL SECTION TITLES
   ========================================================= */

.give-section-title {
    margin: 0;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: clamp(
        62px,
        7.3vw,
        112px
    );

    font-weight: 400;

    line-height: 0.83;

    letter-spacing: -0.01em;

    text-transform: uppercase;
}

.give-section-title--light {
    color: var(--give-white);
}


/* =========================================================
   WAYS TO GIVE
   ========================================================= */

.give-methods {
    padding: 120px 0 125px;

    background: var(--give-white);
}

.give-methods__intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, 0.65fr);

    gap: 90px;

    align-items: end;

    margin-bottom: 65px;
}

.give-methods__copy {
    max-width: 440px;

    padding-bottom: 7px;
}

.give-methods__copy p {
    margin: 0;

    color: #555;

    font-size: 15px;
    line-height: 1.8;
}


/* TABS */

.give-account-tabs {
    width: fit-content;

    display: flex;

    padding: 5px;

    margin: 0 auto 55px;

    background: #f2f1ef;

    border-radius: 999px;
}

.give-account-tab {
    min-width: 180px;

    min-height: 48px;

    padding: 0 25px;

    border-radius: 999px;

    background: transparent;

    color: #777;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.give-account-tab.is-active {
    background: var(--give-red);
    color: var(--give-white);

    box-shadow: 0 8px 20px rgba(217, 0, 0, 0.16);
}


/* ACCOUNT VIEW */

.give-account-view {
    animation: giveTabIn 0.35s ease;
}

.give-account-view[hidden] {
    display: none;
}

@keyframes giveTabIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* BANK GRID */

.give-banking-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 22px;
}


/* FIDELITY */

.give-fidelity-card {
    grid-row: span 2;

    padding: 38px;

    background:
        linear-gradient(
            135deg,
            #fbf1e7,
            #f5e6d8
        );

    border-radius: 22px;

    min-height: 540px;

    display: flex;
    flex-direction: column;
}

.give-fidelity-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-bottom: 27px;

    border-bottom: 1px solid rgba(90, 60, 35, 0.12);
}

.give-bank-label {
    margin: 0 0 5px;

    color: #977b63;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.give-fidelity-card h3 {
    margin: 0;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: 45px;
    font-weight: 400;

    line-height: 1;
}

.give-bank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 46px;
    height: 31px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.62);

    color: #856e59;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.1em;
}

.give-fidelity-card__accounts {
    margin-top: 18px;
}

.give-account-row {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 21px 0;

    border-bottom: 1px solid rgba(90, 60, 35, 0.12);
}

.give-account-row:last-child {
    border-bottom: 0;
}

.give-account-row__info {
    min-width: 0;
}

.give-account-label {
    display: block;

    margin-bottom: 7px;

    color: #92745a;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.11em;
}

.give-account-row strong {
    display: block;

    font-size: 22px;
    font-weight: 600;

    letter-spacing: 0.02em;
}


/* COPY */

.give-copy-button {
    position: relative;

    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.62);

    color: #604d39;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.give-copy-button:hover {
    background: var(--give-white);

    transform: scale(1.06);
}

.give-copy-button svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.give-copy-feedback {
    position: absolute;

    top: -35px;
    right: -5px;

    padding: 6px 8px;

    border-radius: 5px;

    background: var(--give-black);
    color: var(--give-white);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.08em;

    white-space: nowrap;

    opacity: 0;
    pointer-events: none;

    transform: translateY(5px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.give-copy-button.is-copied .give-copy-feedback {
    opacity: 1;

    transform: translateY(0);
}


/* OTHER ACCOUNTS */

.give-other-accounts {
    padding: 35px;

    border: 1px solid var(--give-border);

    border-radius: 22px;

    background: var(--give-white);
}

.give-panel-heading {
    margin-bottom: 22px;
}

.give-panel-kicker {
    margin: 0 0 7px;

    color: var(--give-red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.give-panel-heading h3,
.give-paypal h3 {
    margin: 0;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: 43px;

    line-height: 0.95;

    font-weight: 400;
}

.give-other-account {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid var(--give-border);
}

.give-other-account:last-child {
    border-bottom: 0;
}

.give-other-account__text {
    min-width: 0;
}

.give-other-account__text strong {
    display: block;

    margin-bottom: 2px;

    font-size: 10px;

    letter-spacing: 0.09em;
}

.give-other-account__text span {
    display: block;

    margin-bottom: 5px;

    color: #777;

    font-size: 11px;
}

.give-other-account__text b {
    display: block;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 0.04em;
}

.give-other-account .give-copy-button {
    background: #f4f3f1;
    color: #555;
}


/* PAYPAL */

.give-paypal {
    min-height: 275px;

    padding: 35px;

    border-radius: 22px;

    background: var(--give-blue);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.give-paypal h3 {
    color: #1c3148;
}

.give-paypal h3 span {
    color: var(--give-blue-strong);
}

.give-paypal__content > p:last-child {
    max-width: 500px;

    margin: 17px 0 0;

    color: #587087;

    font-size: 13px;

    line-height: 1.75;
}

.give-paypal__button {
    width: fit-content;

    min-height: 47px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    gap: 22px;

    border-radius: 999px;

    background: var(--give-blue-strong);

    color: var(--give-white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.give-paypal__button:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(8, 120, 249, 0.2);
}

.give-paypal__button span {
    font-size: 16px;
}


/* DOMICILIARY */

.give-domiciliary {
    max-width: 900px;

    margin-inline: auto;

    padding: 65px;

    border-radius: 25px;

    background: #f6f4f2;

    text-align: center;
}

.give-domiciliary h3 {
    margin: 0;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: clamp(55px, 7vw, 95px);

    line-height: 0.85;
}

.give-domiciliary__intro > p:last-child {
    max-width: 600px;

    margin: 25px auto 0;

    color: #666;

    line-height: 1.7;
}

.give-domiciliary__notice {
    max-width: 650px;

    margin: 35px auto;

    padding: 25px;

    border-radius: 14px;

    background: var(--give-white);

    text-align: left;
}

.give-domiciliary__notice strong {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;

    letter-spacing: 0.13em;
}

.give-domiciliary__notice p {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   SPECIFIC CAMPUSES
   ========================================================= */

.give-campus {
    padding: 120px 0 145px;

    background: var(--give-off-white);
}

.give-campus__heading {
    max-width: 850px;

    margin: 0 auto 60px;

    text-align: center;
}

.give-campus__heading > p:last-child {
    max-width: 550px;

    margin: 27px auto 0;

    color: #666;

    font-size: 14px;

    line-height: 1.8;
}

.give-campus-card {
    position: relative;

    max-width: 1000px;

    margin-inline: auto;

    overflow: hidden;

    border-radius: 24px;

    background: var(--give-white);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08);
}

.give-campus-card__inner {
    position: relative;
    z-index: 2;

    padding: 65px;
}

.give-campus-card__eyebrow {
    margin: 0 0 10px;

    color: var(--give-red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.give-campus-card h3 {
    margin: 0;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: clamp(
        58px,
        6vw,
        92px
    );

    font-weight: 400;

    line-height: 0.84;
}


/* OPTIONS */

.give-giving-options {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 42px;
}

.give-giving-option {
    min-height: 120px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    border: 1px solid #e7e5e2;

    border-radius: 15px;

    background: #faf9f7;

    color: #202020;

    text-align: left;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.give-giving-option span {
    font-size: 9px;

    color: #999;

    letter-spacing: 0.08em;
}

.give-giving-option:hover {
    transform: translateY(-4px);

    border-color: rgba(217, 0, 0, 0.4);
}

.give-giving-option.is-selected {
    border-color: var(--give-red);

    background: var(--give-red);

    color: var(--give-white);
}

.give-giving-option.is-selected span {
    color: rgba(255, 255, 255, 0.7);
}

.give-selected-option {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 18px;

    padding: 15px 18px;

    border-radius: 10px;

    background: #f6f4f1;
}

.give-selected-option span {
    color: #999;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.give-selected-option strong {
    color: var(--give-red);

    font-size: 11px;

    letter-spacing: 0.1em;
}

.give-campus-button {
    width: fit-content;

    min-height: 50px;

    margin-top: 24px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    gap: 25px;

    border-radius: 999px;

    background: var(--give-black);

    color: var(--give-white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.give-campus-button:hover {
    background: var(--give-red);

    transform: translateY(-3px);
}


/* DECOR */

.give-campus-card__decor {
    position: absolute;

    z-index: 1;

    border: 1px solid rgba(217, 0, 0, 0.13);

    border-radius: 50%;
}

.give-campus-card__decor span {
    position: absolute;

    inset: 25%;

    border: 1px solid rgba(217, 0, 0, 0.1);

    border-radius: 50%;
}

.give-campus-card__decor--one {
    width: 300px;
    height: 300px;

    right: -130px;
    top: -100px;
}

.give-campus-card__decor--two {
    width: 220px;
    height: 220px;

    left: -100px;
    bottom: -100px;
}


/* =========================================================
   FAQ
   ========================================================= */

.give-faq {
    padding: 120px 0 125px;

    background: var(--give-charcoal);

    color: var(--give-white);
}

.give-faq__heading {
    margin-bottom: 70px;

    text-align: center;
}

.give-faq__list {
    max-width: 1100px;

    margin-inline: auto;
}

.give-faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.give-faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.give-faq-question {
    width: 100%;

    min-height: 110px;

    padding: 22px 0;

    display: grid;

    grid-template-columns:
        80px
        1fr
        55px;

    align-items: center;

    gap: 20px;

    background: transparent;

    color: var(--give-white);

    text-align: left;

    cursor: pointer;
}

.give-faq-number {
    color: rgba(255, 255, 255, 0.45);

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: 35px;

    line-height: 1;
}

.give-faq-text {
    font-size: clamp(
        18px,
        2vw,
        27px
    );

    font-weight: 500;

    line-height: 1.3;
}

.give-faq-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.75);

    font-size: 27px;
    font-weight: 300;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.give-faq-question[aria-expanded="true"] .give-faq-icon {
    transform: rotate(45deg);

    background: var(--give-red);

    color: var(--give-white);

    border-color: var(--give-red);
}

.give-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s ease;
}

.give-faq-answer > div {
    overflow: hidden;
}

.give-faq-question[aria-expanded="true"] + .give-faq-answer {
    grid-template-rows: 1fr;
}

.give-faq-answer p {
    max-width: 760px;

    margin: -2px 80px 30px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   RED FOOTER AREA
   ========================================================= */

.give-red-footer {
    padding: 0 0 45px;

    background: var(--give-red);

    color: var(--give-white);
}


/* =========================================================
   GIVING CTA
   ========================================================= */

.give-cta {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;

    overflow: hidden;

    margin-top: -1px;

    padding: 65px 70px;

    border-radius: 0 0 24px 24px;

    background: var(--give-pink);

    color: var(--give-black);
}

.give-cta__content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.give-cta__eyebrow {
    margin: 0 0 9px;

    color: var(--give-red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.give-cta h2 {
    margin: 0;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: clamp(
        62px,
        7vw,
        105px
    );

    line-height: 0.8;

    font-weight: 400;
}

.give-cta__content > p:not(.give-cta__eyebrow) {
    max-width: 500px;

    margin: 22px 0 0;

    color: #555;

    font-size: 14px;

    line-height: 1.7;
}

.give-cta__buttons {
    display: flex;
    gap: 10px;

    margin-top: 25px;
}

.give-cta-button {
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.give-cta-button:hover {
    transform: translateY(-3px);
}

.give-cta-button--red {
    background: var(--give-red);

    color: var(--give-white);
}

.give-cta-button--outline {
    border: 1px solid rgba(0, 0, 0, 0.25);

    color: var(--give-black);

    background: transparent;
}

.give-cta-button--outline:hover {
    background: var(--give-black);

    color: var(--give-white);
}

.give-cta__illustration {
    position: absolute;

    right: 0;
    bottom: -50px;

    width: 48%;
    max-width: 520px;

    opacity: 0.25;
}

.give-cta__illustration svg {
    width: 100%;
    height: auto;

    fill: none;

    stroke: var(--give-red);

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.give-cta__illustration .give-social-fill {
    fill: var(--give-red);
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.give-newsletter {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.8fr);

    gap: 100px;

    padding: 110px 0 85px;

    align-items: center;
}

.give-newsletter__eyebrow {
    margin: 0 0 10px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.2em;

    opacity: 0.7;
}

.give-newsletter h2 {
    margin: 0;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: clamp(
        60px,
        6.5vw,
        96px
    );

    line-height: 0.82;

    font-weight: 400;
}

.give-newsletter__heading > p:last-child {
    max-width: 500px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;

    line-height: 1.8;
}

.give-newsletter__form {
    position: relative;

    display: grid;

    grid-template-columns: 1fr auto;

    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.give-newsletter__form input {
    width: 100%;

    height: 60px;

    padding: 0 5px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--give-white);

    font-size: 14px;
}

.give-newsletter__form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.give-newsletter__form button {
    min-width: 110px;

    height: 45px;

    margin-top: 7px;

    padding: 0 18px;

    border-radius: 999px;

    background: var(--give-white);

    color: var(--give-black);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.15em;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.give-newsletter__form button:hover {
    transform: translateY(-2px);

    background: var(--give-black);

    color: var(--give-white);
}

.give-newsletter__message {
    position: absolute;

    left: 5px;
    bottom: -28px;

    margin: 0;

    font-size: 11px;

    opacity: 0;
}

.give-newsletter__message.is-success {
    opacity: 1;
    color: #fff;
}

.give-newsletter__message.is-error {
    opacity: 1;
    color: #ffd0d0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.give-footer {
    padding-top: 50px;

    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.give-footer__grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.35fr
        0.8fr;

    gap: 50px;
}

.give-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.give-footer__column h3 {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.give-footer__column a {
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 11px;

    line-height: 1.5;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.give-footer__column a:hover {
    color: var(--give-black);

    transform: translateX(3px);
}


/* FOOTER BOTTOM */

.give-footer__bottom {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 65px;

    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.give-footer__apps {
    display: flex;

    gap: 10px;
}

.give-app-button {
    min-width: 145px;

    min-height: 45px;

    padding: 7px 13px;

    display: flex;
    align-items: center;

    gap: 9px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 7px;

    color: var(--give-white);

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.give-app-button:hover {
    background: var(--give-white);

    color: var(--give-black);
}

.give-app-button svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
}

.give-app-button span {
    display: flex;
    flex-direction: column;
}

.give-app-button small {
    font-size: 6px;

    line-height: 1;

    opacity: 0.8;
}

.give-app-button strong {
    margin-top: 3px;

    font-size: 11px;

    line-height: 1;
}


/* SOCIAL */

.give-footer__social {
    display: flex;
    gap: 8px;
}

.give-footer__social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.give-footer__social a:hover {
    background: var(--give-white);

    color: var(--give-black);
}

.give-footer__social svg {
    width: 16px;
    height: 16px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.give-footer__social svg .give-social-fill {
    fill: currentColor;

    stroke: none;
}


/* COPYRIGHT */

.give-footer__copyright {
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.give-footer__copyright p {
    margin: 0;

    color: rgba(255, 255, 255, 0.6);

    font-size: 9px;

    letter-spacing: 0.04em;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .give-header__inner {
        width: min(
            calc(100% - 45px),
            1400px
        );
    }

    .give-navigation {
        gap: 18px;
    }

    .give-navigation a {
        font-size: 9px;
    }

    .give-container {
        width: min(
            calc(100% - 50px),
            var(--give-container)
        );
    }

    .give-methods__intro {
        gap: 50px;
    }

    .give-banking-grid {
        grid-template-columns: 1fr;
    }

    .give-fidelity-card {
        grid-row: auto;
    }

    .give-giving-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .give-footer__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    .give-container {
        width: min(
            calc(100% - 36px),
            var(--give-container)
        );
    }


    /* HEADER */

    .give-header {
        height: 72px;
    }

    .give-header__inner {
        width: calc(100% - 30px);
    }

    .give-menu-toggle {
        display: block;
    }

    .give-navigation {
        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 8px 18px 20px;

        background: rgba(0, 0, 0, 0.98);

        border-top: 1px solid rgba(255, 255, 255, 0.1);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .give-navigation.is-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .give-navigation a {
        padding: 17px 5px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        font-size: 10px;
    }

    .give-navigation a::after {
        display: none;
    }


    /* HERO */

    .give-hero {
        height: 760px;
        min-height: 100svh;
    }

    .give-hero__image {
        background-position: 52% center;
    }

    .give-hero__content {
        margin-top: 30px;
    }

    .give-hero__title {
        font-size: clamp(
            62px,
            17vw,
            100px
        );
    }

    .give-hero__description {
        max-width: 500px;

        margin-top: 27px;

        font-size: 13px;
    }

    .give-hero__actions {
        flex-direction: column;

        margin-top: 25px;
    }

    .give-button {
        width: min(
            100%,
            250px
        );
    }


    /* METHODS */

    .give-methods {
        padding: 80px 0;
    }

    .give-methods__intro {
        display: block;

        margin-bottom: 45px;
    }

    .give-methods__copy {
        margin-top: 25px;
    }

    .give-section-title {
        font-size: clamp(
            60px,
            18vw,
            90px
        );
    }

    .give-account-tabs {
        width: 100%;

        margin-bottom: 35px;
    }

    .give-account-tab {
        min-width: 0;

        width: 50%;

        padding-inline: 8px;

        font-size: 8px;
    }

    .give-fidelity-card,
    .give-other-accounts,
    .give-paypal {
        padding: 25px;

        border-radius: 17px;
    }

    .give-fidelity-card {
        min-height: 0;
    }

    .give-fidelity-card h3 {
        font-size: 38px;
    }

    .give-account-row {
        padding: 19px 0;
    }

    .give-account-row strong {
        font-size: 18px;
    }

    .give-other-account {
        min-height: 90px;
    }

    .give-other-account__text strong {
        font-size: 9px;
    }

    .give-other-account__text b {
        font-size: 14px;
    }


    /* CAMPUS */

    .give-campus {
        padding: 80px 0 90px;
    }

    .give-campus__heading {
        margin-bottom: 40px;
    }

    .give-campus-card__inner {
        padding: 35px 25px;
    }

    .give-campus-card h3 {
        font-size: 63px;
    }

    .give-giving-options {
        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }

    .give-giving-option {
        min-height: 105px;

        padding: 15px;

        font-size: 11px;
        font-weight: 700;
    }


    /* FAQ */

    .give-faq {
        padding: 80px 0 85px;
    }

    .give-faq__heading {
        margin-bottom: 45px;
    }

    .give-faq-question {
        min-height: 90px;

        grid-template-columns:
            45px
            1fr
            42px;

        gap: 12px;
    }

    .give-faq-number {
        font-size: 27px;
    }

    .give-faq-text {
        font-size: 16px;
    }

    .give-faq-icon {
        width: 38px;
        height: 38px;

        font-size: 23px;
    }

    .give-faq-answer p {
        margin: 0 45px 25px;

        font-size: 13px;
    }


    /* CTA */

    .give-cta {
        min-height: 0;

        padding: 45px 25px 55px;

        border-radius: 0 0 18px 18px;
    }

    .give-cta h2 {
        font-size: 64px;
    }

    .give-cta__illustration {
        width: 75%;

        right: -90px;
        bottom: -20px;

        opacity: 0.16;
    }

    .give-cta__buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .give-cta-button {
        width: min(
            100%,
            220px
        );
    }


    /* NEWSLETTER */

    .give-newsletter {
        display: block;

        padding: 75px 0;
    }

    .give-newsletter__form {
        margin-top: 45px;
    }


    /* FOOTER */

    .give-footer {
        padding-top: 35px;
    }

    .give-footer__grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .give-footer__bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 45px;
    }

    .give-footer__apps {
        flex-wrap: wrap;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .give-container {
        width: calc(100% - 28px);
    }

    .give-logo__word {
        font-size: 10px;
    }

    .give-logo__mark {
        transform: scale(0.85);
        transform-origin: left center;
    }


    .give-hero {
        min-height: 720px;
        height: 100svh;
    }

    .give-hero__content {
        width: calc(100% - 28px);
    }

    .give-hero__title {
        font-size: clamp(
            58px,
            18vw,
            85px
        );
    }

    .give-hero__description {
        font-size: 12px;
    }


    .give-account-tabs {
        padding: 4px;
    }

    .give-account-tab {
        min-height: 43px;

        font-size: 7px;

        letter-spacing: 0.09em;
    }

    .give-fidelity-card,
    .give-other-accounts,
    .give-paypal {
        padding: 22px;
    }

    .give-account-row strong {
        font-size: 16px;
    }

    .give-account-label {
        font-size: 8px;
    }

    .give-copy-button {
        width: 36px;
        height: 36px;
    }


    .give-campus-card h3 {
        font-size: 57px;
    }

    .give-giving-option {
        min-height: 92px;

        font-size: 10px;
    }

    .give-selected-option {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }


    .give-faq-question {
        grid-template-columns:
            32px
            minmax(0, 1fr)
            38px;

        gap: 8px;
    }

    .give-faq-number {
        font-size: 22px;
    }

    .give-faq-text {
        font-size: 14px;
    }

    .give-faq-answer p {
        margin-left: 32px;
        margin-right: 35px;
    }


    .give-newsletter__form {
        display: block;

        padding-bottom: 12px;

        border-bottom: 0;
    }

    .give-newsletter__form input {
        height: 55px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    }

    .give-newsletter__form button {
        width: 100%;

        margin-top: 12px;
    }

    .give-newsletter__message {
        position: static;

        margin-top: 10px;
    }


    .give-footer__grid {
        grid-template-columns: 1fr;
    }

    .give-footer__bottom {
        align-items: flex-start;
    }

    .give-footer__apps {
        width: 100%;
    }

    .give-app-button {
        min-width: 135px;
        flex: 1;
    }

    .give-footer__social {
        margin-top: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .give-page *,
    .give-page *::before,
    .give-page *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

    .give-reveal {
        opacity: 1;
        transform: none;
    }

}