/* Static company reviews (no JS widget required) */
.reviews-section {
  max-width: var(--page-max, 1120px);
  margin: 0 auto;
  padding: 48px 20px 56px;
}
.reviews-section__head {
  text-align: center;
  margin-bottom: 28px;
}
.reviews-section__head h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.reviews-section__head p {
  color: var(--text-2, #6b7280);
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 18px 18px 16px;
  background: #fff;
}
.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.review-card__author {
  font-weight: 600;
  font-size: 15px;
  color: var(--text, #111);
}
.review-card__stars {
  color: #c4a574;
  letter-spacing: 1px;
  font-size: 14px;
  white-space: nowrap;
}
.review-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text, #222);
  margin: 0 0 12px;
}
.review-card__meta {
  font-size: 12px;
  color: var(--text-2, #6b7280);
}
.reviews-section__footer {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--text-2, #6b7280);
  line-height: 1.5;
}
.reviews-section__footer a {
  color: var(--accent, #0071e3);
}
.reviews-section--compact {
  padding: 8px 0 0;
  max-width: none;
}
.reviews-section--compact .reviews-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 12px;
}
.reviews-section--compact .reviews-section__head {
  text-align: left;
  margin-bottom: 14px;
}
.reviews-section--compact .reviews-section__head h2 {
  font-size: 22px;
}
@media (max-width: 900px) {
  .reviews-grid,
  .reviews-section--compact .reviews-grid {
    grid-template-columns: 1fr;
  }
}
