/* OmniLaunch mobile bottom-column patch v19
   Goal: stack everything below .bottom-content-grid into a single column on mobile.
   Safe override file to load AFTER your current main CSS files.
*/

@media (max-width: 767.98px) {
  .bottom-content-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    align-items: start !important;
  }

  .bottom-main,
  .bottom-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    min-width: 0 !important;
  }

  .bottom-main .grid-3,
  .bottom-main .info-card-grid,
  .support-card-stack,
  .bottom-side .support-card-stack {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 0 !important;
  }

  .bottom-content-grid article,
  .bottom-content-grid .cardy,
  .bottom-content-grid .info-card,
  .bottom-content-grid .support-card,
  .bottom-content-grid .launch-panel,
  .bottom-content-grid .launch-helper-card,
  .footer .search-panel,
  .tidy-footer,
  .footer-search-wrap,
  .footer-actions {
    min-width: 0 !important;
    width: 100% !important;
  }

  .bottom-content-grid .cardy,
  .bottom-content-grid .info-card,
  .bottom-content-grid .support-card,
  .bottom-content-grid .launch-panel,
  .bottom-content-grid .launch-helper-card,
  .footer .search-panel,
  .copy-card {
    overflow: hidden !important;
  }

  .tidy-footer {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    align-items: start !important;
  }

  .footer-search-wrap {
    display: grid !important;
    gap: 12px !important;
  }

  .footer-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }
}

@media (max-width: 480px) {
  .bottom-content-grid,
  .bottom-main,
  .bottom-side,
  .bottom-main .grid-3,
  .bottom-main .info-card-grid,
  .support-card-stack,
  .tidy-footer {
    gap: 12px !important;
  }

  .bottom-content-grid .cardy,
  .bottom-content-grid .info-card,
  .bottom-content-grid .support-card,
  .bottom-content-grid .launch-panel,
  .bottom-content-grid .launch-helper-card,
  .footer .search-panel,
  .copy-card {
    border-radius: 16px !important;
  }
}

