/* Sportif havacılık branşları — ikon carousel */
.thk-branches {
	--thk-accent: #093f8a;
	--thk-accent-light: #00aeef;
	position: relative;
	margin: 4px 0 18px;
	padding: 0;
}

.thk-branches-carousel {
	position: relative;
	padding: 0 44px 28px;
}

.thk-branches-carousel__arrows {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 28px;
	z-index: 8;
	pointer-events: none;
}

.thk-branches-carousel__arrows .slick-arrow {
	pointer-events: auto;
	position: absolute;
	top: 42%;
	z-index: 8;
	width: 38px;
	height: 38px;
	margin-top: -19px;
	padding: 0;
	border-radius: 50%;
	background: #fff;
	border: 1px solid rgba(9, 63, 138, 0.18);
	box-shadow: 0 4px 14px rgba(9, 63, 138, 0.1);
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.thk-branches-carousel__arrows .slick-arrow:before {
	font-family: FontAwesome;
	font-size: 13px;
	line-height: 1;
	color: var(--thk-accent);
	opacity: 1;
}

.thk-branches-carousel__arrows .slick-prev { left: 0; }
.thk-branches-carousel__arrows .slick-next { right: 0; }
.thk-branches-carousel__arrows .slick-prev:before { content: "\f053"; }
.thk-branches-carousel__arrows .slick-next:before { content: "\f054"; }

.thk-branches-carousel__arrows .slick-arrow:hover,
.thk-branches-carousel__arrows .slick-arrow:focus {
	background: var(--thk-accent);
	border-color: var(--thk-accent);
	transform: scale(1.06);
	outline: none;
}

.thk-branches-carousel__arrows .slick-arrow:hover:before,
.thk-branches-carousel__arrows .slick-arrow:focus:before {
	color: #fff;
}

.thk-branches-track .slick-slide {
	padding: 2px 1px;
}

.thk-branches-track .slick-list {
	margin: 0 -2px;
}

.thk-branches-track .slick-dots {
	bottom: 0;
}

.thk-branches-track .slick-dots li button:before {
	font-size: 9px;
	color: rgba(9, 63, 138, 0.28);
	opacity: 1;
}

.thk-branches-track .slick-dots li.slick-active button:before {
	color: var(--thk-accent);
}

.thk-branch-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: var(--thk-accent);
	padding: 4px 0 2px;
	border-radius: 12px;
	transition:
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.3s ease;
}

.thk-branch-card:hover,
.thk-branch-card:focus {
	text-decoration: none;
	color: var(--thk-accent);
	transform: translateY(-4px);
	outline: none;
}

.thk-branch-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	margin-bottom: 8px;
	border-radius: 50%;
	background: linear-gradient(160deg, #ffffff 0%, #f3f8fd 100%);
	border: 2px solid rgba(9, 63, 138, 0.12);
	box-shadow:
		0 2px 8px rgba(9, 63, 138, 0.06),
		inset 0 0 0 6px rgba(255, 255, 255, 0.85);
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.thk-branch-card:hover .thk-branch-card__icon,
.thk-branch-card:focus .thk-branch-card__icon {
	border-color: rgba(0, 174, 239, 0.55);
	box-shadow:
		0 8px 20px rgba(9, 63, 138, 0.14),
		inset 0 0 0 6px rgba(255, 255, 255, 0.9);
	transform: scale(1.05);
}

.thk-branch-card__icon img {
	display: block;
	width: 62px;
	height: 62px;
	object-fit: contain;
}

.thk-branch-card__label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	max-width: 9.5em;
	min-height: 2.6em;
}

@media (max-width: 640px) {
	.thk-branches-carousel {
		padding: 0 36px 26px;
	}

	.thk-branch-card__icon {
		width: 76px;
		height: 76px;
	}

	.thk-branch-card__icon img {
		width: 54px;
		height: 54px;
	}

	.thk-branch-card__label {
		font-size: 10px;
	}
}
