/* ==========================================================================
   PAGE EXPOSITION - DESIGN SYSTÈME
   ========================================================================== */


.expo-detail-container {
    display: flex;
    justify-content: space-between;
    gap: 60px; /* Espace fixe entre les deux colonnes */
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
}

/* --- COLONNE GAUCHE (25%) --- */
.expo-sidebar {
    flex: 0 0 25%;
    max-width: 25%; /* Verrouillage strict */
}

/* Titre Principal */
.expo-main-title {
    /* Correction du nom de la police pour correspondre à l'import HTML */
    font-family: "FetteEngD W03 Regular", sans-serif !important; 
    font-size: clamp(2.5rem, 4.5vw, 4.5rem); 
    line-height: 0.85;
    margin: 20px 0 30px 0;
    text-transform: uppercase;
    word-wrap: break-word;
}

/* Style Date/Artiste identique au Tag Jaune (sans le fond) */
.sidebar-item {
    border-top: 1px solid var(--black);
    padding: 12px 0;
}

/* Style Date/Artiste identique au Tag Jaune (sans le fond) */
.sidebar-tag-style {
    /* Même correction de police ici */
    font-family: "FetteEngD W03 Regular", sans-serif !important;
    text-transform: uppercase;
    font-size: 0.9rem; /* Taille ajustée pour correspondre au tag */
    letter-spacing: 0.05em;
    color: var(--black);
    margin: 0;
}

.sidebar-affiche {
    border-top: 1px solid var(--black);
    padding-top: 20px;
}

.sidebar-affiche img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-separator {
    border-top: 1px solid var(--black);
    margin-top: 20px;
}

/* --- COLONNE DROITE (75%) --- */
.expo-content {
    flex: 0 0 calc(75% - 60px);
    max-width: calc(75% - 60px);
}

.expo-hero-img, .gallery-item {
    margin-bottom: 40px;
}

.expo-hero-img img, .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   CORPS DE TEXTE ÉLÉGANT (SANS LETTRINE)
   ========================================================================== */

.expo-body-text {
    margin: 40px 0;
    max-width: 800px; /* Garde une largeur optimale pour la lecture */
}

.expo-body-text p {
    /* Utilisation de Montserrat pour l'élégance */
    font-family: 'Montserrat', sans-serif; 
    
    /* Poids léger pour un aspect haut de gamme */
    font-weight: 300; 
    
    /* Taille de lecture confortable */
    font-size: 1.15rem; 
    
    /* Interlignage généreux pour la clarté */
    line-height: 1.8; 
    
    /* Espacement léger des lettres */
    letter-spacing: 0.02em; 
    
    /* Couleur anthracite pour éviter un contraste trop dur */
    color: #1a1a1a; 
    
    margin-bottom: 30px;
    text-align: left;
    
    /* Lissage de la police */
    -webkit-font-smoothing: antialiased;
}

/* Suppression de l'effet de lettrine précédemment proposé */
.expo-body-text p:first-of-type::first-letter {
    font-family: inherit;
    font-size: inherit;
    float: none;
    line-height: inherit;
    margin-right: 0;
    margin-top: 0;
    text-transform: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .expo-detail-container {
        flex-direction: column;
        gap: 40px;
    }
    .expo-sidebar, .expo-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .expo-main-title {
        font-size: 3.5rem;
    }
}