.studio-list-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;

}

.studio-list {
width: 90%;
height: fit-content;
padding: 1rem;
display: flex;
flex-direction: column;
gap: 1rem;

}

.studio-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: fit-content;
}

.studio-documentaire-single {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;

    padding: 1rem;



}

.studio-documentaire-single-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
  
    border-right: 2px solid white;
    width: 50%;
    min-width: 300px;
    margin: auto;
}

.studio-documentaire-single-infos h3 {
    font-size: 25px;
    font-weight: bold;
}

.video-youtube {
    padding: 1rem;
    width: 50%;
    min-width: 300px;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    margin: 1em auto;
    overflow: hidden;
}

.video-youtube iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* version mobile */

@media (max-width: 862px) { 
    
.studio-list {
width: 95%;
padding: 0rem;
}

.studio-documentaire-single-infos { 
    border-right: 0px solid white;
    border-bottom: 1px solid white;
   
}

}