/**
 * Footer trust-badges row — full-width strip between the 4-column grid and
 * the copyright bar, matching contact_us_4.html's .footer-trust pattern.
 * Deliberately distinct class names from the older .log-footer-badges /
 * .log-ft-badge (see issues-docx.css "Bug 9: Hide footer badges" — that
 * !important suppression was a deliberate prior fix and stays untouched;
 * this is a new component, not a re-enable of the old one).
 */

.log-footer-trust {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .06);
	max-width: 1220px;
	margin: 0 auto;
}

.log-ft-trust-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	color: #a9c4ba;
}

.log-ft-trust-badge .icon {
	width: 13px;
	height: 13px;
	color: var(--sage-400);
	flex-shrink: 0;
}

@media (max-width: 600px) {
	.log-footer-trust {
		gap: 10px 14px;
		padding: 16px 20px;
	}

	.log-ft-trust-badge {
		font-size: 10.5px;
	}
}
