.bcm-wrap{
	--card-bg: #f2f2f4;
	--card-width: 220px;
	--logo-size: 64px;
	--gap: 24px;
	--speed: 32s;

	position: relative;
	width: 100%;
	overflow: hidden;
}

.bcm-wrap:not(.bcm-no-fade)::before,
.bcm-wrap:not(.bcm-no-fade)::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 90px;
	z-index: 2;
	pointer-events: none;
}
.bcm-wrap:not(.bcm-no-fade)::before{
	left: 0;
	background: linear-gradient(to right, var(--bcm-fade-color, #ffffff), transparent);
}
.bcm-wrap:not(.bcm-no-fade)::after{
	right: 0;
	background: linear-gradient(to left, var(--bcm-fade-color, #ffffff), transparent);
}

.bcm-track{
	display: flex !important;
	width: max-content !important;
	gap: var(--gap);
	animation-name: bcm-scroll;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: var(--speed);
}

.bcm-wrap:not(.bcm-no-pause):hover .bcm-track{
	animation-play-state: paused !important;
}

@keyframes bcm-scroll{
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-50% - var(--gap) / 2)); }
}

.bcm-card{
	flex: 0 0 auto;
	width: var(--card-width);
	background: var(--card-bg);
	border-radius: 18px;
	padding: 28px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease;
}

a.bcm-card:hover{
	text-decoration: none;
}

.bcm-card:hover{
	transform: translateY(-4px);
}

.bcm-card img{
	width: var(--logo-size);
	height: var(--logo-size);
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
	margin-bottom: 16px;
}

.bcm-card h6{
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: #1c1c1e;
}

.bcm-card p{
	margin: 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: #8a8a8f;
}

@media (max-width: 640px){
	.bcm-card{ padding: 20px 14px; }
}
