/* =============================================================================
   Pandharpur Wari Portal — Utilities
   ============================================================================= */

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section { padding-block: var(--space-lg); }
.section-tight { padding-block: var(--space-md); }
.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-soft { color: var(--color-text-soft); }
.flow > * + * { margin-top: var(--space-sm); }
.stack { display: flex; flex-direction: column; gap: var(--space-sm); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--space-2xs); align-items: center; }

.auto-grid { display: grid; gap: var(--space-md); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card-simple { padding: var(--space-md); border-radius: var(--radius); background: var(--color-surface-2); }

.divider { border: none; border-top: 1px solid var(--color-border); margin-block: var(--space-lg); }
