.news_page {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width:100%;
position: relative;
height:auto;
}
.news_page  .news_article{
box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.65);
border-radius:6px;
-webkit-border-radius:6px;
transition: box-shadow .2s;
position: relative;
margin:20px 0;
width:100%;
max-width: 330px;
height: auto;
overflow: hidden;
}
@media only screen and (max-width: 1107px) {
.news_page {
justify-content: center;
}
.news_page  .news_article{
margin:20px;
}
}
.news_page  .news_article:hover{
box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.65);
transition: box-shadow .2s;
}
.news_page  .news_article a,
.news_page  .news_article:hover a{
text-decoration: none;
}
.news_page  .news_article .img{
display: block;
position: relative;
width:100%;
height:220px;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.news_page  .news_article .news_article_content{
display: block;
position: relative;
width:100%;
height:auto;
padding:15px;
box-sizing: border-box;
overflow:hidden;
transition: all .3s;
margin-bottom:20px;
}
.news_page  .news_article .news_article_content .title{
font-weight: 600;
display: block;
color: #4A4A4A;
font-size: 24px;
margin-bottom:15px !important;
}
.news_page  .news_article .news_article_content .date{
font-size: 14px;
margin:5px 0;
font-style: italic;
font-weight: 400;
display: block;
color: #4A4A4A;
}
.news_page  .news_article .news_article_content .excerpt{
}
*/