.news-gallery{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-start;
    padding:2rem;
}

.news-card{
    width:340px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,.15);

    display:flex;
    flex-direction:column;
}

.news-image{
    height:220px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.news-body{
    padding:1rem;
    flex:1;
}

.news-title{
    margin:0;
    font-size:1.4rem;
}

.news-date{
    color:#777;
    font-size:.9rem;
    margin:.5rem 0 1rem;
}

.news-text{
    color:#444;
    line-height:1.5;
}

.news-footer{
    padding:1rem;
    border-top:1px solid #eee;
}
