.bcwp-slider {
	overflow: hidden;
	width: 100%;
}

.bcwp-slider-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: bcwp-scroll var(--bcwp-speed, 30s) linear infinite;
}

.bcwp-slider--rtl .bcwp-slider-track {
	animation-direction: reverse;
}

.bcwp-slider[data-pause-hover="1"]:hover .bcwp-slider-track {
	animation-play-state: paused;
}

.bcwp-slider-item {
	flex: 0 0 var(--bcwp-size, 200px);
	text-align: center;
}

.bcwp-slider-item a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bcwp-slider-item img {
	width: var(--bcwp-size, 200px);
	height: var(--bcwp-size, 200px);
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.bcwp-slider-artist {
	display: block;
	padding: 6px 0 0;
	font-size: 12px;
	color: #666;
}

.bcwp-slider-title {
	display: block;
	padding: 2px 0 4px;
	font-weight: 600;
	font-size: 13px;
}

@keyframes bcwp-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(calc(-50% - 8px)); }
}
