/* Basic styles */
.prinker-slider {
  display: flex;
  overflow-x: auto;  /* Allow horizontal scrolling */
  scroll-snap-type: x mandatory;  /* Ensure each slide snaps to position */
}

.prinker-slider-item {
  flex-shrink: 0;  /* Prevent items from shrinking */
  width: 100%;  /* Each item takes full width of the container */
  scroll-snap-align: start;  /* Snap the item to the start */
}

/* For mobile screens */
@media (max-width: 768px) {
  .prinker-slider {
    flex-wrap: nowrap;  /* Prevent wrapping */
    -webkit-overflow-scrolling: touch;  /* Enable smooth scrolling on iOS */
  }

  .prinker-slider-item {
    width: 100%;  /* Each item will occupy 100% width on mobile */
  }
}
