
.news-articles {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin: 0 0 20px 0;
}
.news-articles a {
    display: block;
}
.na_simg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 0 5px 0;
}
.na_simg img,
.na_simg picture {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.na_sname {
    display: block;
    font-size: 12px;
    line-height: 17px;
    max-height: 34px;
    overflow: hidden;
    font-weight: 300;
    text-transform: uppercase;
}
.na_sndate {
    font-size: 12px;
    line-height: 15em;
    line-height: 1em;
    font-weight: 400;
    color: #1F3E85;
    margin: 4px 0 0 0;
}
.sitenewsall {
    list-style: none;
}
.sitenewsall li {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 33.333333%;
    padding: 0 10px 10px 0 !important;
}
.sitenewsall li:before {
    content: '';
    display: none;
}
.sitenewsall img {
    display: block;
    margin: 0 auto 6px auto;
    max-height: 100px;
}
.newsimgbig {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 0 10px 0;
    background-color: #efefef;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
}
@media screen and (max-width:760px) {
    .news-articles {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    .na_simg {
        height: 90px;
    }
}