/*
 * Puts the featured pricing card first in DOM/visual order on narrow
 * viewports (single-column grid). No block support exposes a responsive
 * "order" property, and theme.json's per-block "css" property cannot express
 * @media (its parser splits the string on "&" and cannot handle nested
 * braces — see CLAUDE.md's THEME.JSON CSS CANNOT EXPRESS @MEDIA section).
 */
@media (max-width: 480px) {
	.storemapify-pricing-featured {
		order: -1;
	}
}
