/* ═══════════════════════════════════════════════════════════════════════════
   HOME — LOGO CAROUSEL
   ═══════════════════════════════════════════════════════════════════════════ */

.logo-ticker {
	padding: var(--ci-section-padding) 0;
	background-color: #751a3b;
	border-top: 0.3rem solid #ffffff;
	border-bottom: none;
}

/* Label */
.logo-ticker__label {
	font-family: var(--ci-font-primary);
	font-size: clamp(1.6rem, 2.4vw, 2.4rem);
	font-weight: 700;
	color: #c6a54e;
	text-align: center;
	margin: 0 0 2rem;
}

/* Carousel row: prev arrow + viewport + next arrow */
.logo-ticker__carousel {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Viewport: no border, just clips the scrolling track */
.logo-ticker__viewport {
	flex: 1;
	overflow: hidden;
}

/* Track: scrolls horizontally via JS transform */
.logo-ticker__track {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	will-change: transform;
}

/* Logo cards — no border, just the image */
.logo-ticker__item {
	flex-shrink: 0;
	width: 210px;
	height: 210px;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-ticker__item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Arrow buttons — small, unobtrusive */
.logo-ticker__arrow {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	touch-action: manipulation;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.logo-ticker__arrow svg {
	width: 13px;
	height: 13px;
	display: block;
}

.logo-ticker__arrow:hover {
	background: rgba(198, 165, 78, 0.18);
	border-color: #c6a54e;
	color: #c6a54e;
}

/* ── Mobile ── */
@media (max-width: 767px) {
	.logo-ticker {
		padding: var(--ci-section-padding-mobile) 0;
	}

	.logo-ticker__label {
		font-size: clamp(1.2rem, 4vw, 1.5rem);
		margin-bottom: 1.5rem;
	}

	.logo-ticker__item {
		width: 130px;
		height: 130px;
	}

	.logo-ticker__arrow {
		width: 26px;
		height: 26px;
	}

	.logo-ticker__arrow svg {
		width: 11px;
		height: 11px;
	}
}
