/* =========================================================
SNIPPET: 75 - Reset Utilities

WOFÜR
- Gezielte Deaktivierung von Presets / Utilities
- Keine Tokens – bewusste harte Resets

KLASSEN
- no-sh      → entfernt box-shadow
- no-bg      → entfernt Hintergrund
- no-border  → entfernt Border
- no-ro      → entfernt Radius (Alias: no-radius)

HINWEIS
- no-ro ersetzt systematisch no-radius,
  Legacy bleibt zur Sicherheit erhalten.
========================================================= */


/* Shadow */
.no-sh{
  box-shadow: none !important;
}

/* Background */
.no-bg{
  background: transparent !important;
}

/* Border */
.no-border{
  border: 0 !important;
}

/* Radius */
.no-ro,
.no-radius{
  border-radius: 0 !important;
}