
.recommended-products__title{
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 25px;
}

.recommended-products__items{
    display: flex;
    flex-wrap: wrap;
}
.recommended-products__item{
    width: 205px;
    margin-bottom: 25px;
    margin-right: 30px;
}
.recommended-products__item-link{
    display: flex;
    height: 220px;
    justify-content: center;
    align-items: center;
    border: 1px solid #F0EFEF;
}
.recommended-products__item-img{
    width: 100%;
}

.recommended-products__item-name{
    display: inline-block;
    margin-top: 35px;
    font-size: 18px;
    font-weight: bold;
    color: #E20932;
}
.recommended-products__item-name:hover{
    text-decoration: underline;
}

.recommended-products__item-description{
    margin-top: 15px;
    max-height: 130px;
    overflow: hidden;
}
.recommended-products__item-price{
    margin: 10px 0;
}
.recommended-products__item-more{
    display: inline-block;
    font-weight: bold;
    font-size: 15px;
    border-bottom: 2px solid #E20932;
    color: #020202;
}

.recommended-products__item-more:hover{
    color: #E20932;
}


@media screen and (max-width: 767px){
    .recommended-products__items{
        justify-content: center;
    }
}
