.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 170px;
  padding: 22px 18px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  text-align: center;
}

.stars {
  color: var(--silver);
  font-size: 1.2rem;
}

.review-card p {
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.42;
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--silver);
  font-weight: 700;
}

.review-author span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--stroke-strong);
  border-radius: 50%;
  color: #0b0d0e;
  background: linear-gradient(135deg, #f7f8f8, #8f979e);
  font-size: 0.7rem;
  font-weight: 900;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.review-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.review-dots .active {
  background: var(--silver);
}

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