/* ============================================================
 * BIOTA · SECTION · Trust strip  (pattern: biota/mobile-trust)
 * Four reassurance cells. All in one row on desktop; falls back to a
 * 2x2 grid once four no longer fit.
 * Builds on: .biota-section --tight, .biota-metric.
 * ============================================================ */

/* Default (narrow): 2x2. */
.biota-trust__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 28px;
	max-width: 560px;
	margin-inline: auto;
}

/* Wide enough for all four: one row of four equal-width columns, capped to the
   same content width as the other sections (the hero is intentionally wider).
   Each badge is centred within its column, so the row reads as an even group
   rather than the outer two being flush to the section edges. */
@media (min-width: 900px) {
	.biota-trust__grid {
		grid-template-columns: repeat(4, 1fr);
		justify-items: center;
		gap: 24px;
		max-width: 1280px;
	}
}
