/* ======================
   WORK — PAGINATION
   ====================== */

.work-pagination {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin-top: 100px;
}

@media (max-width: 768px) {
	.work-pagination {
		margin-top: 60px;
	}
}

/* Shared reset */
.work-pagination__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.2s ease, background 0.2s ease;
	border: none;
	outline: none;
}

.work-pagination__btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

/* Prev — circle outline, icon only */
.work-pagination__prev {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: transparent;
	border: 1.5px solid #554FE0 !important;
	padding: 0;
}

.work-pagination__prev:hover:not(:disabled) {
	background: #f0efff !important;
}

/* Next — filled pill */
.work-pagination__next {
	background-color: #554FE0 !important;
	color: #ffffff !important;
	padding: 14px 24px;
	border-radius: 50px;
	font-family: "Oxygen", sans-serif;
	font-size: 16px;
	font-weight: 700;
	gap: 8px;
}

.work-pagination__next:hover:not(:disabled) {
	background-color: #4540c8 !important;
}
