@media (max-width: 980px) {
  .side {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    height: 100vh;
    border-bottom: 0;
    z-index: 24;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
  }

  .side.open {
    transform: translateX(0);
  }

  .layout {
    display: block;
  }

  .mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 29, 56, 0.45);
    z-index: 23;
  }

  .mobile-nav-backdrop.show {
    display: block;
  }

  .main {
    width: 100%;
    margin-left: 0;
    padding: 18px 14px 90px;
  }

  .top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .top-head {
    align-items: flex-start;
  }

  .top-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .top-actions-primary {
    flex: 1;
    min-width: 220px;
    flex-wrap: wrap;
  }

  .top-actions-secondary {
    justify-content: flex-end;
  }

  .top-actions-divider {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .grid-2,
  .admin-grid,
  .coach-board,
  .member-grid,
  .incident-grid {
    grid-template-columns: 1fr;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-public-header,
  .home-public-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-process ol {
    grid-template-columns: 1fr;
  }

  .home-footer {
    display: grid;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .table thead {
    display: none;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }

  .table tr {
    border: 1px solid var(--line);
    border-radius: 11px;
    margin-bottom: 9px;
    padding: 6px;
  }

  .table td {
    border: 0;
    display: flex;
    justify-content: space-between;
  }

  .table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
  }

  .stack-row {
    grid-template-columns: 1fr;
  }

  .member-view-grid {
    grid-template-columns: 1fr;
  }

  .drawer {
    width: 100%;
    right: -100%;
  }
}
