.list-page {
    background: #060611;
}

.list-hero {
    width: 1160px;
    padding-top: 43px;
    padding-bottom: 43px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    display: flex;
}

.list-channel {
    width: 1160px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 7px;
    display: flex;
}

.list-channel-label {
    color: #F12B9E;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.list-channel-title {
    margin: 0;
    color: white;
    font-size: 34px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 40px;
    word-wrap: break-word;
}

.list-channel-desc {
    color: #9994AD;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.list-filters {
    width: 1160px;
    padding: 17px 21px;
    background: #151326;
    overflow: hidden;
    border-radius: 17px;
    outline: 1px #34304B solid;
    outline-offset: -1px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 21px;
    display: flex;
}

.filter-row {
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    display: flex;
    flex-wrap: wrap;
}

.filter-label {
    width: 47px;
    height: 26px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.filter-chip {
    padding: 6px 12px;
    background: #26223A;
    overflow: hidden;
    border-radius: 14px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}

.filter-chip--active {
    background: #F12B9E;
}

.filter-chip-text {
    color: #B7B2C7;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.filter-chip-text--active {
    color: white;
}

@media (max-width: 767px) {
    .list-page.page-shell {
        padding: 12px 16px;
        gap: 18px;
    }

    .list-hero {
        width: 100%;
        padding: 0;
        gap: 18px;
    }

    .list-channel {
        width: 100%;
        gap: 6px;
    }

    .list-channel-title {
        font-size: 18px;
        line-height: 24px;
    }

    .list-filters {
        width: 100%;
        padding: 16px 19px;
        background: #110D19;
        border-radius: 17px;
        outline-color: #292138;
        gap: 9px;
        box-sizing: border-box;
    }

    .filter-row {
        align-self: stretch;
        align-items: flex-start;
        gap: 12px;
        height: auto;
        overflow: visible;
    }

    .filter-row--region {
        display: none;
    }

    .filter-label {
        width: auto;
        height: auto;
        color: #948F9E;
        flex-shrink: 0;
        padding-top: 0;
    }

    .filter-chip {
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .filter-chip--active {
        background: transparent;
    }

    .filter-chip-text {
        color: rgba(153, 148, 163, 0.84);
    }

    .filter-chip-text--active {
        color: #F12B9E;
    }

    .filter-row .filter-chip + .filter-chip {
        margin-left: 0;
    }

    .list-filters .filter-row {
        flex-wrap: wrap;
    }

    .list-filters .filter-chip {
        gap: 0;
    }

    .list-hero .card-grid {
        width: 100%;
    }

    .list-hero .pagination {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
}

