/**
 * Social Proof Carousel Section
 *
 * @package T3BR
 */

/* ========================================
   Layout
   ======================================== */
.social-proof {
    background-color: var(--t3br-cream-dark);
}

.social-proof__row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--t3br-spacing-xl);
}

/* ========================================
   Stat blocks (clients / experience)
   ======================================== */
.social-proof__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 160px;
}

.social-proof__number {
    display: block;
    line-height: 1;
    color: var(--t3br-primary);
    margin-bottom: var(--t3br-spacing-xs);
}

.social-proof__label {
    font-size: var(--t3br-font-size-md);
    color: var(--t3br-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* ========================================
   Carousel column
   ======================================== */
.social-proof__carousel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Hide the nested section wrapper from avis-carousel.php */
.social-proof__carousel .avis-carousel-section {
    padding: 0;
    margin: 0;
}

