body {
}

.container {
}

h2 {
}

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

.review-card {
  max-height: 240px;
  overflow: hidden;
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.reviewer-name {
  font-weight: bold;
}

.stars {
  color: #f4b400;
  margin: 5px 0;
}

.review-text {
  font-size: 14px;
  color: #333;
  max-height: 120px;
  overflow-y: auto;
  font-size: 14px;
  color: #333;
}

.powered {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.loading {
  text-align: center;
  font-size: 16px;
  padding: 20px;
}
