body {
  font-family: "Poppins", sans-serif;
}

.carousel-item {
  min-height: 180px;
}

.badge {
  cursor: pointer;
}


/* HERO CAROUSEL */
.hero-slide {
  position: relative;
  width: 100%;
  height: 220px; /* mobile height */
}

@media (min-width: 768px) {
  .hero-slide {
    height: 300px;
  }
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.5rem;
  color: #111;
  background: linear-gradient(
    90deg,
    rgba(255,193,7,0.95) 0%,
    rgba(255,193,7,0.85) 45%,
    rgba(255,193,7,0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay h4 {
  font-weight: 600;
  margin-bottom: .25rem;
}

.hero-overlay p {
  font-size: .9rem;
  opacity: .9;
}

