.wp-block-query-pagination-next,
.wp-block-query-pagination-previous {
    font-size: 0;
    /* hide text visually */
    position: relative;
    min-width: 34px;
    height: 29px;
    text-align: center;
    line-height: 28px;
    border: 1px solid #dedede;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1px !important;

}
.wp-block-query-pagination-next:hover,
.wp-block-query-pagination-previous:hover {
    background-color: var(--wp--preset--color--primary) !important;
    color:#fff !important;

}
.wp-block-query-pagination-numbers .page-numbers.current, .wp-block-query-pagination-numbers .page-numbers:hover {
    background-color: var(--wp--preset--color--primary) !important;
    color:#fff !important;
}
.wp-block-query-pagination-next {
    margin-left: 6px !important;
}

.wp-block-query-pagination-previous {
    margin-right: 6px !important;
}

.wp-block-query-pagination-next::after,
.wp-block-query-pagination-previous::after {
    content: "";
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

/* Right chevron */
.wp-block-query-pagination-next::after {
    mask-image: url("/wp-content/themes/wm-block-theme/img/icon-chevron-right.svg");
    -webkit-mask-image: url("/wp-content/themes/wm-block-theme/img/icon-chevron-right.svg");
}

/* Left chevron */
.wp-block-query-pagination-previous::after {
    mask-image: url("/wp-content/themes/wm-block-theme/img/icon-chevron-left.svg");
    -webkit-mask-image: url("/wp-content/themes/wm-block-theme/img/icon-chevron-left.svg");
}

/* Hover chevrons (white) */
.wp-block-query-pagination-next:hover::after {
    mask-image: url("/wp-content/themes/wm-block-theme/img/icon-chevron-right-white.svg");
    -webkit-mask-image: url("/wp-content/themes/wm-block-theme/img/icon-chevron-right-white.svg");
}

.wp-block-query-pagination-previous:hover::after {
    mask-image: url("/wp-content/themes/wm-block-theme/img/icon-chevron-left-white.svg");
    -webkit-mask-image: url("/wp-content/themes/wm-block-theme/img/icon-chevron-left-white.svg");
}
