.theatre_spectacle_page {
    display: flex;
    width: 100%;
    gap: 0;
    background-color: #fff;
}

.theatre_spectacle_page__aside {
    max-width: 100%;
}

.theatre_spectacle_page__aside--first {
     width: 40%;
    overflow: hidden;
}

.theatre_spectacle_page__aside--second {
    position: relative;
    z-index: 1;
    width: 60%;
    box-shadow: -15px 1px 5px 1px rgba(0, 0, 0, 0.255);
    padding: 3rem 2rem;
}

.theatre_spectacle_page_aside__img {
    width: auto;
    min-width: 100%;
    height: 100%;
    max-width: none;
}

.theatre_spectacle_page__title {
    margin: 2rem auto;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .theatre_spectacle_page {
        flex-direction: column;
    }

    .theatre_spectacle_page__aside--first {
        width: 100%;
    }

    .theatre_spectacle_page_aside__img {
        width: 100%;
        min-width: auto;
        height: auto;
        max-width: 100%;
    }

    .theatre_spectacle_page__aside--second {
        width: 100%;
        box-shadow: none;
        padding: 0 1.2rem 3rem;
    }

    .theatre_spectacle_page__title {
        margin: 1.5rem auto;
        text-align: center;
    }
}
