/*
 * Spectra 2.20.2 gives the homepage post carousel a mobile width of 100%, but
 * its flex items remain shrinkable. With exactly three posts, the carousel is
 * not initialised and all cards consequently shrink into one row.
 */
@media (max-width: 767px) {
	.uagb-block-eaabd927.uagb-post__items {
		flex-direction: column;
	}

	.uagb-block-eaabd927.uagb-post__items > article.uagb-post__inner-wrap {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}
}
