/* Fix pour les titres de section sur mobile */
.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem) !important;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Fraunces', serif !important;
    font-weight: 500;
    color: var(--vert-profond);
}

.section-title br {
    display: inline;
}

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .section-title br {
        display: none;
    }
}
