﻿.news ul {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 1rem;
    row-gap: 2em;
    padding-inline-start: 0;
    list-style-type: none;
    justify-content: space-between;
}

.news ul>li {
    width: 100%;
    list-style: none;
    max-width: 346px
}


@media (max-width:767px) {
    .news ul {
        display: grid;
        grid-template-columns: auto;
        justify-content: space-around;
    }

    .viewAllNews {
        display: none;
    }
}

@media (min-width:768px) and (max-width:960px) {
    .news ul {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .viewAllNews {
        display: none;
    }
}

@media (min-width:961px) {
    .viewAllNewsMobile {
        display: none !important;
        padding-bottom: .5rem !important;
    }
}

.news .card {
    border: 0;
}

.news .card-title {
    padding-bottom: .5rem !important;
}

.news .card-body {
    padding: 0;
    padding-top: .5rem !important;
}

.cumberlandNews {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 0.5em;
}

span#NewsTitle {
    color: #147bd1;
    font-size: 1.5rem;
    margin: 0.1em 0;
}

a {
    text-decoration: none !important;
}