/* Keep the promotional grid balanced: two complete rows on desktop. */
@media (min-width: 769px) {
  #ts-new .ts-home-promo-card:nth-child(n + 7) {
    display: none !important;
  }
}

/* One-at-a-time swipe with a visible hint of the next card on mobile. */
@media (max-width: 768px) {
  #ts-new .ts-home-promos-track {
    display: flex !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  #ts-new .ts-home-promos-track::-webkit-scrollbar {
    display: none;
  }

  #ts-new .ts-home-promo-card {
    flex: 0 0 min(80vw, 300px) !important;
    max-width: 300px !important;
    scroll-snap-align: start;
  }
}
