/**
 * Proof/Stats Section CSS
 * Single responsibility: styles for proof-stats section on homepage
 */

.proof-stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.proof-stat-item {
    padding: 30px 20px;
    margin-bottom: 30px;
}

.proof-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--theme-primary, #522546);
    line-height: 1.2;
    margin-bottom: 10px;
}

.proof-stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 991px) {
    .proof-stat-number {
        font-size: 36px;
    }
    
    .proof-stat-label {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .proof-stats-section {
        padding: 40px 0;
    }
    
    .proof-stat-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .proof-stat-number {
        font-size: 32px;
    }
    
    .proof-stat-label {
        font-size: 14px;
    }
}
