.csz-hero-slider {
	--csz-hero-navy: #1a2857;
	position: relative;
	width: 100%;
	padding: clamp(16px, 2.4vw, 32px) 0 clamp(20px, 2.8vw, 38px);
	background: #fff;
	overflow: hidden;
}

.csz-hero-track {
	position: relative;
	width: 100%;
	aspect-ratio: 2000 / 750;
	min-height: 300px;
	max-height: 760px;
	background: #111;
	overflow: hidden;
}

.csz-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 420ms ease, visibility 420ms ease;
}

.csz-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.csz-hero-link {
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
}

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

.csz-hero-content {
	position: absolute;
	left: clamp(24px, 7vw, 110px);
	bottom: clamp(24px, 8vw, 90px);
	max-width: min(520px, 80vw);
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.csz-hero-button {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 18px;
	background: #ffffff;
	color: #002f6c;
	font-weight: 700;
	text-shadow: none;
}

.csz-hero-control {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 42px;
	line-height: 1;
	font-family: Arial, Helvetica, sans-serif;
	transform: translateY(-50%);
	cursor: pointer;
	appearance: none;
}

.csz-hero-control span {
	display: block;
	line-height: 1;
	transform: translateY(-1px);
}

.csz-hero-control:hover,
.csz-hero-control:focus {
	background: rgba(0, 0, 0, 0.7);
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.csz-hero-prev {
	left: 18px;
}

.csz-hero-next {
	right: 18px;
}

.csz-hero-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 18px;
	margin-top: 14px;
}

.csz-hero-dots button {
	width: 14px;
	height: 14px;
	padding: 0;
	border: 2px solid var(--csz-hero-navy);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.csz-hero-dots button.is-active,
.csz-hero-dots button:hover,
.csz-hero-dots button:focus {
	background: var(--csz-hero-navy);
}

.csz-hero-dots button:focus-visible {
	outline: 2px solid var(--csz-hero-navy);
	outline-offset: 3px;
}

@media (max-width: 767px) {
	.csz-hero-track {
		aspect-ratio: 2000 / 750;
		min-height: 180px;
	}

	.csz-hero-slide img {
		object-fit: contain;
	}

	.csz-hero-control {
		width: 42px;
		height: 42px;
		font-size: 32px;
	}

	.csz-hero-prev {
		left: 10px;
	}

	.csz-hero-next {
		right: 10px;
	}
}
