.mmpf-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.mmpf-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #dbe4ea;
	border-radius: 12px;
	text-decoration: none;
	color: #183546;
	background: #fff;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

.mmpf-pagination .page-numbers:hover {
	background: #f4f8fa;
	border-color: #bfd0db;
	color: #083b5c;
	transform: translateY(-1px);
}

.mmpf-pagination .page-numbers.current {
	background: #083b5c;
	color: #fff;
	border-color: #083b5c;
	box-shadow: 0 6px 14px rgba(8, 59, 92, 0.18);
}

.mmpf-pagination .page-numbers.prev,
.mmpf-pagination .page-numbers.next {
	padding: 0 16px;
	font-weight: 700;
}