.trip-feedback-section {
  padding: 40px 0px;
}

.feedback-title,
.date-and-price-title {
  text-align: left;
  font-size: 1.75rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ff8200;
}
.date-and-price-title {
  text-align: center;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
  gap: 20px;
  justify-content: flex-start;
}

.feedback-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.feedback-card:hover {
  transform: translateY(-3px);
}

.feedback-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.feedback-avatar {
  background-color: #3b82f6;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 0.95rem;
}

.feedback-author {
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

.feedback-comment {
  font-style: italic;
  color: #374151;
  line-height: 1.4;
  font-size: 0.9rem;
}

.no-feedback {
  text-align: left;
  font-style: italic;
  color: #6b7280;
}

@media (max-width: 600px) {
  .feedback-title {
    font-size: 1.5rem;
  }

  .feedback-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .feedback-comment {
    font-size: 0.85rem;
  }
}
