﻿.blog-item{
    position: relative;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 25px;
    overflow: hidden;
}

.blog-item .post-img{
    position: relative;
    margin: 0;
    overflow: hidden;
}

.blog-item .post-img img{
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blog-item .post-img:hover img{
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-item .post-description{
    padding: 12px 10px;
    min-height: 146px;
}

.blog-item .post-description h2,
.blog-item .post-description h3{
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-item .post-description p{
    margin: 0;
    font-size: 15px;
}

.other-news .h3{
    font-size: 16px;
    margin: 3px 0;
}

.other-news ul li{
    font-size: 16px;
}

.other-news ul li em{
    font-size: 14px;
}