.book-reviews {
  background: #fdfdfd;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: 2rem auto;
}

.book-reviews h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.review {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.review:last-child {
  border-bottom: none;
}

.review header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0.3rem;
    background: none;
}

.reviewer {
  font-weight: bold;
  color: #333;
}

.stars {
  font-size: 1.2rem;
  color: #f5b301; /* colore oro */
  letter-spacing: 0.1rem;
}

.review-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #444;
}