/* Hero slider - simple auto-advance, arrows, no fullscreen. Images 940x528 - keep aspect ratio */
.hero-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 940 / 528;
	overflow: hidden;
	background: #111;
}
.hero-slider__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.6s ease;
	will-change: transform;
}
.hero-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	height: 100%;
}
.hero-slider__slide a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}
.hero-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	vertical-align: top;
}
.hero-slider__nav {
	position: absolute;
	bottom: 50px;
	right: 40px;
	z-index: 5;
	display: flex;
	gap: 2px;
}
@media (max-width: 479px) {
	.hero-slider__nav { bottom: 20px; right: 20px; }
}
.hero-slider__btn {
	width: 40px;
	height: 40px;
	background: rgba(27,27,27,1);
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.25s;
}
.hero-slider__btn:hover {
	background: #ffbc09;
}
.hero-slider__btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #fff;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.hero-slider__btn--prev svg { transform: rotate(180deg); }
