.wrapper.movie .content {
    background: transparent;
    box-shadow: none;
    padding:0;
}

.movielist {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.movielist li {
    background: #fff;
    width: 48.5%;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 3px var(--pink3);
    margin-bottom: 2em;
}

.movielist li iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    margin-bottom: 0.5em;
}

.movielist li p {
    font-size: min(2.5vw, 14px);
    text-align: left;
}



@media screen and (max-width:800px) {
    .movielist {
        display: flex;
        flex-direction: column;
    }

    .movielist li iframe {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 10px;
    }

    .movielist li {
        width:100%;
        padding: 10px;
    }
}
