.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.tour-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
}

.tour-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tour-content {
  padding: 20px;
}

.tour-price {
  font-weight: 600;
  margin: 10px 0;
}
