﻿.news-items {
    display: flex;
    flex-direction: row;
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 40px 3px rgba(0, 0, 0, .1);
    position: relative;
    overflow: hidden;
}
.news-items-content{
padding-right:1rem;

}
.news-items-content a{
    color:#808080;
}
    .news-items-content a:hover {
        color: #ff0000;
       
    }
@media( max-width:40rem) {
    .news-items {
        flex-direction: column;
        width:96%;
        margin:0px auto;
    }
        
    }