/* NFM Donation Info Block Styles */

.nfm-donation-block {
    background: #00BAB3;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 50px;
    box-sizing: border-box;
    width: 100%;
    max-width: 960px;
    margin: 64px auto;
}

/* Background vectors */
.nfm-donation-block__bg-vector-behind {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.nfm-donation-block__bg-vector-behind img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nfm-donation-block__bg-vector-front {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.nfm-donation-block__bg-vector-front img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Badge (DEFAULT: in title row) */
.nfm-donation-block__cta-badge {
    position: relative;
    min-width: 160px;
    width: 200px;
    aspect-ratio: 235.5 / 228;
    z-index: 10;
    flex-shrink: 0;
}

/* V2 variant: CTA badge in content row */
.nfm-donation-block--v2 .nfm-donation-block__cta-badge {
    width: 235.5px;
    flex-shrink: 1;
}

.nfm-donation-block__cta-badge img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
}

/* Title Row: Contains title + CTA badge side by side (DEFAULT LAYOUT) */
.nfm-donation-block__title-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 5;
    margin: 0 0 60px 0;
    width: 100%;
}

/* DEFAULT LAYOUT: Constrain title row width to match stats cards */
.nfm-donation-block:not(.nfm-donation-block--v2) .nfm-donation-block__title-row {
    max-width: 670px;
    margin: 0 auto 60px auto;
}

/* Title */
.nfm-donation-block__title {
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.1;
    color: #ffffff;
    font-size: clamp(36px, 7vw, 71px);
    text-align: right;
    letter-spacing: -0.04em;
    white-space: pre-wrap;
    z-index: 5;
    margin: 0;
    flex: 1;
}

/* V2 variant: Title spans full width above content */
.nfm-donation-block--v2 .nfm-donation-block__title {
    width: 100%;
    margin: 0 0 100px 0;
}

/* Content Row: Contains stats wrapper and CTA badge side by side */
.nfm-donation-block__content-row {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 5;
    width: 100%;
}

/* Stats Wrapper */
.nfm-donation-block__stats-wrapper {
    flex: 0 0 auto;
    max-width: 550px;
    flex-shrink: 1;
    min-width: 450px;
    position: relative;
    z-index: 5;
}

/* DEFAULT LAYOUT: Full width stats wrapper */
.nfm-donation-block:not(.nfm-donation-block--v2) .nfm-donation-block__stats-wrapper {
    max-width: 100%;
    min-width: 450px;
}

/* Stats Container */
.nfm-donation-block__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
}

/* DEFAULT LAYOUT: Center aligned stats */
.nfm-donation-block:not(.nfm-donation-block--v2) .nfm-donation-block__stats {
    justify-content: center;
}

/* Stat Cards */
.nfm-donation-block__card {
    background: #d92d6a;
    border: 1px solid #ffb549;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: 20px;
    flex: 1 1 calc(50% - 5px);
    min-width: 220px;
    max-width: 262px;
    position: relative;
    z-index: 5;
}

/* DEFAULT LAYOUT: Wider cards */
.nfm-donation-block:not(.nfm-donation-block--v2) .nfm-donation-block__card {
    max-width: 330px;
}

.nfm-donation-block__card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #ffffff;
    width: 100%;
    justify-items: flex-start;
    align-items: start;
}

.nfm-donation-block__card-value {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    font-size: 39px;
    text-align: left;
    letter-spacing: -1.56px;
    margin: 0;
    padding-bottom: 0;
}

.nfm-donation-block__card-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 16px;
    letter-spacing: -0.48px;
    margin: 0;
    white-space: pre-wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nfm-donation-block {
        min-height: auto;
        padding: 30px 20px;
    }

    /* DEFAULT: Title row stacks */
    .nfm-donation-block__title-row {
        align-items: center;
        margin: 0 0 30px;
    }

    .nfm-donation-block__cta-badge {
        width: 180px;
    }

    /* V2 variant */
    .nfm-donation-block--v2 .nfm-donation-block__title {
        margin: 0 0 30px;
    }

    .nfm-donation-block--v2 .nfm-donation-block__content-row {
        flex-direction: column;
        align-items: center;
    }

    .nfm-donation-block__stats-wrapper {
        max-width: 100%;
        width: 100%;
    }

    /* DEFAULT: Remove min-width constraint */
    .nfm-donation-block:not(.nfm-donation-block--v2) .nfm-donation-block__stats-wrapper {
        min-width: 0;
    }

    .nfm-donation-block__stats {
        align-items: stretch;
    }

    .nfm-donation-block__card {
        width: 100%;
        max-width: 100%;
    }

    /* DEFAULT: Remove max-width constraint */
    .nfm-donation-block:not(.nfm-donation-block--v2) .nfm-donation-block__card {
        max-width: 100%;
    }

    .nfm-donation-block__card-value {
        font-size: 28px;
    }

    .nfm-donation-block--v2 .nfm-donation-block__cta-badge {
        margin-top: 20px;
    }
}

@media (max-width: 550px) {
    .nfm-donation-block {
        border-radius: 16px;
    }

    .nfm-donation-block__stats {
        flex-direction: column;
    }

    .nfm-donation-block__stats-wrapper {
        min-width: 0;
    }
}

@media (max-width: 475px) {
    /* DEFAULT: Title row stacks vertically */
    .nfm-donation-block:not(.nfm-donation-block--v2) .nfm-donation-block__title-row {
        flex-direction: column;
    }

    .nfm-donation-block:not(.nfm-donation-block--v2) .nfm-donation-block__title {
        text-align: center;
        margin: 0 0 20px;
    }
}
