.shows-section > h1 {
    padding-top: 200px;
}

.shows-filters {
    margin-top: 24px;
    margin-bottom: 36px;
}

.shows-filters > span {
    cursor: pointer;
    color: var(--white);
    font-size: var(--small-text);
}

.shows-filters > span:not(:last-child) {
    margin-right: 15px;
}

.shows-filters > span:hover,
.shows-filters > span.selected {
    font-weight: 300;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 3vw;
    margin-bottom: 72px;
}

@media (max-width: 992px) {
    .shows-section > h1 {
        padding-top: 140px;
    }

    .shows-filters {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .shows-filters > span {
        margin-bottom: 11px;
        font-size: 18px;
    }

    .shows-filters > span:not(:last-child) {
        margin-right: 19px;
    }

    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 7vw;
        margin-bottom: 50px;
    }
}