.ks-marquee-wrapper {
	overflow: hidden;
	width: 100%;
	display: flex;
}

.ks-marquee-track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	animation: ks-scroll 20s linear infinite;
	width: max-content;
}

.ks-marquee-wrapper:hover .ks-marquee-track {
	animation-play-state: paused;
}

.ks-social-card {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 15px 25px;
	border-radius: 50px;
	background: #f5f5f5;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	text-decoration: none;
}

.ks-card-link-wrapper {
	text-decoration: none !important;
	color: inherit;
}

.ks-card-info {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ks-card-count {
	font-weight: 800;
	font-size: 1.5em;
	color: #333;
}

.ks-card-label {
	font-size: 0.9em;
	color: #666;
	white-space: nowrap;
}

.ks-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ks-card-icon i, 
.ks-card-icon svg {
	font-size: 24px;
	width: 24px;
	height: auto;
}

.ks-card-icon img {
	max-width: 40px;
	height: auto;
	display: block;
}

@keyframes ks-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}