@media only screen and (min-width: 320px) {
    /*Image lift*/
    .image-link-lift, .editor-styles-wrapper .image-link-lift{
        position:relative;
    }
    .image-link-lift img, .editor-styles-wrapper .image-link-lift img{
        position:absolute;
        top:0px;
        left:0px;
        width:100%;
        height:100%;
        object-fit: cover;
        
    }
    .image-link-lift:after, .editor-styles-wrapper .image-link-lift:after{
        content:'';
        position:absolute;
        bottom:0px;
        left:0px;
        width:100%;
        height:40%;
        opacity:0.8;
        transition: all 0.3s ease-in-out;
        background: linear-gradient(
                to top,
                rgba(0,0,0,0.38) 0%,
                rgba(0,0,0,0.22) 40%,
                rgba(0,0,0,0) 100%
            );
        pointer-events: none;
    }
    /*On hover make the gradient darker*/
    .image-link-lift:hover:after, .editor-styles-wrapper .image-link-lift:hover:after{
       opacity:1;
       transition: all 0.3s ease-in-out;
       pointer-events: none;
    }
    .image-link-lift-title, .editor-styles-wrapper .image-link-lift-title{
        position:absolute;
        bottom:0px;
        left:0px;
        width:100%;
        padding:20px;
        color:white; 
        font-size:18px;
        text-align:center;
        font-weight:600;
        z-index: 2;
    }
}
@media only screen and (min-width: 768px) {

}
@media only screen and (min-width: 990px) {

}
@media only screen and (min-width: 1280px) {

}