.movie-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.movie-container-header {
    border-top: 2px solid var(--primary-color);
    grid-column: span 3;
    margin-top: 8px;
}

.not-exist-movie-label {
    margin: 8px;
}

.movie-content {
    margin: 8px;
}

.movie-header {
    font-size: var(--font-size-M);
    margin-bottom: 4px;
}

.movie-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.movie-detail {
    margin-top: 4px;
    margin-bottom: 8px;
}

@media (max-width: 1500px) {
    .movie-container {
        grid-template-columns: 1fr 1fr;
    }

    .movie-container-header {
        grid-column: span 2;
    }
}

@media (max-width: 1000px) {
    .movie-container {
        grid-template-columns: 1fr;
    }

    .movie-container-header {
        grid-column: span 1;
    }
}