/* responsive.css — Responsive breakpoints and reduced motion */

/* ── Tablet / small desktop ────────────────────────────── */

@media (max-width: 1024px) {
  .main-content {
    padding: var(--space-lg);
  }
}

/* ── Mobile ────────────────────────────────────────────── */

@media (max-width: 768px) {
  .main-content {
    margin-left: 0;
    padding: var(--space-md);
    max-width: 100%;
  }

  .splitter-table {
    font-size: 0.8rem;
  }

  .splitter-table th,
  .splitter-table td {
    padding: 6px 8px;
  }
}

/* ── Small mobile ──────────────────────────────────────── */

@media (max-width: 480px) {
  .main-content {
    padding: var(--space-sm);
  }
}

/* ── Reduced motion ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
