.catalog-sections {
    --items: 5;
    --gap: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    width: 100%;
    padding: 40px 0;
}

.catalog-sections__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: calc((100% - ((var(--items) - 1) * var(--gap))) / var(--items));
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-decoration: none;
    transition: box-shadow 0.3s;
}

.catalog-sections__item:focus-visible {
    box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
}

.catalog-sections__item:hover {
    box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
}

.catalog-sections__item:active {
    box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
}

.catalog-sections__item-img {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

.catalog-sections__item-name {
    text-decoration: none;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #000;
}