nav.pagination {
    margin: 0;
    padding: 1rem 0 0;
    clear: both;

        font-family: "TGC",sans-serif;

}

.nav-links {
    margin: 0;
    text-align: center;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    color: black;
    display: flex;
    justify-content: center;
}

.nav-links .page-numbers {
    font-size: 1.4rem;
    display: inline-block;
    line-height: 1;
    margin: 0 0.25rem 1rem;
    text-decoration: none; letter-spacing: -0.01em;

    padding:0.5em 0.5em 0.5em;
}

.nav-links span.page-numbers {

    background: var(--blue) ; border: 1px solid transparent;
    color: black;
}

body.page-id-722 .nav-links span.page-numbers:not(.dots) {
    background: var(--green) ;
}

.nav-links span.dots {
    background: none;
    /*font-size:3.2rem;*/
    padding: 0.5em 0;

    color: currentColor;
}

.nav-links a {


    background: white;   border: 1px solid var(--grey);
    color: inherit;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: var(--grey); color: white; text-decoration: none !important;

    /*box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);*/
}

.nav-links a.next,
.nav-links a.prev {
    position: relative;
    text-align: center;
    /*padding: 0.5em; */
}
.nav-links a.prev::after ,
.nav-links a.next::after {
    display: block;
    content: "";
    height: 100%;
    width: 100%;
    min-width: 24px;
    background-image: var(--chevron);
    background-size: var(--chevron-size);
    background-repeat: no-repeat;
    background-position: center;
}
.nav-links a.prev::after  { transform: rotate(90deg);}
.nav-links a.next::after{ transform: rotate(-90deg);}

.nav-links a.prev:hover::after ,
.nav-links a.next:hover::after {
    background-image: var(--chevron-hover);

}
.nav-links a.prev::after {

}

@media all and (max-width: 499px) {
    .nav-links .page-numbers {
        font-size: 1.4rem;

    }
}