/* ============================================================================
   RESPONSIVE / MEDIA QUERIES
   Layout responsiveness is handled by Tailwind's md:/lg: utilities in markup;
   this file holds genuine @media rules that can't be expressed inline.
   Loaded last so it can override.
   ========================================================================== */

/* Respect reduced-motion: disable animations/transitions and smooth scroll. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Toasts span the full width on very small screens. */
@media (max-width: 480px) {
  .toast-host { left: 16px; right: 16px; max-width: none; }
}
