.news-list-item img {width: 100%;}
.news-list-item .news-info {
    min-height: 175px;
    margin-bottom: 20px;
}
.news-list-item h3 {
    font-size: 17px;
    margin-bottom: 12px;
    margin-top: 20px;
    line-height: 1.3em;
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}
.news-list-item:hover h3, .news-list-item.active h3, .news-list-item.clicked-inject-item h3 {color: #e60a0a;}
.news-list-item p {color: #333;}
.news-list-item .line {
    width: 100%;
    height: 6px;
    background-color: #f0f0f2;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: background 0.2s linear;
    -moz-transition: background 0.2s linear;
    -ms-transition: background 0.2s linear;
    -o-transition: background 0.2s linear;
    transition: background 0.2s linear;
}
.news-list-item:hover .line, .news-list-item.active .line, .news-list-item.clicked-inject-item .line {background-color: #e60a0a;}
.news-list-item figure {
    position: relative;
    z-index: 150;
    overflow: hidden;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -mox-border-radius: 3px;
}
.news-list-item img {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.news-list-item:hover figure img {
    -webkit-transform: scale(1.1) translate3d(0,0,0);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

@media (min-width: 990px) {
    .news-list-item .news-info {
        padding-right: 20px;
    }
}
@media (max-width: 767px) {
    .news-list-item .news-info {
        min-height: 0;
        margin-bottom: 30px;
    }
}