.bcl-showcase {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 1100px;
	margin: 0 auto;
}

.bcl-showcase-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 8px 4px 16px;
	flex: 1 1 auto;
	/* hide scrollbar visually while keeping it usable via mouse/touch drag */
	scrollbar-width: thin;
}

.bcl-showcase-slide {
	flex: 0 0 auto;
	width: 200px;
	scroll-snap-align: start;
	text-align: center;
}

.bcl-showcase-cover img {
	width: 100%;
	height: auto;
	aspect-ratio: 210 / 297;
	object-fit: cover;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.bcl-showcase-cover-placeholder {
	width: 100%;
	aspect-ratio: 210 / 297;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 32px;
}

.bcl-showcase-title {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 600;
}

.bcl-showcase-arrow {
	flex: 0 0 auto;
	width: 26px;
	height: 50px;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	color: #2c4f8f;
	transition: opacity 0.15s ease;
}

.bcl-showcase-arrow:hover {
	opacity: 0.7;
}

.bcl-showcase-arrow .bcl-chevron {
	width: 100%;
	height: 100%;
	display: block;
}

.bcl-showcase-prev .bcl-chevron {
	transform: scaleX(-1);
}

.bcl-showcase-empty {
	text-align: center;
	color: #777;
}
