.vn-trust-ticker {
	background: #f1efe6;
	overflow: hidden;
	padding: 16px 0;
	border-top: 1px solid rgba(31,55,34,0.08);
	border-bottom: 1px solid rgba(31,55,34,0.08);
}
.vn-trust-ticker__track {
	display: flex;
	width: max-content;
	animation: vn-ticker-scroll 32s linear infinite;
}
.vn-trust-ticker:hover .vn-trust-ticker__track {
	animation-play-state: paused;
}
.vn-trust-ticker__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 26px;
	white-space: nowrap;
	flex-shrink: 0;
}
.vn-trust-ticker__icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #f7f6f2;
}
.vn-trust-ticker__icon--a {
	background: #2f5233;
}
.vn-trust-ticker__icon--b {
	background: #c98a3a;
}
.vn-trust-ticker__text {
	font-size: 13.5px;
	color: #1f3722;
}

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

@media (prefers-reduced-motion: reduce) {
	.vn-trust-ticker__track {
		animation: none;
	}
}

@media (min-width: 600px) {
	.vn-trust-ticker { padding: 18px 0; }
	.vn-trust-ticker__text { font-size: 14px; }
}