/* ===== FHK Banner ===== */
.fhk-banner {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	min-height: 400px;
}

.fhk-banner__slides {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.fhk-banner__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1);
	transition: opacity 2s ease-in-out;   /* yumuşak çapraz geçiş */
	will-change: opacity, transform;
}
.fhk-banner__slide.is-active {
	opacity: 1;
}

/* Yavaş zoom (Ken Burns) — transition tabanlı, sıçrama yok */
.fhk-banner[data-kenburns="1"] .fhk-banner__slide {
	transition: opacity 2s ease-in-out, transform 10s ease-out;
}
.fhk-banner[data-kenburns="1"] .fhk-banner__slide.is-active {
	transform: scale(1.12);
}

.fhk-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, .45);
}

.fhk-banner__content {
	position: relative;
	z-index: 2;
	padding: 24px 20px;
	width: 100%;
}

.fhk-banner__title {
	margin: 0;
	color: #fff;
	font-weight: 700;
	font-size: 44px;
	line-height: 1.15;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.fhk-banner__subtitle {
	margin-top: 12px;
	color: #eee;
	font-size: 18px;
	text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

/* Mobilde yazıları küçült */
@media (max-width: 767px) {
	.fhk-banner__subtitle {
		font-size: 14px;
	}
	.fhk-banner__content {
		padding: 16px 14px;
	}
}
