/**
 * CFRO Component — Fundraising CTA (Figma v3)
 * @package CFRO
 * @since   4.0.0
 */

.cfro-fundraising {
    padding: 4rem 0;
    background: var(--cfro-forest-dark);
    color: var(--cfro-white);
}
.cfro-fundraising__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.cfro-fundraising h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--cfro-white);
    margin: 0 0 1rem;
}
.cfro-fundraising__desc {
    font-size: 1.05rem;
    opacity: 0.85;
    margin: 0 0 2rem;
    line-height: 1.6;
}

/* Progress bar */
.cfro-progress {
    margin-bottom: 0.5rem;
}
.cfro-progress__bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--cfro-radius-pill);
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.cfro-progress__fill {
    height: 100%;
    background: var(--cfro-accent);
    border-radius: var(--cfro-radius-pill);
    transition: width 1s ease;
}
.cfro-progress__labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.8;
}
.cfro-progress__note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0.5rem 0 2rem;
}

/* Stats row */
.cfro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.cfro-stat {
    text-align: center;
}
.cfro-stat__number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cfro-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.cfro-stat__label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA callout box */
.cfro-fundraising__callout {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--cfro-radius-lg);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cfro-fundraising__callout-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
    margin-bottom: 0.25rem;
}
.cfro-fundraising__callout-amount {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.cfro-fundraising__callout p {
    font-size: 0.85rem;
    opacity: 0.75;
    margin: 0 0 1rem;
}
