.sacs-fast-slider {
	--sacs-slider-height: 420px;
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	border-radius: 4px;
	background: #111;
	color: #fff;
}

.sacs-fast-slider__track {
	display: flex;
	width: 100%;
	height: var(--sacs-slider-height);
	transition: transform 0.45s ease;
	will-change: transform;
}

.sacs-fast-slider__slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: var(--sacs-slider-height);
	overflow: hidden;
}

.sacs-fast-slider__media {
	position: absolute;
	inset: 0;
}

.sacs-fast-slider__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sacs-fast-slider__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	padding: clamp(1.25rem, 4vw, 2.5rem);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
	box-sizing: border-box;
}

.sacs-fast-slider__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	line-height: 1.15;
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.sacs-fast-slider__text {
	margin: 0 0 1rem;
	max-width: 42rem;
	font-size: clamp(0.95rem, 2.2vw, 1.125rem);
	line-height: 1.45;
	opacity: 0.95;
}

.sacs-fast-slider__cta {
	display: inline-block;
	align-self: flex-start;
	padding: 0.65rem 1.25rem;
	border-radius: 4px;
	background: #1a6b4a;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease;
}

.sacs-fast-slider__cta:hover,
.sacs-fast-slider__cta:focus {
	background: #145a3e;
	color: #fff;
}

.sacs-fast-slider__controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.75rem;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0 0.75rem;
}

.sacs-fast-slider__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.sacs-fast-slider__btn:hover,
.sacs-fast-slider__btn:focus {
	background: rgba(0, 0, 0, 0.65);
}

.sacs-fast-slider__dots {
	display: flex;
	gap: 0.4rem;
}

.sacs-fast-slider__dot {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
}

.sacs-fast-slider__dot.is-active {
	background: #fff;
	transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
	.sacs-fast-slider__track {
		transition: none;
	}
}
