.newsMain {
    background: #fff;
    padding: 10px 30px;
    margin-top: 5px;
}
.newsMain > h2.withSep{
    margin-bottom: 40px;
}
img.banner {
    width: 100%;
    margin-top: 40px;
}
.newsInf {
    margin-top: 30px;
    position: relative;
}
.newsTitle {
    font-size: 20px;
}
.newsDate {
    position: absolute;
    top: 0;
    left: 0;
}
.newsList {
   display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
    padding: 40px 30px;
    background: #fff;
}
.newsList .withSep{
    width: 100%;
    margin-bottom: 40px;
}
.newsBox {
    width: calc(25% - 5px);
    overflow: hidden;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #e9e6e1;
    height: 400px;
}
.newsBox > a {
    display: block;
    height: 100%;
}
img.newsThumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.newsD {
    padding: 0 20px;
    text-align: left;
    margin: 20px 0;
}
p.newsShort {
    padding: 0 20px;
    margin: 40px 0;
    display: block;
    text-align: right;
}
@media screen and (max-width:768px){
    .newsDate{
        top: -20px;
    }
    .newsBox {
        width: calc(33% - 5px);
        height: 300px;
    }
    img.newsThumb{
        height: 100px;
    }
}
@media screen and (max-width:414px){
    .newsBox {
        width: calc(50% - 5px);
            height: 300px;
    }
    img.newsThumb{
        height: 100px;
    }
}