/* Shared customer reviews section */
.reviews-section {
  background: #f7fbff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(25, 118, 210, 0.1);
  margin: 2em auto;
  padding: 1.4em 1em;
  max-width: 1100px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1em;
  margin-top: 0.8em;
}

.review-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-left: 4px solid #ffb300;
  border-radius: 12px;
  padding: 1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-width: 0;
}

.review-stars {
  color: #ffb300;
  margin-bottom: 0.45em;
  letter-spacing: 1px;
}

.review-text {
  font-style: italic;
  color: #374151;
  margin: 0 0 0.75em;
  line-height: 1.55;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6em;
  flex-wrap: wrap;
  font-weight: 700;
  color: #0f4f8a;
  font-size: 0.92rem;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  color: #2e7d32;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .reviews-section {
    padding: 1em 0.7em;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}