.khs-slider {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 620px;
	overflow: hidden;
	background: #000;
}

.khs-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.khs-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease;
}

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

.khs-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.khs-media-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.khs-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 2;
}

.khs-content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 20px;
	color: #fff;
}

.khs-content-center {
	max-width: 800px;
	margin: 0 auto;
}

.khs-icon {
	max-width: 80px;
	height: auto;
	margin-bottom: 20px;
}

.khs-text {
	font-size: clamp(16px, 2.2vw, 26px);
	line-height: 1.5;
	font-weight: 500;
}

.khs-subtitle {
	letter-spacing: 2px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 12px;
	opacity: .9;
}

.khs-title {
	font-size: clamp(28px, 5vw, 52px);
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 24px;
	max-width:460px;
}

.khs-button {
	display: inline-block;
	padding: 14px 32px;
	background: #9E79B6;
	color: #FFF;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 14px;
	border-radius: 100px;
	transition: background .25s ease, color .25s ease;
}

.khs-button:hover {
	background: transparent;
	color: #9E79B6;
	border: 2px solid #9E79B6;
	padding: 12px 30px;
}

.khs-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease;
}

.khs-arrow:hover, .khs-arrow:focus {
	background: rgba(255, 255, 255, 0.35);
}

.khs-prev {
	left: 20px;
}

.khs-next {
	right: 20px;
}

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

.khs-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background .2s ease;
}

.khs-dot.is-active {
	background: #fff;
}

@media (max-width:768px) {
	.khs-slider {
		height: 70vh;
		min-height: 400px;
	}

	.khs-arrow {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}
}