

.emres-seances-container {
      width: 90%;
    max-width: 1200px;
    padding: 1rem;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.emres-seances {
    width: 100%;
    height: fit-content;
    display: flex;
    
    padding: 1rem;
    border-bottom: 1px solid black;
   
}

.emres-seances-img {
    max-width: 50%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


.emres-seances-infos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    padding: 1rem;
    width: 50%;
}

/* version mobile */

@media (max-width: 862px) {
 
.emres-seances {
flex-direction: column;
   align-items: center;
}


}