/* ===============================
   GZ GOOGLE REVIEWS – ESTILO FINAL ESCUELA
================================ */

.gzgr {
  background: #e3dec8;
  border-radius: 18px;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* HEADER */
.gzgr-head {
  margin-bottom: 35px;
}

.gzgr-head-row {
  margin-top: -10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITULO */
.gzgr-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: left;
}

/* RATING IZQUIERDA */
.gzgr-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gzgr-rating-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gzgr-stars {
  font-size: 18px;
  display: flex;
  gap: 3px;
}

.gzgr-star--full,
.gzgr-star--half {
  color: #b59a63;
}

.gzgr-star--empty {
  color: #d6ccb5;
}

.gzgr-rating {
  font-size: 18px;
  font-weight: 600;
  color: #5a4d37;
}

.gzgr-count {
  color: #7a6f59;
  font-size: 14px;
}

/* LOGO GOOGLE DERECHA */
.gzgr-google-logo {
  opacity: 0.9;
  height: 22px;
}

/* GRID REVIEWS */
.gzgr-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* TARJETAS */
.gzgr-card {
  background: #ececec;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #ddd;
}

.gzgr-author {
  font-weight: 600;
  color: #5a4d37;
  margin-bottom: 6px;
}

.gzgr-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 12px;
}

.gzgr-date {
  color: #777;
}

.gzgr-text {
  font-size: 14px;
  line-height: 1.6;
  color: #3f3f3f;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gzgr-reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .gzgr-reviews {
    grid-template-columns: 1fr;
  }

  .gzgr {
    padding: 60px 50px;
  }
}