.news-header {
    text-align: center;
    background: black;
    color: white;
    min-height: 45vh;
    display: flex;
    flex-direction:column;
    background-position: center 20%;
    background-size: cover;
}

.news-header-flex {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/**** Listing styles ****/
.news-list-wrapper {
    width: 100%;
}

.news-listing {
    background: linear-gradient(to bottom right, #37455b, #162030);;
}

.news-listing-top {
    height: 100vw;
}

.news-listing-bottom {
    width: 80%;
    margin: auto;
    padding: 25px 0;
}

.news-h2 {
    margin: 20px 0;
    text-transform: uppercase;
    font-size:2em;
    letter-spacing:2px;
}
.news-date {
    margin: 20px 0;
    font-size: 1.1em;
    text-transform: uppercase;
}

.news-link {
    margin: 20px 0;
}
.news-button {
    color: #f7cd0d;
    text-decoration: none;
}
.news-content {
    line-height: 1.5;
}

@media (min-width:768px) {
    .news-list-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .news-listing {
        width: calc(100% / 3);
    }
    
    .news-listing-top {
        height: 30vw;
    }
    
    .news-listing-bottom {
        width: 70%;
    }
}

/**** Pagination styling ****/
.paging {
    width: 90%;
    margin: 15px auto;
    text-align: center;
}

.paging-link {
    display: inline-block;
    margin: 0 10px;
}

.paging-link .active {
    color: #f7cd0d;
    border-bottom: 2px solid;
}