.paging-navigation {
    margin: 30px 0 80px 0;
}

.posts-navigation {
    margin-bottom: 30px;
}

ul.post-categories,
ul.post-categories li {
    display: inline;
    margin:0;
    padding:0;
}

ul.post-categories li a {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 700;
    text-decoration: none;
}

ul.page-numbers {
    margin-left: 0;
    padding-left: 0;
}

.paging-navigation li {
    display: inline;
    margin-right:1em;
    color: #ba2025;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.page-numbers .prev,
.page-numbers .next {
    background: #fff;
}

.page-numbers .prev {
    background: #fff;
    padding: 5px 5px 5px 15px;
}

.page-numbers .next {
    background: #fff;
    padding: 5px 15px 5px 5px;
}

a.page-numbers,
span.page-numbers {
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    background: #fff;

}

a:hover.page-numbers {
    color: #fff;
    background: #111;
}

.paging-navigation .current {
    font-weight: bold;
    color: #fff;
    background: #ba2025;

}

.entry-content ul.page-numbers li:before {
    display:none;
}

.prev {
    position: relative;
}

.prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url(../images/icons/angle-left-grey.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 5px;
}

.prev:hover::before {
    background-image: url(../images/icons/angle-left-white.png);
}

.next {
    position: relative;
}

.next::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url(../images/icons/angle-right-grey.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 5px;
}

.next:hover::after {
    background-image: url(../images/icons/angle-right-white.png);
}
