.wunderly-statement {
  position: relative;
  background: url('https://images.pexels.com/photos/12279961/pexels-photo-12279961.jpeg') center/cover no-repeat;
  color: var(--color-white);
  margin: 3rem 0;
}

.wunderly-overlay {
  background: rgba(0, 0, 0, 0.35);
  padding: 10rem 0;
}

.ws-title {
  font-size: 3rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.ws-subtitle {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
  opacity: 0.9;
}

.ws-cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ws-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.95rem;
}


.top-destinations {
  padding: 3rem 0;
}

/* Header */

.td-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.td-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.td-filters span {
  opacity: 1;
  transition: 0.3s;
  margin-left: 0.75rem;
}

/* Carrusel horizontal */

.td-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-top: 3rem;
  padding-bottom: 1rem;
}

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

.td-card {
  min-width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.td-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 1rem;
}

.td-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--color-dark);
}

.td-card p {
  font-size: 0.85rem;
  color: var(--color-dark);
  margin: 0;
}

@media (max-width: 980px) {

  .ws-title {
    font-size: 2.2rem;
  }

  .ws-subtitle {
    font-size: 1rem;
  }

}