.sbc-carousel-wrap {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
	overflow: hidden;
	padding: 12px 0;
}

.sbc-carousel-track {
	display: flex;
	align-items: center;
	transition: transform 0.45s ease;
	will-change: transform;
	width: 100%;
}

.sbc-slide {
	flex: 0 0 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 18 / 5;
	height: clamp(160px, 28vw, 250px);
	text-align: center;
	padding: 8px 16px;
	box-sizing: border-box;
}

.sbc-slide a {
	display: inline-block;
}

.sbc-slide img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.sbc-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border: none;
	padding: 10px 12px;
	cursor: pointer;
	line-height: 1;
	border-radius: 4px;
}

.sbc-arrow:hover {
	background: rgba(0, 0, 0, 0.75);
}

.sbc-prev {
	left: 10px;
}

.sbc-next {
	right: 10px;
}

.sbc-dots {
	display: flex;
	justify-content: center;
	margin-top: 12px;
	gap: 8px;
}

.sbc-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: #cfd3d8;
	cursor: pointer;
	padding: 0;
}

.sbc-dot.is-active {
	background: #111827;
}

@media (max-width: 640px) {
	.sbc-arrow {
		display: none;
	}

	.sbc-slide img {
		max-height: 200px;
	}
}
