/* ==========================================================================
   IndoSpiceHub — Layout utilities
   ========================================================================== */

.flow > * + * { margin-top: var(--space-3); }

.text-center { text-align: center; }

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: initial; } }

.show-mobile { display: initial; }
@media (min-width: 768px) { .show-mobile { display: none; } }

img[loading="lazy"] { background: var(--color-forest-100); }
