/* Conteneur principal */
.event-single {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
}

/* Conteneur en pleine largeur avec fond */
.event-fullwidth-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 20px;
    background-color: #afe2d9 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    /*min-height: 300px; /* Hauteur minimale du conteneur */
    font-size: 0;
    line-height: 0;
}

/* Conteneur interne pour l'image */
.event-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Largeur max pour éviter les images trop larges */
    text-align: center;
}

/* Image avec object-fit: contain */
.event-fullwidth-img {
    max-width: 100%;
    max-height: 250px; /* Hauteur max de l'image */
    object-fit: contain; /* Affiche l'image entière */
    width: auto !important; /* Largeur automatique */
    height: auto !important; /* Hauteur automatique */
}

/* Pour mobile */
@media (max-width: 768px) {
    .event-fullwidth-image {
        margin-left: -20px;
        margin-right: -20px;
        min-height: 200px;
    }
    .event-fullwidth-img {
        max-height: 200px;
    }
}

/* Titre */
.event-title {
    margin-bottom: 15px;
    text-align: center;
}

/* Métadonnées */
.event-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.event-date-time,
.event-location,
.event-cost {
    margin: 5px 0;
    font-weight: bold;
}

/* Contenu */
.event-content {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Pied de page */
.event-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Bouton d'inscription */
.event-website-button {
    background: #7CCCBF;
    color: white;
    padding: 12px 34px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9em;
}

/* Tags */
.event-tags {
    margin-bottom: 10px;
    margin-top: 20px;
    font-style: italic;
}
