.kuznetsov-hero-slider {
	position: relative;
	width: 100%;
	min-height: 60vh;
	max-height: 600px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.hero-slides {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 60vh;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s;
}

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

.hero-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.hero-slide-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	padding: 3rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.hero-title {
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
	text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
	color: rgba(255,255,255,0.95);
	font-size: clamp(1rem, 2vw, 1.25rem);
	margin: 0;
	text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-dots {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 0.5rem;
}

.hero-dot {
	width: 12px;
	height: 12px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s, transform 0.2s;
}

.hero-dot:hover {
	transform: scale(1.2);
	background: rgba(255,255,255,0.5);
}

.hero-dot.active {
	background: #fff;
}

@media (max-width: 782px) {
	.kuznetsov-hero-slider {
		min-height: 50vh;
	}
	.hero-slide-content {
		padding: 2rem 1.5rem;
	}
}
