/* Mobile horizontal scroll carousel for card grids */
@media (max-width: 768px) {
  .mobile-carousel {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding: 0 24px !important;
    scrollbar-width: none;
    grid-template-columns: unset !important;
  }
  .mobile-carousel::-webkit-scrollbar {
    display: none;
  }
  .mobile-carousel > * {
    flex: 0 0 85vw !important;
    scroll-snap-align: start;
    max-width: 85vw !important;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
  }
  .carousel-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .carousel-dot.active {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.8);
  }
}
@media (min-width: 769px) {
  .carousel-dots {
    display: none !important;
  }
}
