ul.page-numbers {
	margin-top: var(--unimer-space-gap-sm);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 0;
	list-style-type: none;
}

.page-numbers li {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid #D1D5DC;
	background: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-numbers li .page-numbers {
	color: #364153;
	text-align: center;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.312px;
	text-decoration: unset;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.page-numbers li.current {
	background: #D4A02C;
	border-color: #D4A02C;
}

.page-numbers li.current .page-numbers {
	color: #FFF;
}

.page-numbers li.is-disabled {
	background: #F3F4F6;
	pointer-events: none;
	cursor: default;
}

.page-numbers li .page-numbers.prev::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7.5 15L12.5 10L7.5 5' stroke='%23364153' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	width: 20px;
	height: 20px;
	transform: rotate(180deg);
}

.page-numbers li.is-disabled .page-numbers.next::before {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M12.5 15L7.5 10L12.5 5' stroke='%2399A1AF' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-numbers li .page-numbers.next::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7.5 15L12.5 10L7.5 5' stroke='%23364153' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	width: 20px;
	height: 20px;
}

.page-numbers li.is-disabled .page-numbers.prev::before {
	transform: rotate(0deg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M12.5 15L7.5 10L12.5 5' stroke='%2399A1AF' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
	ul.page-numbers {
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px;
	}
}

