.cp-pagination {
    &__wrapper {
        margin: 0 0 20px;
    }
    a {
        text-decoration: none;
        background: $lightGray;
        &:hover {
            text-decoration: underline;
        }
        span {
            background: $lightGray;
        }
    }
    span {
        background: var(--bc-accent-color);
    }
    span, a {
        width: 40px;
        height: 40px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        @include font-quicksand($white);
        text-decoration: none;
        &.current {
            background: var(--bc-accent-color);
        }
    }
}