.products__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(0, 227px));
    gap: 32px 16px;
}

.products__list:not(:first-child) {
    margin-top: 32px;
}

.products__item {
    overflow: hidden;
}

.catalog__more {
    margin-top: 40px;
}

.catalog__more .btn-default {
    width: 100%;
}

.products__title {
    margin-bottom: 60px;
    color: var(--gray-black);
    font-size: var(--h2-size);
    font-weight: var(--fw700);
}


@media screen and (max-width: 1200px) {
    .products__list {
        grid-template-columns: repeat(4, 1fr);
    }
    .products__title {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 991px) {
    .products__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 769px) {
    .products__list {
        grid-template-columns: repeat(auto-fill, minmax(151px, 1fr));
        gap: 20px 8px;
    }
    .catalog__more {
        margin-top: 32px;
    }
}

@media screen and (max-width: 578px) {
    .catalog__more {
        margin-top: 16px;
    }
}
