.static-reviews {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  font-family: inherit;
}
.static-reviews-heading {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
}
.static-reviews-desc {
  margin: 0 0 20px;
  opacity: 0.85;
}
.static-reviews-agg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.static-reviews-avg {
  font-size: 32px;
  font-weight: 700;
}
.static-review-stars {
  color: #ffbc00;
  letter-spacing: 2px;
  font-size: 18px;
}
.static-reviews-count {
  opacity: 0.75;
}
.static-reviews-write {
  display: inline-block;
  margin-bottom: 28px;
  padding: 10px 24px;
  border-radius: 6px;
  background: #20603c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.static-reviews-write:hover {
  opacity: 0.9;
}
.static-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  text-align: left;
}
.static-review-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  color: #1a1b1e;
}
.static-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.static-review-date {
  font-size: 13px;
  opacity: 0.6;
}
.static-review-comment {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
}
.static-review-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}
.static-review-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #99a2b4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.static-review-name {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}
.static-review-source {
  opacity: 0.8;
}
