/* Impact Stats Widget Styles */

.impact-stats-widget {
    width: 100%;
    margin: 0 auto;
}

.impact-stats-widget-inner {
    display: flex;
    flex-direction: row;
    gap: 0;
    min-height: 300px;
}

/* CTA Section (Left) */
.impact-stats-cta {
    flex: 2;
    background-color: #1e3268;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

.impact-stats-cta-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.impact-stats-pretitle {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: auto;
    opacity: 0.9;
}

.impact-stats-title {
    font-size: 3.375rem;
    font-weight: 600;
    line-height: 100%;
    margin: auto 0 20px 0;
    color: #FFFFFF;
}

.impact-stats-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 24px;
    opacity: 0.95;
}

.impact-stats-btn {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5rem;
    align-self: flex-start;
}



/* Stats Section (Right) */
.impact-stats-stats {
    flex: 1;
    background-color: #f1f2f2;
    color: #1e3268;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.impact-stats-stat-item {
    padding: 15px 0;
    text-align: left;
}

.impact-stats-stat-value {
    font-size: 4rem;
    font-weight: 600;
    line-height: 3.875rem;
    margin-bottom: 8px;
    color: #1e3268;
}

.impact-stats-stat-description {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #1e3268;
    opacity: 0.9;
}

.impact-stats-divider {
    height: 1px;
    background-color: #1e326840;
    margin: 8px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .impact-stats-widget-inner {
        flex-direction: column;
        min-height: auto;
    }

    .impact-stats-cta,
    .impact-stats-stats {
        padding: 32px 24px;
    }

    .impact-stats-pretitle {
        font-size: 0.75rem;
        line-height: 1.5rem;
    }

    .impact-stats-title {
        font-size: 1.75rem;
        line-height: 100%;
        margin-bottom: 16px;
    }

    .impact-stats-description {
        font-size: 0.875rem;
        line-height: 140%;
        margin-bottom: 20px;
    }

    .impact-stats-btn {
        display: block;
        text-align: center;
        font-size: 0.875rem;
        line-height: 1.375rem;
        padding: 14px 24px;
    }

    .impact-stats-stat-value {
        font-size: 1.75rem;
        line-height: 120%;
    }

    .impact-stats-stat-description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .impact-stats-stat-item {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .impact-stats-cta,
    .impact-stats-stats {
        padding: 24px 20px;
    }

    .impact-stats-title {
        font-size: 1.75rem;
    }

    .impact-stats-stat-value {
        font-size: 1.75rem;
    }

    .impact-stats-stat-description {
        font-size: 1rem;
    }
}
