/* =====================================================
   Banner sections + Carousel
   ===================================================== */
.today-section,
.upcoming-section,
.stories-section,
.travel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-yellow);
  letter-spacing: 0.2px;
  margin-bottom: 4px;
  text-align: center;
}

.heading-muted {
  color: var(--color-yellow);
}

/* Banner button — 12px margin from screen walls */
.banner-btn {
  display: block;
  width: calc(100% - 24px);
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.15s ease;
  background: transparent;
}

.banner-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-btn:hover { transform: translateY(-1px); }
.banner-btn:active { transform: scale(0.99); }

/* --- Carousel --- */
.carousel-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  background: transparent;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  justify-content: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-white);
  opacity: 0.4;
  transition: opacity 0.2s ease, width 0.2s ease;
  padding: 0;
}

.dot.is-active {
  opacity: 1;
  width: 18px;
  border-radius: 3px;
}
