/* ===================== Carousel Wrap ===================== */
.sc-carousel-wrap {
	position: relative;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}

.sc-carousel-wrap *,
.sc-carousel-wrap *::before,
.sc-carousel-wrap *::after {
	box-sizing: border-box;
}

.sc-swiper {
	overflow: hidden;
}

/* ===================== Slide Image ===================== */
.sc-slide-img {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
}

/* ===================== Navigation (outside container) ===================== */
.sc-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #333;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.sc-nav-btn:hover {
	color: #0073aa;
}

.sc-nav-prev {
	left: 0;
	transform: translate(-100%, -50%);
}

.sc-nav-next {
	right: 0;
	transform: translate(100%, -50%);
}

.sc-nav-btn svg {
	width: 28px;
	height: 28px;
}

.sc-nav-btn.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

/* ===================== Pagination ===================== */
.sc-pagination {
	text-align: center;
	margin-top: 16px;
}

.sc-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 1;
	margin: 0 4px;
	transition: background 0.2s ease;
}

.sc-pagination .swiper-pagination-bullet-active {
	background: #0073aa;
}

/* ===================== Responsive ===================== */
@media (max-width: 767px) {
	.sc-carousel-wrap {
		padding: 0;
	}
}
