.news-grid-list{
    display: flex;
    flex-direction: column;
}

.news-grid-list-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*margin-bottom: 30px;*/
}

.news-grid-item{
    display: flex;
    flex-direction: column;
    width: calc((100% - 20px) / 2);
    margin-bottom: 40px;
}

.news-grid-item:nth-last-child(-n+2){
    margin-bottom: 0;
}

.news-grid-item-img{
    height: 218px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center center;
}

.news-grid-item-title{
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.news-grid-item-description{
    font-size: 14px;
    margin-bottom: 5px;
}

.news-grid-item-date{
    font-size: 12px;
    color: #424242;
}

.news-grid-list-bottom{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-grid-item-text{
    display: flex;
    flex-direction: column;
}

.news-grid-list-bottom .news-grid-item{
    width: calc((100% - 20px) / 2);
    height: 146px;
    flex-direction: row;
    margin-bottom: 20px;
}

.news-grid-list-bottom .news-grid-item-img{
    width: 180px;
    height: 100%;
    flex-shrink: 0;
    margin-right: 15px;
}

.news-grid-list-bottom .news-grid-item-title{
    font-size: 14px;
}

.news-grid-list-bottom .news-grid-item-description{
    overflow: hidden;
    height: 61px;
    font-size: 13px;
}

.news-grid-list-bottom .news-grid-item-date{
    margin-top: auto;
}










