
.featuredNews__container {
    display: flex;
    flex-wrap: wrap;
}

.featuredNews {
    margin-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid #EEE;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.newsImage__container {
    width: 100%;
    height: 200px;
    margin-bottom: 19px;
    overflow: hidden;
}

.newsImage {
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    background-color: #EEE;
    width: 100%;
    height: 200px;
    background-size: cover;
    display: block;
}

.featuredNews:hover .newsImage {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.featuredNews__title {
    font-size: 20px;
    color: #000;
    font-weight: 900;
    margin: 8px 0 12px;
}

.featuredNews__type {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Raleway';
}

.featuredNews__blurb {
    font-size: 15px;
    color: #545459;
}

.featuredNews__link {
    margin-top: 15px;
    display: block;
    color: #0471DF;
}

    .featuredNews__link:hover {
        color: #97B813;
    }

.featuredNews__date {
    font-size: 13px;
    color: #6B6B6B;
    font-weight: 600;
    margin-top: 20px;
}

.newsList__header {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
}

.newsList__container {
    margin: 30px 0 40px;
}

.newsList {
    padding: 0;
    list-style: none;
}

    .newsList li {
        margin-bottom: 6px;
        padding-bottom: 12px;
        border-bottom: 1px solid #CBCBCB;
    }

.newsList__link {
    color: #97B813;
}

.archiveBtn {
    margin-bottom: 30px;
}

@media only screen and (min-width:768px) {
    .featuredNews {
        flex-basis: 50%;
        width: 50%;
        padding: 0 20px 20px;
        position: relative;
    }

        .featuredNews:after {
            content: " ";
            width: 1px;
            background: #EEE;
            height: calc(100% - 20px);
            position: absolute;
            top: 0;
            right: 0;
        }

        .featuredNews:nth-child(2n):after {
            content: none;
        }

    .featuredNews__container {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width:1200px) {
    .featuredNews {
        flex-basis: 33.333%;
        width: 33.333%;
    }

        .featuredNews:nth-child(2n):after {
            content: " ";
        }

        .featuredNews:nth-child(3n):after {
            content: none;
        }
}

@media only screen and (min-width:1560px) {

    .featuredNews {
        flex-basis: 25%;
        width: 25%;
    }
        .featuredNews:nth-child(3n):after {
            content: " ";
        }

        .featuredNews:nth-child(4n):after {
            content: none;
        }

    .container {
        width: 1534px;
    }
}
