.padding-15 {
    padding: 15px;
}
.news-container-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.news-container {
    width: calc( 100% - 40px );
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 100px;
    margin: 0 -15px;  /*gap between columns offset*/
}

.news-container .news-item {
    flex: 1 1 30%;
    margin: 15px 15px; /*gap between columns*/
    background-color: #003e87;
}
.news-container .news-item-image {
    width: 100%;
    min-height: 300px;

}
.news-container .news-item-description {
    padding: 35px;
    min-height: 225px;
    color: #fff;
}
.news-container .news-item-description a {
    color: #fff;
}
.blog-post-title {
    min-height: 115px;
    font-weight: 400;
}
.blog-post-title a{
    text-decoration: none;
}
.blog-post-title a:hover{
    text-decoration: underline;
}
.fa-calendar {
    margin-right: 5px;
}
.category-container {
    width: calc( 100% - 40px );
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 35px;
}
.category-item:first-child {
    background-color: unset;
    color: #003e87;
    font-weight: 700;
    border: unset;
}
.category-item {
    display: inline-block;
    box-sizing: border-box;
    padding: 15px;
    font-weight: 600;
    border: 3px solid #003e87;
    transition: all 0.25s ease;
}
.category-item:hover {
    background-color: #fff;
}

.category-container > a.category-item.active {
    -webkit-box-shadow:inset 0px 0px 0px 1px #fff;
    -moz-box-shadow:inset 0px 0px 0px 1px #fff;
    box-shadow:inset 0px 0px 0px 1px #fff;
}

.posts-page-nav a {
    background-color: #003e87!important;;
}

/*Related Article Styling*/
#similar-posts {
    padding: 0 0px!important;
    text-align: center;
    max-width: 1400px;
    margin: auto;
}
#similar-posts .news-container .news-item-description {
    padding: 15px;
}
#similar-posts .news-container .news-item-date {
    margin-top: 10px;
}
#similar-posts .news-container .blog-post-title {
    font-size: 18px;
}

@media only screen and (max-width: 1300px) {
    .news-container .news-item {
        flex: 1 1 45%;
    }
}
@media only screen and (max-width: 700px) {
    .news-container .news-item {
        flex: 1 1 100%;
    }
}
@media only screen and (max-width: 600px) {
    .category-item {
        display: block;
        padding: 10px 0px;
        width: 100%;
        margin: 2px;
    }
    .news-item-date {
        margin-top: 15px;
    }
}
@media only screen and (max-width: 420px) {
    .news-item-description > h2 {
        margin-right: -21px;
    }
}