.post-pagination {
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 68px;
}
.post-pagination a,
.post-pagination span {
	aspect-ratio: 1;
	width: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin: 0 8px; */
	/* padding: 8px 12px; */
	color: #333;
	font-weight: 500;
	background: white;
	text-decoration: none;
	border: 1px solid #f1f1f1;
	border-radius: 7.5px;
}
.post-pagination a:hover {
	background: #214f96;
	color: #fff;
}
.post-pagination .current {
	background: #fe9e11;
	color: #fff;
	border-color: #fe9e11;
	border-radius: 8px;
}
.post-pagination .dots {
	border: none !important;
}

/* hide the real dots text */
.page-numbers.dots {
	color: transparent; /* or font-size: 0; */
	position: relative;
}

/* insert your underscores */
.page-numbers.dots::after {
	content: '...';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	color: #333; /* pick up your pagination link color */
	text-wrap-mode: nowrap;
}
.post-pagination a svg {
	height: 30px;
}
