.evenements {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.evenement {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    margin: 10px 0;
}

.evenement-link-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
}

.evenement-date {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    background-color: #FF7705;
    border-radius: 5px 0px 0px 5px;
    padding: 10px;
    color: black;
}

.evenement_presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 0px 5px 5px 0px;
}
.evenement_presentation p {
    align-items: center;
    color: black;
    font-size: 16px;
    padding: 10px;
    font-weight: bold;
}

.mb-2 {
	margin-bottom: 1em;
}

.fusion-layout-column-6 {
	--awb-col-width: 50%;
	padding: 0 10px;
}

/* Responsivité */
@media (max-width: 768px) {
    .bouton-responsive {
        max-width: 90%;
        font-size: 16px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .bouton-responsive {
        font-size: 16px;
        height: 35px;
    }
}
.textarea-min-width {
    min-width: 577px;
}

@media (max-width: 767px) {
    .textarea-min-width {
        min-width: 100%;      
    }
}

