/* === SECTION PRÉSENTATION & DERNIER NUMÉRO === */
.presentation-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;  /* ✅ Aligne les 2 colonnes à la même hauteur */
    max-width: 1140px;
    margin: 50px auto;
    gap: 20px;
}

.presentation-text {
    width: 60%;
    background: white;
    padding: 25px;
    border-radius: 6px;
    text-align: justify;
    border: 1px solid #ddd;
    line-height: 1.4;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;            /* ✅ Étire verticalement */
    flex-direction: column;
}

.dernier-numero {
    width: 40%;
    background: white;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;            /* ✅ Étire verticalement */
    flex-direction: column;
}

/* ✅ Titre bien centré */
.dernier-numero h2,
.dernier-numero h3 {
    text-align: center;
    margin-bottom: 15px;
}

/* ✅ Image prend TOUTE la largeur du conteneur */
.dernier-numero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 10px;
}

/* === ✅ RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .presentation-section {
        flex-direction: column;   /* ✅ Passe en colonne sur tablette */
        gap: 20px;
        padding: 0 15px;
    }
    .presentation-text,
    .dernier-numero {
        width: 100%;              /* ✅ Les blocs prennent toute la largeur */
    }
}

@media (max-width: 576px) {
    .presentation-section {
        margin: 20px auto;
    }
    .presentation-text,
    .dernier-numero {
        padding: 15px;
        font-size: 15px;
    }
}
