/* =========================
   INDUSTRIES — MOBILE FIX
========================= */

/* Desktop: horizontal scroll layout */
@media (min-width: 992px) {
  .industries-section {
    overflow: hidden;
  }
  .industry-scroll {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
  }
  .industry-card {
    flex-shrink: 0;
  }
}

/* Mobile: normal vertical stack */
@media (max-width: 991px) {
  .industries-section {
    overflow: visible !important;
    height: auto !important;
  }
  .industry-scroll {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    transform: none !important;
    overflow-x: unset !important;
    gap: 16px;
    padding: 16px;
  }
  .industry-card {
    width: calc(50% - 8px);
    flex-shrink: unset;
  }
}

@media (max-width: 576px) {
  .industry-card {
    width: 100%;
  }
}