.review-grid {
  box-sizing: content-box;
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 24px 40px;
  color: rgba(var(--color-text));
  background-color: transparent;
}

.review-grid__head {
  text-align: center;
  margin-bottom: 44px;
}

.review-grid__heading {
  margin: 0 0 8px;
  font-size: 44px;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}

.review-grid__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.review-grid__rating-stars {
  font-size: 19px;
  letter-spacing: 2px;
  color: rgb(0, 182, 122);
}

.review-grid__rating-text {
  font-size: 13.5px;
  font-weight: 600;
  color: rgb(85, 82, 75);
}

.review-grid__rating-text strong {
  font-weight: 700;
  color: rgb(0, 182, 122);
}

.review-grid__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.review-grid__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  border: 1px solid rgb(232, 229, 224);
}

.review-grid__stars {
  font-size: 15px;
  letter-spacing: 2px;
  color: rgb(0, 182, 122);
}

.review-grid__card-title {
  margin: 0;
  line-height: normal;
  /* Card titles use the body font (Archivo 700), not the display font. The base
     h1-h6 rule is unlayered and otherwise forces --sort-title-font (Archivo Black),
     which is wider and wraps long titles to a second line (source keeps them on one). */
  font-family: var(--sort-body-font, Archivo, sans-serif) !important;
  font-size: 14px;
  font-weight: 700;
  color: inherit;
}

.review-grid__card-body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgb(68, 65, 59);
}

.review-grid__card-author {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgb(138, 134, 125);
}

p.review-grid__note {
  margin: 20px 0 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: rgb(160, 155, 145);
}

@media (max-width: 959px) {
  .review-grid__heading {
    font-size: 28px;
  }
  .review-grid__cards {
    grid-template-columns: 1fr;
  }
}
