.__scene .__two-columns {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    width: 90%;
    padding: 0 5%;
}

.__scene .__two-columns > * {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.__scene .__two-columns.--with-white-background {
    padding: 0;
    position: relative;
}
.__scene .__two-columns.--with-white-background > *:not(.__floating-area) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;

    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 20px 30px 30px;
    box-sizing: border-box;
}
.__scene .__two-columns.--with-white-background h2 {
    padding: 0;
    font-size: 35px;
}
.__scene .__two-columns.--with-white-background p {
    margin: 0;
}
.__scene .__two-columns.--with-white-background .__floating-area {
    max-width: unset;
}

.__scene .__two-columns h2,
.__scene .__two-columns p.--depict {
    text-align: left;
    margin: 0;
}

.__scene .__two-columns .__column-graphics {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.__scene .__two-columns .__column-graphics img,
.__scene .__two-columns .__column-graphics video {
    max-width: 100%;
    max-height: 100%;
}

.__scene .__two-columns.--full-width .--half-width-in-full-width h2,
.__scene .__two-columns.--full-width .--half-width-in-full-width p {
    max-width: unset;
}

@media (min-width: 1024px) {
    .__scene .__two-columns > * {
        margin: unset;
    }

    .__scene .__two-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 768px;
        gap: 80px;
    }

    .__scene .__two-columns.--full-width {
        width: 100%;
        padding: unset;
    }

    .__scene .__two-columns .__column-graphics {
        max-height: 600px;
        max-width: unset;
        padding-left: 40px;
        box-sizing: border-box;
    }

    .__scene .__two-columns .__column-graphics.--square {
        aspect-ratio: 1;
        height: 100%;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .__scene .__two-columns.--full-width .--half-width-in-full-width {
        width: 340px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .__scene .__two-columns.--reverse-columns.--full-width .--half-width-in-full-width {
        margin-left: auto;
    }

    .__scene .__two-columns.--reverse-columns.--full-width .__column-graphics:not(.--square) {
        padding-left: unset;
        padding-right: 40px;
    }

    .__scene .__two-columns.--reverse-columns > *:nth-of-type(2) {
        order: -1;
    }

    .__scene .__two-columns.--full-width .--half-width-in-full-width h2 {
        font-size: 34px;
    }
}

@media (min-width: 1200px) {
    .__scene .__two-columns {
        width: 1024px;
    }

    .__scene .__two-columns.--full-width .--half-width-in-full-width {
        width: 480px;
    }
}
