/* Styles pour la pop-up */
.popup-container {
    display: none;
    position: fixed;
    top: -24px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.popup-content-wide {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 1200px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    max-height: 90vh;
}

.closeBtn {
    color: #333;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

#blogPopupImage {
    float: left; /* L'image sera alignée à gauche du texte */
    margin-right: 20px; /* Ajouter de l'espace entre l'image et le texte */
    margin-bottom: 20px;
    width: 30%; /* Réduire la largeur de l'image à 30% du conteneur */
    /* max-height: 200px; Limiter la hauteur de l'image à 200px */
    object-fit: cover; /* Pour que l'image garde ses proportions sans être déformée */
    border-radius: 8px;
}



#blogPopupTitle {
    margin-bottom: 10px;
}

#blogPopupDate {
    font-weight: bold;
}

#blogPopupContent {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}
