.taxonomy-video_cat-title
{
    margin: 30px 0;
    text-align: center;
}

.movie-cat-posts
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;    
    column-gap: 30px;
    padding: 15px;
}

.movie-cat-posts a
{
    display: block;
}

.movie-cat-item
{
    height: 576px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
}

.movie-cat-item h2
{
    background-color: #111;
    color: #fff;
    width: 100%;
    padding: 25px;
    margin: 0;
}

@media screen and (max-width: 1279px) 
{
    .movie-cat-posts
    {
        grid-template-columns: 1fr 1fr;
    }

    .movie-cat-item h2
    {
        font-size: 18px;
    }
}

@media screen and (max-width: 599px) 
{
    .movie-cat-posts
    {
        grid-template-columns: 1fr;
    }

    .movie-cat-item h2
    {
        font-size: 16px;
    }
}