/* Reviews section */
.reviews-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* space between reviews */
  margin: 40px 0;
}

.review {
  width: 100%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
}

/* Top "from" box */
.review-from {
  background: #e64300; /* slightly darker than --page-bg */
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 8px 12px;
  border: 1px solid darkorange;
  margin-bottom: 5px;
}

/* Review text box */
.review-text {
  background: #e64300; /* same as from box */
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  padding: 12px;
  border: 1px solid darkorange;
}

.review-text p {
  margin: 0 0 12px;
}
.review-text p:last-child {
  margin-bottom: 0;
}

/* Quote icon inline with text */
.review-text img.quote {
  width: 18px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

@media (max-width: 1050px) {
  .review {
    max-width: 90%;
  }
}