/* Homepage base-type cards: single-slide carousel (lazy-loaded images). */
.topper-base-carousel .base-track {
	animation: none !important;
	display: block;
	width: 100%;
	position: relative;
}

.topper-base-carousel .base-card {
	display: none;
	width: 100%;
	max-width: none;
	margin: 0 auto;
}

.topper-base-carousel .base-card.is-active {
	display: block;
}

.topper-base-carousel .base-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.topper-base-carousel .base-card img[data-contain="1"] {
	object-fit: contain;
	padding: 20px;
	background: #f1eee9;
}

@media (min-width: 768px) {
	.topper-base-carousel .base-card {
		max-width: 100%;
	}

	.topper-base-carousel .base-card img {
		height: 280px;
	}
}

.topper-base-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.topper-base-carousel-dot {
	width: 8px;
	height: 8px;
	border: none;
	border-radius: 50%;
	padding: 0;
	background: rgba(30, 41, 59, 0.22);
	cursor: pointer;
}

.topper-base-carousel-dot.is-active {
	background: #046bd2;
}
