.section:has(.section--home-horizontal-slider) {
	padding-bottom: 0;
}

.section--home-horizontal-slider {
	height: 400vh;
	height: 400svh;
	padding: 0;
	background: #fff;
}

.home-horizontal-slider {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	background: #fff;
}

.home-horizontal-slider__stage,
.home-horizontal-slider__slide,
.home-horizontal-slider__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-horizontal-slider__slide {
	position: absolute;
	pointer-events: none;
}

.home-horizontal-slider__content {
	pointer-events: auto;
}

.home-horizontal-slider__photo {
	z-index: 1;
	overflow: hidden;
	-webkit-clip-path: polygon(125% 0%, 250% 0%, 275% 100%, 100% 100%);
	clip-path: polygon(125% 0%, 250% 0%, 275% 100%, 100% 100%);
	will-change: clip-path;
}

.home-horizontal-slider__image {
	position: absolute;
	left: 0;
	right: 0;
	top: -40px;
	display: block;
	width: 100%;
	height: calc(100% + 80px);
	object-fit: cover;
	object-position: center;
	will-change: transform;
}

.home-horizontal-slider__dim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.25);
}

.home-horizontal-slider__content {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 10;
	padding-left: clamp(160px, 22vw, 240px);
	text-align: left;
	opacity: 0;
	-webkit-clip-path: polygon(125% 0%, 250% 0%, 275% 100%, 100% 100%);
	clip-path: polygon(125% 0%, 250% 0%, 275% 100%, 100% 100%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}


.home-horizontal-slider__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(2.8rem, 4vw, 5.2rem);
	font-weight: 700;
	line-height: 1.12;
}

.home-horizontal-slider__subtitle {
	margin: 0;
	color: #fff;
	font-size: 3.5rem;
}

.home-horizontal-slider__cta {
	display: inline-block;
	margin-top: 24px;
	padding: 10px 28px 12px;
	border-radius: 30px;
	background: #ff2128;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
	transition: background 200ms ease;
}

.home-horizontal-slider__cta:hover {
	background: #cc0007;
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 1050px) {
	.home-horizontal-slider__content {
		padding-left: 150px;
	}
}

@media screen and (max-width: 760px) {
	.section--home-horizontal-slider {
		height: auto;
		background: #fff;
	}

	.home-horizontal-slider {
		position: static;
		height: auto;
		overflow: visible;
		background: #fff;
	}

	.home-horizontal-slider__stage {
		position: static;
		inset: auto;
		width: 100%;
		height: auto;
	}

	.home-horizontal-slider__slide,
	.home-horizontal-slider__slide[aria-hidden="true"] {
		position: static;
		inset: auto;
		width: 100%;
		height: auto;
		display: block;
	}

	.home-horizontal-slider__photo {
		position: relative;
		inset: auto;
		width: 100%;
		height: 60vw;
		-webkit-clip-path: none !important;
		clip-path: none !important;
		-webkit-transition: none;
		transition: none;
	}

	.home-horizontal-slider__image {
		top: 0;
		height: 100%;
		-webkit-transform: none;
		transform: none;
	}

	.home-horizontal-slider__dim {
		display: none;
	}

	.home-horizontal-slider__content {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		max-width: none;
		-webkit-transform: none;
		transform: none;
		opacity: 1 !important;
		-webkit-clip-path: none !important;
		clip-path: none !important;
		-webkit-transition: none;
		transition: none;
		padding: 20px 20px 32px;
		background: #fff;
	}

	.home-horizontal-slider__cta {
		display: block;
		width: -webkit-fit-content;
		width: fit-content;
		margin-top: 16px;
		color: #fff;
	}

	.home-horizontal-slider__title {
		display: inline;
		margin: 0;
		color: #0a0a0a;
		font-size: inherit;
		line-height: inherit;
	}

	.home-horizontal-slider__subtitle {
		display: inline;
		color: #0a0a0a;
		font-size: inherit;
		line-height: inherit;
	}

}

