.eis-slider {
	--eis-height: 500px;
	--eis-accent: #2451b8;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: var(--eis-height);
	overflow: hidden;
	border-radius: 6px;
	background: #0d1321;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.eis-slider.eis-full-width {
	border-radius: 0;
}

.eis-slider * {
	box-sizing: border-box;
}

.eis-track {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}

.eis-effect-fade .eis-track {
	transition: none;
}

.eis-slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.eis-effect-fade .eis-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.eis-effect-fade .eis-slide.eis-is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.eis-slide-inner {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.eis-slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #1b2333;
}

.eis-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: clamp(16px, 4vw, 48px);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
	color: #fff;
}

.eis-caption-title {
	margin: 0 0 6px;
	font-size: clamp(18px, 2.4vw, 32px);
	font-weight: 700;
	line-height: 1.25;
}

.eis-caption-subtitle {
	margin: 0 0 14px;
	font-size: clamp(13px, 1.2vw, 17px);
	max-width: 640px;
	opacity: 0.92;
}

.eis-caption-button {
	display: inline-block;
	background: var(--eis-accent);
	color: #fff;
	padding: 9px 20px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
}

.eis-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
}

.eis-arrow:hover {
	background: rgba(0, 0, 0, 0.6);
}

.eis-arrow:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.eis-prev { left: 16px; }
.eis-next { right: 16px; }

.eis-dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}

.eis-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.eis-dot.is-active {
	background: #fff;
	transform: scale(1.2);
}

.eis-dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

@media (max-width: 782px) {
	.eis-slider {
		height: min(var(--eis-height), 62vw);
	}
	.eis-arrow {
		width: 34px;
		height: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eis-track,
	.eis-slide,
	.eis-arrow,
	.eis-dot {
		transition: none !important;
	}
}
