/* HEADER SLIDER */
#c_Preset {
  max-width: 100vw;
  overflow: hidden;
}

#c_scrollWrap::-webkit-scrollbar {
  display: none;
}

/* Container scroll behavior */
#c_scrollWrap_4 {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0; /* Avoid unexpected small gaps */
}

/* Hide scrollbar visually but allow scroll/swipe */
#c_scrollWrap_4::-webkit-scrollbar {
  display: none;
}
#c_scrollWrap_4 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.c_card_4 {
  flex: 0 0 25%;
  position: relative;
  scroll-snap-align: start;
}

.c_card_6 {
  width: 16%;
  position: relative;
  scroll-snap-align: start;
}

.c_imgWrap_600 {
  height: 600px;
}

.c_imgWrap_500 {
  height: 500px;
}

.c_imgWrap_400 {
  height: 400px;
}

.c_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c_imgWrap_600:hover .c_img {
  transform: scale(1.1);
}

.c_imgWrap_500:hover .c_img {
  transform: scale(1.1);
}

.c_imgWrap_400:hover .c_img {
  transform: scale(1.1);
}

/* bar indicators */
#c_header_progress_slider {
  width: 30%;
  margin: 0 auto;
}

.c_header_progress_slider {
  width: 30%; /* adjust: try 10%, 15%, 25% */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* spacing between bars */
}

.c_header_progress_slider_bar {
  flex: 1;
  height: 6px;
  border-radius: 2rem;
  background-color: white;
  opacity: 0.4;
  transition: all 0.4s ease;
  cursor: pointer;
}

.c_header_progress_slider_bar.active {
  background: linear-gradient(
    to right bottom,
    var(--red1),
    var(--red4)
  );
  opacity: 1;
}
/* HEADER SLIDER ENDS */


/* Tablet (2 per view) */
@media (max-width: 992px) {
  .c_card_4 {
    flex: 0 0 50%;
  }
}

/* Mobile (1 per view, full width swipe) */
@media (max-width: 768px) {
  .c_card_4 {
    flex: 0 0 100%;
  }
}

/* Put All Events Grid full width Mobile */
@media (max-width: 768px) {
  .c_event_card {
    width: 100% !important;
  }
}