/**
 * Impact Counter Styles
 */

.impact-counter-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary, #0A3242);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
}

.counter-value {
    display: inline-block;
}

.counter-suffix {
    font-size: 0.6em;
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light, #444);
    margin-top: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

