.product-catalog__row {
    margin: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.product-catalog__col {
    flex: 0 0 calc(25% - 18px);
    border: 1px solid #D7D7D7;
    border-radius: 20px;
    padding: 16px 16px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    transition: border 0.3s linear;
}
.product-catalog__image {
    width: 100%;
    height: 242px;
    border-radius: 20px;
    overflow: hidden;
}
.product-catalog__img {
    object-fit: cover;
    min-height: 100%;
}
.product-catalog__title {
    font-family: 'Ubuntu', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #4E4B4B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: color 0.3s linear;
}
.product-catalog__title:after {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url(img/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.product-catalog__col:hover {
    border: 1px solid var(--orange);
}
.product-catalog__col:hover .product-catalog__title {
    color: var(--orange);
}
.product-catalog__col:hover .product-catalog__title:after {
    background-image: url(img/arrow-right-hover.svg);
}
@media screen and (max-width: 960px) {
    .product-catalog__col {
        flex: 0 0 calc(33% - 14px);
    }
}
@media screen and (max-width: 768px) {
    .product-catalog__col {
        flex: 0 0 calc(50% - 12px);
        gap: 12px;
    }
    .product-catalog__title {
        font-size: 16px;
    }
}
@media screen and (max-width: 640px) {
    .product-catalog__image {
        height: 150px;
    }
}
@media screen and (max-width: 420px) {
    .product-catalog__row {
        gap: 12px;
    }
    .product-catalog__col {
        flex: 0 0 calc(50% - 6px);
        padding: 10px 10px 20px;
    }
    .product-catalog__image {
        height: 103px;
    }
    .product-catalog__title {
        font-size: 14px;
    }
}