/* IFA Video Carousel */
.ifa-vc {
	position: relative;
	width: 100%;
}

.ifa-vc__container {
	position: relative;
	padding: 0 8px;
}

.ifa-vc-swiper {
	padding: 12px 4px 20px;
	overflow: hidden;
}

/* Kart */
.ifa-vc-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Görsel alanı */
.ifa-vc-card__media {
	position: relative;
	height: 240px;
	overflow: hidden;
	border-radius: 16px;
	margin: 8px 8px 0;
}

.ifa-vc-card__media-link {
	display: block;
	width: 100%;
	height: 100%;
}

.ifa-vc-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.ifa-vc-card:hover .ifa-vc-card__media img {
	transform: scale(1.05);
}

/* İçerik */
.ifa-vc-card__body {
	padding: 24px 24px 28px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.ifa-vc-card__title {
	margin: 0 0 14px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	color: #1a1a1a;
}

.ifa-vc-card__desc {
	margin: 0 0 22px;
	font-size: 16px;
	line-height: 1.75;
	color: #5b5b5b;
	flex: 1 1 auto;
}

/* Buton */
.ifa-vc-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	padding: 12px 26px;
	border: 2px solid #e4571e;
	border-radius: 40px;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	line-height: 1;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ifa-vc-btn:hover {
	background: #e4571e;
	border-color: #e4571e;
	color: #fff;
}

.ifa-vc-btn svg {
	transition: transform 0.3s ease;
}

.ifa-vc-btn:hover svg {
	transform: translateX(4px);
}

/* Oklar */
.ifa-vc-arrow {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 10;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #1a1a1a;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ifa-vc-arrow:hover {
	transform: translateY(-50%) scale(1.08);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.ifa-vc-arrow--prev {
	left: -10px;
}

.ifa-vc-arrow--next {
	right: -10px;
}

.ifa-vc-arrow.swiper-button-disabled {
	opacity: 0.4;
	cursor: default;
}

/* Noktalar */
.ifa-vc-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 26px;
}

.ifa-vc-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cfcfcf;
	opacity: 1;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.ifa-vc-pagination .swiper-pagination-bullet-active {
	background: #1a1a1a;
	transform: scale(1.15);
}

/* Responsive */
@media (max-width: 1024px) {
	.ifa-vc-card__title { font-size: 22px; }
}

@media (max-width: 767px) {
	.ifa-vc-arrow--prev { left: 0; }
	.ifa-vc-arrow--next { right: 0; }
	.ifa-vc-card__media { height: 210px; }
}
