.front-page .vc-brand-marquee-section:not(.vc-brand-marquee-section--vcm) {
	display: none;
}

.vc-brand-marquee-section--vcm {
	width: 100%;
	padding: clamp(2.5rem, 3vw, 3.75rem) 0 clamp(2.75rem, 3vw, 4rem);
	background: #f7f3ed;
}

.vc-brand-marquee-head {
	width: min(100% - 32px, 1240px);
	margin: 0 auto 1.25rem;
	padding: 0;
	text-align: center;
}

.vc-brand-marquee-kicker {
	margin: 0 0 0.35rem;
	color: #9a6b2f;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vc-brand-marquee-head h2 {
	margin: 0;
	color: #171311;
	font-size: clamp(1.6rem, 2.8vw, 2.5rem);
	line-height: 1.1;
}

.vc-brand-marquee-subtitle {
	max-width: 52rem;
	margin: 0.55rem auto 0;
	color: #5d5750;
}

.vc-brand-marquee {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.vc-brand-marquee:before,
.vc-brand-marquee:after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 72px;
	content: "";
	z-index: 1;
	pointer-events: none;
}

.vc-brand-marquee:before {
	left: 0;
	background: linear-gradient(90deg, #f7f3ed 0%, rgba(247, 243, 237, 0) 100%);
}

.vc-brand-marquee:after {
	right: 0;
	background: linear-gradient(270deg, #f7f3ed 0%, rgba(247, 243, 237, 0) 100%);
}

.vc-brand-marquee-track {
	display: flex;
	align-items: center;
	gap: clamp(1.25rem, 2vw, 2.75rem);
	width: max-content;
	will-change: transform;
	animation: vc-brand-marquee-scroll 42s linear infinite;
}

.vc-brand-marquee:hover .vc-brand-marquee-track,
.vc-brand-marquee:focus-within .vc-brand-marquee-track {
	animation-play-state: paused;
}

.vc-brand-marquee-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: clamp(96px, 10vw, 130px);
	height: clamp(96px, 10vw, 130px);
	background: #ffffff;
	border-radius: 1rem;
	padding: 1rem;
	box-shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
	transition: transform 0.3s ease;
}

.vc-brand-marquee-item__img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.vc-brand-marquee-item:focus-visible {
	outline: 3px solid #d9a148;
	outline-offset: 3px;
}

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

@media (max-width: 768px) {
	.vc-brand-marquee-section--vcm {
		padding: 2rem 0 2.25rem;
	}
	.vc-brand-marquee-head {
		margin-bottom: 1rem;
	}
	.vc-brand-marquee-track {
		gap: 1rem;
		animation-duration: 30s;
	}
	.vc-brand-marquee-item {
		width: clamp(92px, 24vw, 110px);
		height: clamp(92px, 24vw, 110px);
		padding: 0.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-brand-marquee-track {
		animation: none;
	}
}
