/* Trust band — brand values reassurance strip (homepage + single experience) */

.trust-band {
	width: 100%;
	background-color: #f8f9fa;
	padding: 5rem 0;
	border-top: 1px solid #e5e7eb;
	box-sizing: border-box;
}

.trust-band .trust-bar {
	background: transparent;
	padding: 0;
	border-bottom: none;
	scroll-margin-top: var(--he-sticky-chrome-top, 116px);
}

.trust-bar__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: 32px;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.trust-bar .promise-icon {
	max-width: 190px !important;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 25px auto !important;
	mix-blend-mode: multiply !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	background: transparent !important;
}

.trust-item strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--color-hilaire-navy-deep, #001524);
	letter-spacing: 0.5px;
	text-align: center;
	line-height: 1.25;
}

.trust-item span {
	display: block;
	margin-top: 8px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	line-height: 1.5;
	color: #555555;
	text-align: center;
}

@media (min-width: 992px) {
	.trust-bar .trust-item:last-child span {
		white-space: nowrap;
	}
}

@media (max-width: 991px) {
	.trust-band {
		padding: 3.5rem 0;
	}

	.trust-bar__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 20px;
	}

	.trust-item {
		max-width: none;
	}
}
