.topMvMain {
    padding: 0 15px;
}
.topMvMain-movie {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.topMvMain-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: rgba(243, 89, 37, 0.08);
    padding: 16px 0;
}
.topMvMain-row-book {
    width: 50%;
    max-width: 300px;
}
.topMvMain-row-body {
    position: relative;
    padding-left: 14%;
    padding-right: 24px;
}
.topMvMain-row-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36%;
    max-width: 200px;
}
.topMvMain-YouTube {
    width: 100%;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 1024px) {
    .topMvMain-row {
        flex-direction: column-reverse;
        padding-bottom: 130px;
    }
    .topMvMain-row-book {
        width: 100%;
    }
    .topMvMain-row-body {
        position: relative;
        padding-left: 14%;
        padding-right: 0;
        margin-top: 24px;
    }
    .topMvMain-row-image {
        bottom: -52px;
    }
}
@media screen and (max-width: 900px) {
    .topMvMain-movie {
        flex-direction: column;
    }
    .topMvMain-row-image {
        width: 33%;
    }
}