/* Home feature image slider — full image visible, auto-slide */
.kk-feature-slider {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-radius: 22px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
	border: 1px solid rgba(15, 23, 42, 0.06);
	align-self: stretch;
}

.kk-feature-slider__viewport {
	overflow: hidden;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.kk-feature-slider__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 100%;
	height: 100%;
	min-height: inherit;
	will-change: transform;
	transition: transform 620ms cubic-bezier(0.4, 0, 0.2, 1);
}

.kk-feature-slider__slide {
	width: 100%;
	min-width: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: inherit;
	padding: clamp(0.55rem, 1.1vw, 0.9rem);
	box-sizing: border-box;
	background: #ffffff;
}

.kk-feature-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.kk-feature-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 0.75rem;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.35rem 0.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

.kk-feature-slider__dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 999px;
	padding: 0;
	background: rgba(36, 49, 67, 0.22);
	cursor: pointer;
	transition: width 220ms ease, background 220ms ease;
}

.kk-feature-slider__dot.is-active {
	width: 22px;
	background: var(--ast-global-color-0, #f18200);
}

.kk-feature-slider__dot:hover,
.kk-feature-slider__dot:focus-visible {
	background: rgba(241, 130, 0, 0.65);
}

.home-chevening:not(.home-eisenhower) .home-chevening__grid {
	align-items: stretch;
}

.home-chevening:not(.home-eisenhower) .kk-feature-slider {
	min-height: 100%;
}

@media (max-width: 900px) {
	.home-chevening:not(.home-eisenhower) .kk-feature-slider {
		min-height: min(420px, 52vh);
	}

	.home-chevening:not(.home-eisenhower) .kk-feature-slider__slide {
		min-height: min(420px, 52vh);
	}
}

@media (prefers-reduced-motion: reduce) {
	.kk-feature-slider__track {
		transition: none;
	}
}
