.wp-block-query-pagination {

}
.wp-block-query-pagination-numbers {
	display: flex;
	gap: 8px;
}
.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	width: 36px;
	padding: 10px;
	color: #3C3C3C;
	border-radius: 4px;
	text-decoration: none;
	font-size: var(--wp--preset--font-size--m);
	font-weight: 600;
	transition: .25s ease-in-out;
}
.page-numbers.current {
	color: var(--wp--preset--color--primary);
}
.page-numbers:not(.current):hover {
	color: #fff;
	background: #000;
}
.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
	position: relative;
	border-radius: 4px;
	padding: 8px;
	height: 36px;
	width: 36px;
	background: #000;
	border: 1px solid #000;
	font-size: 0;
	transition: .25s ease-in-out;
}
.wp-block-query-pagination-previous {
	transform: scaleX(-1);
}
.wp-block-query-pagination-previous:after,
.wp-block-query-pagination-next:after {
	content: '';
	position: absolute;
	height: 16px;
	width: 16px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.33301 9.99992H14.6663M14.6663 9.99992L9.99967 5.33325M14.6663 9.99992L9.99967 14.6666" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
	background-size-contain;
}
.wp-block-query-pagination-previous:hover,
.wp-block-query-pagination-next:hover {
	background: #404040;
}