.wfs-showcase-wrap {
	background: var(--wfs-bg, #0f1115);
	color: var(--wfs-text, #ffffff);
	padding: 28px 0;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
}

.wfs-showcase-heading {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	opacity: 0.6;
	margin: 0 0 18px;
}

.wfs-showcase-track {
	display: flex;
	width: max-content;
	animation: wfs-scroll var(--wfs-speed, 30s) linear infinite;
	animation-direction: var(--wfs-direction, normal);
}

.wfs-pause-hover:hover .wfs-showcase-track {
	animation-play-state: paused;
}

.wfs-showcase-row {
	display: flex;
	align-items: center;
	gap: var(--wfs-gap, 40px);
	padding-right: var(--wfs-gap, 40px);
	flex-shrink: 0;
}

.wfs-item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--wfs-card-bg, #1b1e25);
	border-radius: 14px;
	padding: 12px 20px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s ease, opacity 0.25s ease;
	white-space: nowrap;
}

.wfs-item:hover {
	transform: translateY(-3px);
	opacity: 0.92;
}

.wfs-item-logo {
	height: var(--wfs-height, 90px);
	width: var(--wfs-height, 90px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.04);
}

.wfs-item-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.wfs-item-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wfs-item-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}

.wfs-item-tagline {
	margin: 0;
	font-size: 13px;
	opacity: 0.65;
}

@keyframes wfs-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wfs-showcase-track {
		animation: none;
	}
}

@media (max-width: 600px) {
	.wfs-item {
		padding: 10px 14px;
	}
	.wfs-item-logo {
		height: 60px;
		width: 60px;
	}
	.wfs-item-title {
		font-size: 14px;
	}
	.wfs-item-tagline {
		font-size: 12px;
	}
}
