/* ==========================================================================
   PAGE A PROPOS - LAYOUT DYNAMIQUE
   ========================================================================== */

.about-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--black);
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-grid {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* Gestion des largeurs : 50/50 pour un aspect équilibré sur l'histoire */
.about-image, .about-text {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Titres en FetteEngD */
.about-title {
    font-family: "FetteEngD W03 Regular", sans-serif !important;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 0.9;
    margin: 20px 0 35px 0;
    text-transform: uppercase;
}

/* Corps de texte (Style Exposition) */
.about-body p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8; /* Interlignage élégant */
    letter-spacing: 0.02em;
    margin-bottom: 25px;
    color: #1a1a1a;
}

/* Inversion sur Mobile et pour la section DA */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-section.reverse .about-grid {
        flex-direction: column-reverse;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
}