/* ═══════════════════════════════════════════════════════════════════════
   FCW — Client Logos Strip (fcw-cls)
   Prefix: fcw-cls__*
   Tailored to premium dark/light modern styling with rich aesthetics.
 ════════════════════════════════════════════════════════════════════════ */

.fcw-cls {
	--fcw-cls-primary: #862780;
	--fcw-cls-secondary: #93C241;
	--fcw-cls-bg: #ffffff;
	--fcw-cls-border: #f3f4f6;
	--fcw-cls-item-bg: #f9fafb;
	--fcw-cls-item-hover-bg: #f3f4f6;
	--fcw-cls-font: 'Inter', sans-serif;

	background-color: var(--fcw-cls-bg);
	border-top: 1px solid var(--fcw-cls-border);
	border-bottom: 1px solid var(--fcw-cls-border);
	font-family: var(--fcw-cls-font);
}

.fcw-cls__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.fcw-cls__heading {
	font-size: 0.875rem;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 32px 0;
	text-align: center;
	line-height: 1.5;
}

.fcw-cls__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 100%;
	margin-bottom: 24px;
}

.fcw-cls__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background-color: var(--fcw-cls-item-bg);
	border-radius: 12px;
	border: 1px solid transparent;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fcw-cls__item:hover {
	background-color: var(--fcw-cls-item-hover-bg);
	border-color: var(--fcw-cls-border);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.fcw-cls__initials {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--fcw-cls-primary), var(--fcw-cls-secondary));
	border-radius: 8px;
	color: #ffffff;
	font-weight: 800;
	font-size: 0.875rem;
	flex-shrink: 0;
}

.fcw-cls__image-wrap {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fcw-cls__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.fcw-cls__name {
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.fcw-cls__item:hover .fcw-cls__name {
	color: #111827;
}

.fcw-cls__cta {
	text-align: center;
}

.fcw-cls__cta-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--fcw-cls-primary);
	text-decoration: none;
	transition: all 0.2s ease;
}

.fcw-cls__cta-link i {
	font-size: 1rem;
	transition: transform 0.2s ease;
}

.fcw-cls__cta-link:hover i {
	transform: translateX(4px);
}

@media (max-width: 640px) {
	.fcw-cls__inner {
		padding: 36px 16px;
	}
	.fcw-cls__heading {
		margin-bottom: 24px;
	}
	.fcw-cls__list {
		gap: 12px;
	}
	.fcw-cls__item {
		padding: 8px 16px;
	}
}
