/* ==========================================================================
   DAAMRI Deals — Client Reviews
   ========================================================================== */

.reviews-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.reviews-badge .g-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.reviews-badge .stars {
  color: #E3A008;
  font-size: 15px;
  letter-spacing: 2px;
}

.reviews-badge .stars-label {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card .stars {
  color: #E3A008;
  font-size: 13px;
  letter-spacing: 2px;
}

.review-quote {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.review-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest-tint);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13px;
  flex: none;
}

.review-name {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
}

.review-meta {
  font-family: var(--ui);
  font-size: 11.5px;
  color: var(--muted);
}

.reviews-more {
  margin-top: var(--sp-8);
}

/* Responsive */
@media (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
