.recommended {
    margin: 30px 0 25px 0;
}

.recommended__space{
    margin-bottom: 25px;
}

.recommended__item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.10);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.recommended__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.recommended__image {
    height: 140px;
    padding: 0px 0px 15px 0px;
}

.recommended__img {
    border-radius: 10px 10px 0 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.recommended__date {
    background: #000;
    border: 1px solid #000;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin: 5px 0 12px 0;
    padding: 5px 20px 5px 20px;
    text-align: center;
    text-transform: capitalize;
}

.recommended__text {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 18px 18px 18px;
}

.recommended__header{
    flex-grow: 1;
}

.recommended__title{
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin: 5px 0 15px 0;
}

.recommended__item .recommended__link {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin: 0 0 18px 0;
    padding: 0;
    position: relative;
    text-decoration: none;
    transition: all 0.4s ease;
}

.recommended__item .recommended__link:hover{
    color: #494949;
    text-decoration: none;
}

.recommended__item .recommended__link:after {
    background: url(/Portals/0/skins/ccma/images/iconos/arrow-link.svg) no-repeat;
    background-size: 100%;
    content: "";
    height: 13px;
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    z-index: 0;
}

.recommended__items {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.recommended__theme{
    background: rgba(189, 189, 189, 0.20);
    border-radius: 15px;
    color: #7E7E7E;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 5px 12px 5px 12px;
    text-align: center;
}

.recommended__theme span{
    color: #7E7E7E;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

/*Fondo gris*/
.recommended__gray {
    padding: 35px 0 0 0;
    position: relative;
}

.recommended__gray:before {
    background: #F2F2F2;
    content: "";
    height: 100%;
    left: calc(-50vw + 50%);
    top: 0;
    position: absolute;
    width: 100vw;
    z-index: -1;
}

@media (min-width: 768px){

    .recommended__container h2 {
        margin: 0 0 6px 0;
        max-width: unset;
    }

}

@media (min-width: 992px){

    .recommended__image {
        height: 180px;
    }

    .recommended__buttons {
        display: block;
    }
    
 }

 @media (min-width: 1200px){
    
 }