/* Container principal */
.behind-scenes-container {
    display: flex;
    width: 100%;
    min-height: 500px;
}

@media screen and (max-width: 1023px) {
    .behind-scenes-container {
        flex-direction: column;
        min-height: auto;
    }
}

/* Section gauche */
.behind-scenes-left {
    width: 50%;
    flex: none;
    background-color: #F5F0E8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

@media screen and (max-width: 1023px) {
    .behind-scenes-left {
        width: 100%;
        padding: 30px 20px;
        min-height: 400px; 
    }
}

/* Section droite */
.behind-scenes-right {
    width: 100%;
    flex: none;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

@media screen and (max-width: 1023px) {
    .behind-scenes-right {
        display: none;
    }
}

.behind-scenes-video {
    width: 70%;
    max-width: 400px;
}

@media screen and (max-width: 1023px) {
    .behind-scenes-video {
        width: 65% !important; 
        /* max-width: 250px !important;  */
    }
}
.behind-scenes-video video {
    width: 100%;
    height: auto;
    display: block;
}

.behind-scenes-text {
    margin-top: 20px;
    text-align: center;
    max-width: 350px;
}

@media screen and (max-width: 1023px) {
    .behind-scenes-text {
        max-width: 210px !important;
    }
}

.behind-scenes-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px!important;
    line-height: 160%;
    color: #4A2D2D;;
}

@media screen and (max-width: 1023px) {
    .behind-scenes-text p {
        font-size: 13px !important;
        line-height: 130% !important;
    }
}

.instagram-link {
    color: #4A2D2D;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.instagram-link:hover {
    opacity: 0.7;
}
