/* Öne Çıkanlar — şık afiş slider (sayfa arka planına dokunmaz) */
.thk-featured-section {
	--thk-accent: #093f8a;
	--thk-poster-ratio: 5 / 7;
	position: relative;
	margin: 8px 0 0;
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.thk-featured-section::before {
	display: none;
}

/* ——— Carousel kabı + yan oklar ——— */
.thk-poster-carousel {
	position: relative;
	padding: 6px 52px 4px;
}

.thk-poster-carousel > .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 46px;
	height: 46px;
	margin-top: -23px;
	padding: 0;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid rgba(9, 63, 138, 0.22);
	box-shadow:
		0 2px 8px rgba(9, 63, 138, 0.08),
		0 8px 24px rgba(9, 63, 138, 0.1);
	cursor: pointer;
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.thk-poster-carousel > .slick-arrow:before {
	font-family: FontAwesome;
	font-size: 15px;
	line-height: 1;
	color: var(--thk-accent);
	opacity: 1;
	transition: color 0.3s ease;
}

.thk-poster-carousel > .slick-prev {
	left: 0;
}

.thk-poster-carousel > .slick-next {
	right: 0;
}

.thk-poster-carousel > .slick-prev:before {
	content: "\f053";
}

.thk-poster-carousel > .slick-next:before {
	content: "\f054";
}

.thk-poster-carousel > .slick-arrow:hover,
.thk-poster-carousel > .slick-arrow:focus {
	background: var(--thk-accent);
	border-color: var(--thk-accent);
	box-shadow: 0 8px 28px rgba(9, 63, 138, 0.28);
	transform: scale(1.06);
	outline: none;
}

.thk-poster-carousel > .slick-arrow:hover:before,
.thk-poster-carousel > .slick-arrow:focus:before {
	color: #ffffff;
}

.thk-poster-carousel > .slick-arrow.slick-disabled {
	opacity: 0.35;
	cursor: default;
	transform: none;
	box-shadow: none;
}

/* ——— Slider izi ——— */
.oneCikanSlider {
	--thk-poster-gap: 28px;
	position: relative;
	z-index: 1;
	margin: 0 calc(var(--thk-poster-gap) / -2);
}

.oneCikanSlider .slick-list {
	overflow: hidden;
	padding: 14px calc(var(--thk-poster-gap) / 2) 18px !important;
}

.oneCikanSlider .slick-slide {
	padding: 0 calc(var(--thk-poster-gap) / 2);
	height: auto;
	box-sizing: border-box;
}

.oneCikanSlider .slick-slide[aria-hidden="true"] .thk-poster {
	pointer-events: none;
}

.oneCikanSlider .slick-slide .thk-poster {
	pointer-events: auto;
}

.oneCikanSlider .slick-slide:not(.slick-active) {
	opacity: 0.85;
}

.oneCikanSlider .slick-track {
	display: flex !important;
	align-items: stretch;
}

.oneCikanSlider .slick-slide > div,
.thk-poster-slide {
	height: 100%;
}

/* ——— Afiş ——— */
.thk-poster {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 272px;
	margin: 0 auto;
	aspect-ratio: var(--thk-poster-ratio);
	border-radius: 10px;
	overflow: hidden;
	background: #eef1f5;
	cursor: pointer;
	box-shadow:
		0 4px 6px rgba(9, 63, 138, 0.04),
		0 12px 28px rgba(9, 63, 138, 0.11);
	text-decoration: none;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.thk-poster::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
	background: rgba(255, 255, 255, 0.28);
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.45s ease;
}

.thk-poster::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(9, 63, 138, 0.1);
	pointer-events: none;
	transition: box-shadow 0.35s ease;
}

.thk-poster__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	pointer-events: none;
	filter: saturate(0.55) brightness(0.94);
	transition:
		filter 0.5s ease,
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.thk-poster:hover,
.thk-poster:focus {
	transform: translateY(-10px) scale(1.02);
	box-shadow:
		0 10px 20px rgba(9, 63, 138, 0.12),
		0 24px 48px rgba(9, 63, 138, 0.2);
	text-decoration: none;
	outline: none;
}

.thk-poster:hover::before,
.thk-poster:focus::before {
	opacity: 0;
}

.thk-poster:hover::after,
.thk-poster:focus::after {
	box-shadow: inset 0 0 0 3px rgba(9, 63, 138, 0.45);
}

.thk-poster:hover .thk-poster__img,
.thk-poster:focus .thk-poster__img {
	filter: saturate(1) brightness(1);
	transform: scale(1.04);
}

.oneCikanSlider .slick-current .thk-poster {
	opacity: 1;
}

/* ——— Nokta navigasyon ——— */
.thk-featured-section__dots {
	margin-top: 4px;
	text-align: center;
}

.thk-featured-section__dots .slick-dots {
	position: static;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 8px 14px;
	list-style: none;
	background: rgba(9, 63, 138, 0.05);
	border-radius: 999px;
}

.thk-featured-section__dots .slick-dots li {
	margin: 0;
	width: auto;
	height: auto;
}

.thk-featured-section__dots .slick-dots li button {
	width: 7px;
	height: 7px;
	padding: 0;
	border-radius: 50%;
	background: rgba(9, 63, 138, 0.22);
	border: none;
	font-size: 0;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.thk-featured-section__dots .slick-dots li button:before {
	display: none;
}

.thk-featured-section__dots .slick-dots li.slick-active button {
	width: 26px;
	border-radius: 999px;
	background: var(--thk-accent);
}

@media (max-width: 992px) {
	.oneCikanSlider {
		--thk-poster-gap: 22px;
	}

	.thk-poster {
		max-width: 236px;
	}

	.thk-poster-carousel {
		padding-left: 44px;
		padding-right: 44px;
	}

	.thk-poster-carousel > .slick-arrow {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
}

@media (max-width: 768px) {
	.oneCikanSlider {
		--thk-poster-gap: 18px;
	}

	.thk-poster-carousel {
		padding-left: 38px;
		padding-right: 38px;
	}

	.thk-poster {
		max-width: 220px;
	}

	.thk-poster-carousel > .slick-arrow {
		width: 36px;
		height: 36px;
		margin-top: -18px;
	}

	.thk-poster-carousel > .slick-arrow:before {
		font-size: 13px;
	}
}

@media (max-width: 560px) {
	.oneCikanSlider {
		--thk-poster-gap: 14px;
	}

	.thk-poster-carousel {
		padding-left: 32px;
		padding-right: 32px;
	}

	.thk-poster {
		max-width: 240px;
	}

	.oneCikanSlider .slick-slide:not(.slick-active) {
		opacity: 0.65;
	}
}
