/* Pagination for the blog listing page (injected by blog-pagination.js). */

.dxb-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 40px 0 10px;
	flex-wrap: wrap;
}

.dxb-page-btn {
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #e3e8ef;
	border-radius: 8px;
	background: #fff;
	color: #16224d;
	font: 600 15px/1 inherit;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.dxb-page-btn:hover:not(:disabled):not(.is-active) {
	border-color: #6c5ce7;
	color: #6c5ce7;
}

.dxb-page-btn.is-active {
	background: #6c5ce7;
	border-color: #6c5ce7;
	color: #fff;
	cursor: default;
}

.dxb-page-btn:disabled {
	opacity: 0.4;
	cursor: default;
}
