.trust-bar {
	background: var(--primary);
	color: var(--white);
	padding: 18px 0;
}

.trust-bar-items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-weight: 600;
}

.trust-bar-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 24px;
	position: relative;
}

.trust-bar-item:first-child {
	padding-left: 0;
}

.trust-bar-item:last-child {
	padding-right: 0;
}

/* Thin vertical divider between items, skipped on the last one. */
.trust-bar-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 26px;
	background: color-mix(in srgb, var(--white) 20%, transparent);
}

.trust-bar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--secondary);
}

.trust-bar-icon svg {
	width: 24px;
	height: 24px;
}

@media (max-width: 767px) {

	.trust-bar-items {
		justify-content: center;
	}

	.trust-bar-item {
		padding: 6px 16px;
	}

	.trust-bar-item:not(:last-child)::after {
		display: none;
	}

}
