

.centered-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}
/*
.affiche-salon {
    border-radius: 8px;
    max-height: 100%;
    object-fit: contain;
}

/* Desktop par défaut */
.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 100%;
    gap: 2rem;
}

.content-wrapper > img {
    flex-shrink: 0;
    width: auto;
    max-width: 40%;
    max-height: 100%;
}

.text-block {
    flex: 1;
    overflow-y: auto;
    height: 100%;
}

.text-block p {
    margin-bottom: 0.8rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

/* ===== AFFICHAGE DESKTOP/MOBILE ===== */
.text-desktop {	display: block;	}										/* Texte pour desktop - visible par défaut */
.text-mobile {	display: none;	}										/* Texte pour mobile - caché par défaut */


/* Mobile */
@media (max-width: 768px) {
    .centered-inner { display: block; }
    .content-wrapper { display: block; height: auto; }
    .content-wrapper > img {
        float: right;
        width: 40%;
        max-width: 40%;
        margin-left: 1rem;
        margin-bottom: 1rem;
    }
    .text-block {
        display: block;
        height: auto;
        overflow-y: visible;
    }
    .content-wrapper::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* Media query pour mobile */
@media screen and (max-width: 768px) {
    .text-desktop {
        display: none;
    }
    
    .text-mobile {
        display: block;
    }
}
