/* ===========================================
    BEFORE/AFTER - VERSION 2 - AVEC INFOS
    =========================================== */
.ba-section-2 {
    padding: 100px 5%;
    background: color-mix(in srgb, var(--gray-light) 40%, var(--white));
}
.ba-section-2 .header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.ba-section-2 .eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.ba-section-2 h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--black);
}
.ba-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.ba-card .ba-slider {
    max-width: none;
}
.ba-card-info {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.ba-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 6px;
}
.ba-card-info p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}
.ba-card-stats {
    display: flex;
    gap: 40px;
}
.ba-stat {
    text-align: center;
}
.ba-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary);
    line-height: 1;
}
.ba-stat-label {
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-top: 4px;
}
@media (max-width: 640px) {
    .ba-card-info { flex-direction: column; text-align: center; padding: 24px 20px; }
    .ba-card-stats { gap: 30px; }
}
/* ── TITRES : couleur de survol explicite (CLAUDE.md §4.13) ──────────
   Le main.css des themes stylise les balises Hn, hover compris. Chaque
   titre reprend ici sa couleur de base pour neutraliser cet heritage. */
.ba-card-info h3:hover,
.ba-section-2 h2:hover {
  color: var(--black);
}
