/* Home stats (wp_block 52 area, .cmp-home-stats). Figma mobile 33490:8559 keeps
 * every keyfigure as number + label side by side, the long third label wrapping
 * to two lines beside its number. Live: core's is-layout-flex sets
 * flex-wrap:wrap on .cmp-stat, so the 465+ label dropped underneath and the
 * row left-aligned while 11 / 300+ stayed inline (mobile review 2026-09-11, M2). */
@media (max-width: 781px) {
	.cmp-home-stats .cmp-stat {
		flex-wrap: nowrap;
		align-items: center;
	}

	.cmp-home-stats .cmp-stat > .cmp-stat-num {
		flex: 0 0 auto;
	}

	.cmp-home-stats .cmp-stat > p:not(.cmp-stat-num) {
		flex: 1 1 0;
		min-width: 0;
	}
}
