.hero-slider {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	background: var(--color-taupe);
}

.hero-slider-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: relative;
	display: none;
	min-height: 420px;
}

.hero-slide.is-active {
	display: block;
}

.hero-slide-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.05) saturate(0.85);
}

.hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0.55) 100%);
}

.hero-slide-content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
	padding: 90px var(--space-md) 110px;
	text-align: center;
}

.hero-slide-heading {
	font-size: clamp(28px, 4vw, 42px);
	text-transform: uppercase;
	color: var(--color-ink);
}

.hero-slide-subheading {
	margin-top: var(--space-sm);
	font-size: 15px;
	color: var(--color-ink-soft);
	line-height: 1.7;
}

.hero-slide-buttons {
	margin-top: var(--space-md);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	flex-wrap: wrap;
}

.hero-slider-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.hero-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	padding: 0;
	background: #5252524D;
	cursor: pointer;
	border: none;
}

.hero-slider-dot.is-active {
	width: 8px;
	height: 8px;
	background: var(--color-ink);
	outline: 1px solid black;
	outline-offset: 3px;
}

.acf-block-placeholder {
	padding: var(--space-lg);
	text-align: center;
	color: var(--color-muted);
	background: var(--color-taupe);
}

@media (max-width: 600px) {
	.hero-slide-content {
		padding: 56px var(--space-sm) 80px;
	}

	.hero-slide-buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero-slide-buttons .btn {
		width: 100%;
	}
}
