/* ── STATS COACHING ── */
.coaching-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coaching-stat {
    background: #f5f5f5;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 32px;
}

.coaching-stat .srh-stat-number {
    color: var(--gray-900);
}

.coaching-stat .srh-stat-desc {
    color: var(--gray-500);
    opacity: 1;
}

/* ── TÉMOIGNAGE ── */
.coaching-testimonial {
    background: var(--gray-900);
    border-radius: 4px;
    padding: 28px 32px;
}

.coaching-testimonial-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 12px;
}

.coaching-testimonial-author {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
    margin: 0;
}

/* ── 3 COLONNES POUR LES CARDS ── */
.srh-cards--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

/* ── BOUTON MULTI-LIGNE ── */
.coaching-btn-multiline {
    line-height: 1.4;
    text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .srh-cards--3 {
        grid-template-columns: 1fr;
    }
}
