div.news_list
{
color: #252525;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: stretch;
}

div.news_list a.item
{
display: block;
width: 30%;
margin-top: 2rem;
margin-right: 2rem;
text-decoration: none;
flex-shrink: 0;
flex-grow: 0;
cursor: pointer;
color: #000;
position: relative;
}

div.news_list a.item div.thumb
{
display: block;
width: 100%;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}

div.news_list a.item div.thumb:before
{
content: '\20';
display: block;
padding-top: 75%;
border: solid 1px #ccc;
}

div.news_list a.item p.date
{
margin-top: 1rem;
}

div.news_list a.item h3
{
margin-top: 1rem;
font-size: 1.5rem;
line-height: 1.5rem;
text-transform: none;
color: #08aea1;
font-weight: 400;
}

div.news_list a.item p
{
font-size: 1.125rem;
line-height: 120%;
margin-top: 1rem;
font-weight: 500;
}

@media (max-width: 800px)
{
/*div.news_list a.item { width: 45%; margin-right: 1.75rem; }*/
div.news_list a.item { width: 100%; }
}

@media (max-width: 480px)
{
div.news_list a.item { width: 100%; }
}
