.catalog {
    padding: 0 0 40px 0;
}

.catalog__header {
    margin-bottom: 30px;
}

.catalog__sections {
    --gap: 20px;
    --items: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 40px var(--gap);
    margin-bottom: 30px;
}

.catalog-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: calc((100% - var(--gap) * (var(--items) - 1)) / var(--items));
}

.catalog-section__img-wrapper {
    width: 100%;
    height: 190px;
}

.catalog-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.catalog-section__name {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}