.trip-list {
  padding: 80px 10%;
  background: radial-gradient(circle at top, #42a2d4, #001f2f);
}

.trip-list h2 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #00bcd4;
  text-shadow: 0 0 10px #00bcd4;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.trip-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  height: 420px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.trip-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(4px);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.trip-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0;
}

.trip-price-block {
  line-height: 1.2;
}

.trip-from {
  font-size: 0.9em;
  color: #ccc;
  margin: 0;
}

.trip-price {
  font-size: 1.6em;
  font-weight: bold;
  margin: 0;
  color: #FFD700;
}

.trip-person {
  font-size: 0.8em;
  color: #aaa;
  margin: 0;
}

.trip-duration {
  font-size: 0.9em;
  color: #ddd;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .trip-list {
    padding: 60px 20px;
  }

  .trip-list h2 {
    font-size: 2.2em;
  }

  .trip-card {
    height: 380px;
  }

  .trip-overlay {
    height: 55%;
    padding: 15px;
  }

  .trip-title {
    font-size: 1.2em;
  }

  .trip-price {
    font-size: 1.4em;
  }
}