.tas-popular-attractions {
  /* padding: clamp(48px, 6vw, 72px) 0; */
  background: linear-gradient(135deg, var(--surface-muted, #f8f9fa) 0%, var(--white) 100%);
}

.tas-popular-attractions__card {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.tas-popular-attractions__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.12);
}

.tas-popular-attractions__image {
  height: 200px;
  overflow: hidden;
}

.tas-popular-attractions__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tas-popular-attractions__title {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.tas-popular-attractions__desc {
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tas-popular-attractions__price {
  color: var(--primary);
  font-weight: 700;
}

.tas-popular-attractions__price-label {
  color: var(--text-muted);
}

.tas-popular-attractions__view-all {
  margin-top: 2.5rem;
}
