.hero-slider {
	--hero-slider-radius: 2px;
	--hero-slider-aspect: 16 / 9;
	--hero-slider-min-height: clamp(320px, 52vw, 680px);
	position: relative;
	margin: 0 auto;
	max-width: 1400px;
}

.hero-slider:focus {
	outline: none;
}

.hero-slider:focus-visible {
	outline: 2px solid #000;
	outline-offset: 4px;
}

.hero-slider__viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	border-radius: var(--hero-slider-radius);
	background: #111;
	isolation: isolate;
}

.hero-slider__track {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: var(--hero-slider-min-height);
	aspect-ratio: var(--hero-slider-aspect);
}

.hero-slider__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.hero-slider__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-slider__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-slider__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.55) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 55%);
	pointer-events: none;
}

.hero-slider__content {
	position: relative;
	z-index: 2;
	width: min(100%, 640px);
	margin: 0;
	padding: clamp(1.25rem, 3vw, 2.5rem);
	color: #fff;
}

.hero-slider__title {
	margin: 0 0 0.75rem;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.5rem, 2.4vw + 0.75rem, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.hero-slider__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem 0.75rem;
	overflow-wrap: anywhere;
	margin: 0 0 1.25rem;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1rem, 0.5vw + 0.95rem, 1.25rem);
	font-weight: 400;
	line-height: 1.4;
}

.hero-slider__price-current {
	font-weight: 700;
}

.hero-slider__price-old {
	opacity: 0.75;
}

.hero-slider__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.5rem;
	border: none;
	background: #000;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-slider__cta:hover,
.hero-slider__cta:focus-visible {
	background: #fff;
	color: #000;
}

.hero-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
}

.hero-slider__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid #000;
	border-radius: 50%;
	background: transparent;
	color: #000;
	font-size: 1.125rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-slider__nav:hover,
.hero-slider__nav:focus-visible {
	background: #000;
	border-color: #000;
	color: #fff;
	outline: none;
}

.hero-slider__nav:focus-visible {
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}

.hero-slider__status {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	min-width: 4.5rem;
	justify-content: center;
	font-variant-numeric: tabular-nums;
}

.hero-slider__status-sep {
	opacity: 0.65;
}

@media (min-width: 768px) {
	.hero-slider__track {
		min-height: 0;
	}
}

@media (max-width: 767px) {
	main > .container:first-child {
		padding-left: 0;
		padding-right: 0;
		overflow-x: clip;
	}

	#slideshow .row {
		margin-left: 0;
		margin-right: 0;
	}

	#slideshow .col-lg-10 {
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	#slideshow {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}

	.hero-slider {
		--hero-slider-aspect: auto;
		--hero-slider-min-height: clamp(420px, 115vw, 560px);
		width: 100%;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}

	.hero-slider__viewport {
		border-radius: 0;
	}

	.hero-slider__content {
		width: 100%;
		padding: 1.25rem 1rem 1.5rem;
	}

	.hero-slider__overlay {
		background:
			linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.72) 100%);
	}

	.hero-slider__title {
		font-size: clamp(1.375rem, 6vw, 1.875rem);
	}

	.hero-slider__price {
		margin-bottom: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-slider__slide {
		transition: none;
	}
}
