.blog-preview {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-preview__img {
    overflow: hidden;
    height: 316px;
    border-radius: 5px;
    display: block;
    margin-bottom: 15px;
    background-color: #eee;
}
.blog-preview__img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out;
    }
    
    .blog-preview:hover img {
        transform: scale(1.1);
    }
    
    .blog-preview a.link-arrow .icon {
        transition: all 800ms;
    }
    
.blog-preview a.link-arrow:hover .icon {
    margin-left: 30px;
}
[dir="rtl"] .blog-preview a.link-arrow:hover .icon {
    margin-left: 15px;
    margin-right: 30px;
}
.blog-preview h4,
.blog-preview .h4 {
    margin: 0 0 15px 0;
}

.blog-preview:hover h4,
.blog-preview:hover .h4 {
    color: #015581;
}


@media (max-width: 1199px) {

    .blog-preview__img {
        height: 280px;
    }

}
@media (max-width: 767px) {

    .blog-preview__img {
        height: 246px;
    }


}
