/* Venue Reviews Widget Styles */
.venue-reviews {
  margin: 3rem 0;
  padding: 2rem 0;
}

.venue-reviews h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
}

.venue-reviews .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.review-card .stars {
  color: #f39c12;
  font-size: 1.2em;
  margin-bottom: 1rem;
}

.review-card .excerpt {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #555;
}

.review-card .by {
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  font-style: italic;
}

/* Review Detail Page Styles */
.review {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.review h1 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.review .stars {
  color: #f39c12;
  font-size: 1.2em;
  margin-bottom: 1rem;
}

.review .badges {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review .badges li {
  background: #3498db;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9em;
}

.review .text {
  font-size: 1.1em;
  line-height: 1.7;
  margin: 1.5rem 0;
}

.review .back {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.review .back a {
  color: #3498db;
  text-decoration: none;
}

.review .back a:hover {
  text-decoration: underline;
}
