.edu-custom-slider {
	position: relative;
	width: 100%;
	margin-block-start: 0;
	margin-block-end: 0;
	box-sizing: border-box;
}

.edu-custom-slider__swiper {
	width: 100%;
	overflow: hidden;
	border-radius: var(--edu-radius, 8px);
	position: relative;
}

.edu-custom-slider__slide {
	position: relative;
	width: 100%;
	height: auto;
	box-sizing: border-box;
}

.edu-custom-slider__slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: var(--edu-radius, 8px);
}

/* Navigation Buttons */
.edu-custom-slider .edu-custom-slider__button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--edu-white);
	border: 1px solid var(--edu-border);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	color: var(--edu-heading);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	margin-top: 0;
}

.edu-custom-slider .edu-custom-slider__button::after {
	font-family: swiper-icons;
	font-size: 12px;
	font-weight: bold;
	color: currentColor;
}

.edu-custom-slider .edu-custom-slider__button--prev {
	left: 15px;
}

.edu-custom-slider .edu-custom-slider__button--prev::after {
	content: 'prev';
}

.edu-custom-slider .edu-custom-slider__button--next {
	right: 15px;
}

.edu-custom-slider .edu-custom-slider__button--next::after {
	content: 'next';
}

.edu-custom-slider .edu-custom-slider__button:hover {
	background-color: var(--edu-primary);
	color: var(--edu-white);
	border-color: transparent;
}

.edu-custom-slider .edu-custom-slider__button.swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

/* Pagination Dots */
.edu-custom-slider .edu-custom-slider__pagination {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}

.edu-custom-slider .edu-custom-slider__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: block;
	border-radius: 50%;
	background: var(--edu-white);
	opacity: 0.6;
	cursor: pointer;
	transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
	margin: 0 !important;
}

.edu-custom-slider .edu-custom-slider__pagination .swiper-pagination-bullet-active {
	background: var(--edu-primary);
	opacity: 1;
	transform: scale(1.2);
}

/* Responsive */
@media (max-width: 767px) {
	.edu-custom-slider .edu-custom-slider__button {
		width: 32px;
		height: 32px;
	}
	.edu-custom-slider .edu-custom-slider__button::after {
		font-size: 10px;
	}
	.edu-custom-slider .edu-custom-slider__button--prev {
		left: 8px;
	}
	.edu-custom-slider .edu-custom-slider__button--next {
		right: 8px;
	}
	.edu-custom-slider .edu-custom-slider__pagination {
		bottom: 10px;
	}
}
