/* google-reviews.css */

#google-reviews {
  padding: 60px 20px;
  text-align: center;
}

.reviews-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.reviews-rating {
  color: #f5b50a;
  font-weight: 600;
}

.reviews-count {
  color: #999;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.review-stars {
  color: #f5b50a;
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-text {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.review-author span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.reviews-google-link {
  display: inline-block;
  margin-top: 24px;
  color: #f5b50a;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 181, 10, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s, opacity 0.3s;
}

.reviews-google-link:hover {
  border-color: #f5b50a;
  opacity: 0.85;
}

.reviews-error {
  color: #888;
}
