.category__content {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(12rem, 1fr));
    gap: 3rem 1rem;
    margin-top: 4rem;
}
.category__content .category__item {
    color: black;
    text-decoration: none;
    transition: .6s;
    padding: 2rem .6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.category__content .category__item.with--ico {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    min-height: 50px;
}
.category__content .category__item.with--ico img{
    width: 100%;
    aspect-ratio: 1/1;
}
.category__item.with--ico .category__subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    margin: .9rem 0 .5rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.3em;
}
.category__item.category__item--manufacturer {
    background: white;
    width: 100%;
    height: 100%;
    min-height: 90px;
    min-width: 125px;
    text-align: center;
    color: #000;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
}
.category__item.category__item--manufacturer img {
    filter: grayscale(1.0);
}
.category__item.category__item--manufacturer:hover img {
    filter: none;
}
.category__item.with--ico .category__subtitle--small {
    color: var(--black);
    text-transform: uppercase;
    font-size: .983rem;
    text-decoration: none;
    border-bottom: 1px solid black;
    padding-bottom: .2rem;
}
.category__content .category__item:hover {
    color: var(--orange);
    transition: .6s;
}
.category__content .category__item.with--ico:hover {
    color: var(--orange);
    transition: .6s;
}

@media only screen and (max-width: 550px) {
    .category__content {
        display: grid;
        grid-template-columns:repeat(auto-fill, minmax(9rem, 1fr));
        gap: 3rem 1rem;
        margin-top: 4rem;
    }
}