/**
 * Donation Hero Styles
 */

.donation-hero {
    position: relative;
    padding-top: 173px !important;
    padding-bottom: 0 !important;

    margin-top: 0 !important;
}

.donation-hero__wrapper::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1 / 8;
    background-color: var(--wp--preset--color--light-sage) !important;
    z-index: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -173px;
    margin-bottom: 35px;
}


.donation-hero__wrapper {
    display: grid;
    /* 12 columns for horizontal flexibility */
    grid-template-columns: repeat(12, 1fr);
    /* 12 rows for precise vertical control and overlap */
    grid-template-rows: repeat(12, auto);
    gap: 10px 5px;
}

/* --- Left Column: Groups 1 & 3 --- */

/* Group 1: Top Left (Title + Image) - 8 Rows */
.donation-hero__group--top-left {
    grid-column: 1 / 7;
    grid-row: 1 / 8;
    /* Rows 1 to 8 (8 rows) */
    display: flex;
    flex-direction: column;
    gap: 75px;
    z-index: 1;
    padding-right: 66px;
}

/* Group 3: Bottom Left (Card) - 4 Rows */
.donation-hero__group--bottom-left {
    grid-column: 1 / 7;
    grid-row: 8 / 12;
    /* Rows 9 to 12 (4 rows) */
    padding-top: 60px;
    padding-right: 64px;
}

.donation-hero__content-card.is-style-blue-card {
    padding-top: 0;
    padding-bottom: 0;

}

/* --- Right Column: Groups 2 & 4 --- */

/* Group 2: Top Right (Intro) - 5 Rows */
.donation-hero__group--top-right {
    grid-column: 7 / 13;
    grid-row: 1 / 6;
    /* Rows 1 to 5 (5 rows) */
    padding-top: 79px;
    padding-left: 6px;

    /* Offset to align with title text */
}

.donation-hero__group--top-right .card--appeal-stats {
    font-weight:400;
}

.donation-hero__group--top-right .card--appeal-progress {
    width: 100%;
    height: 8px;
    background-color: #92d6d9;
    border-radius: 10px;
    position: relative;
    margin-top: auto;


}

.donation-hero__group--top-right .progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: white;
    border: 3px solid var(--wp--preset--color--green);
    border-radius: 50%;
}

.donation-hero__group--top-right .progress-bar {
    height: 100%;
    background-color: var(--wp--preset--color--green);
    border-radius: 10px;
    position: relative;
}

/* Group 4: Bottom Right (Form) - 7 Rows */
/* Starts at row 6, overlapping vertically with Group 1 (which ends at row 8) */
.donation-hero__group--bottom-right {

    padding-left: 6px;
    grid-column: 7 / 13;
    grid-row: 5 / 12;
    /* Rows 6 to 12 (7 rows) */
    z-index: 10;
    padding-top: 112px;
}

/* --- Rest of the internal styles --- */

.donation-hero__header-content h1 {
    margin: 0;

}

.donation-hero__media {
    border-radius: 8px;
    overflow: hidden;
    position: relative;

}

.donation-hero__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 614 / 400;
    object-fit: cover;
}

/*
.image-credit {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    padding: 8px 18px;
    font-size: 13px;
    font-style: italic;
    color: var(--wp--preset--color--dark-green);
    border-top-left-radius: 12px;
    backdrop-filter: blur(4px);
}
*/
.image-credit svg {
    display: none;
}

.donation-hero__group--top-right .md-text-large {
    font-weight: 700;
    line-height: 1.45;
    font-size: 20px;
    color: var(--wp--preset--color--dark-green);
    margin-bottom: 32px;
    position: relative;
}

.donation-hero__content-card h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--wp--preset--color--dark-green);
    font-weight: 800;
}

.donation-hero__content-card .md-text {
    line-height: 1.6;
    color: var(--wp--preset--color--dark-green);
}

/* Responsive */
@media (max-width: 800px) {
    .donation-hero {
        padding-top: 140px !important;
    }

    .donation-hero__wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--gutter);
    }

    .donation-hero__wrapper::before {
        margin-top: -140px;

        position: absolute;
        height: 50%;
        width: calc((var(--gutter) * 2) + 100%);
        left: calc(var(--gutter) * -1);
        z-index: -1;
        top: 0;
        margin-bottom: 0;
    }

    .donation-hero__group--top-left,
    .donation-hero__group--top-right,
    .donation-hero__group--bottom-left,
    .donation-hero__group--bottom-right {
        grid-column: 1 / -1;
        grid-row: auto;
        padding-top: 0;
        margin-top: 0;
    }

    .donation-hero__group--bottom-right {
        padding-left: 0;
    }

    .donation-hero {
        padding-top: 40px;
    }

    .donation-hero__content-card {
        background: transparent !important;
    }

    .donation-hero__header-content {
        order: 0;
    }

    .donation-hero__group--top-right {
        order: 1;
    }

    .donation-hero__media {
        order: 2;
    }

    .donation-hero__group--bottom-right {
        order: 3;
    }

    .donation-hero__group--bottom-right .md-donation-form {
        box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.10);
    }

    .donation-hero__group--bottom-left {
        order: 6;
        padding-top: 22px !important;
        padding-bottom: 10px !important;
    }

    .donation-hero__group--bottom-left .md-text {
        margin: 0;
    }

    .donation-hero__group--top-left {
        gap: 0;
        display: contents;
    }

    .donation-hero__group--top-left,
    .donation-hero__group--bottom-left,
    .donation-hero__group--bottom-left .is-style-blue-card {
        padding: 0;
        width: 100%;
    }
}