nav.wp-paginate {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
}
nav.wp-paginate .page {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #e5e7e8;
    text-align: center;
    font-size: 0.72727rem;
    color: #484848;
    transition: all 0.3s ease;
    text-decoration: none;
}
nav.wp-paginate span.page.current {
    color: #fff;
    background-color: #004e8e;
    border: 0;
}
nav.wp-paginate ol.wp-paginate.wpp-modern-grey .current { opacity: 1; }
nav.wp-paginate ol.wp-paginate li { line-height: 32px; }
nav.wp-paginate ol.wp-paginate.wpp-modern-grey a,
nav.wp-paginate ol.wp-paginate.wpp-modern-grey span.page.current {
    border-radius: 50%;
    padding: 0;
}
nav.wp-paginate :is(.prev, .next) {
    border: none;
    background-color: inherit !important;
    font-size: 0.72727rem;
    margin-right: 8px;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all 0.3s ease;
    text-decoration: none;
}
nav.wp-paginate .next { margin-right: 4px; }
nav.wp-paginate .next::after {
    content: "\e941";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
    font-family: "icomoon";
    color: #828990;
    transition: all 0.2s ease-in;
    font-size: 1rem;
}
nav.wp-paginate .prev::before {
    content: "\e940";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -16px;
    font-family: "icomoon";
    color: #828990;
    transition: all 0.2s ease-in;
    font-size: 1rem;
}
nav.wp-paginate .next:hover::after { right: -20px; }
nav.wp-paginate .prev:hover::before { left: -20px; }
nav.wp-paginate a:hover { transition: all 0.3s ease; }
nav.wp-paginate .page:hover {
    border: 1px solid #eeeff0;
    color: #fff;
    background-color: #828990;
}