﻿.news-list{
  display: flex;
    flex-wrap: wrap;    justify-content: space-between;
}
.news-item {
    width: 49%;
    margin: 30px 0 0;
}
.news-item a {
    display: flex;
    color: #000000;
    text-decoration: none;
}

.news-img {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    margin: 0 15px 0 0;
    border-radius: 5px;
    overflow: hidden;
}
.news-item a:hover .news-img img {
  transform: scale(1.1, 1.1);
  opacity: 0.8;
}
.news-itm-main{overflow:hidden;}
.news-img img {
    flex-shrink: 0;
    transition: all 0.7s ease;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-itm-ttl {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
    margin: 0 0 5px;
    line-height: 26px;
    text-transform: uppercase;
    color: #004a20;
}
.news-itm-txt {
    font-size: 15px;
    margin: 0 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:480px) {
    .news-item {
    width: 100%;
}
    .news-img {
    width: 100px;
    height: 100px;
}
    .news-itm-ttl {
    font-size: 14px;
    line-height: 18px;
}
    .news-itm-txt {
    line-height: 22px;
    -webkit-line-clamp: 3;
}
}