.nh-reviews__header {
  text-align: center;
  margin: 0 0 3.2rem;
}

.nh-reviews__heading {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--nh-charcoal);
  margin: 1rem 0 0;
  letter-spacing: -0.02em;
}

.nh-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: 2rem;
}

.nh-reviews__card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--nh-white);
  border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius-lg);
  box-shadow: var(--nh-shadow-card);
  padding: 2.4rem;
}

.nh-reviews__stars {
  display: flex;
  gap: 0.2rem;
}

.nh-reviews__star {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--nh-amber);
}

.nh-reviews__star svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.nh-reviews__star--empty {
  color: var(--nh-border-2);
}

.nh-reviews__text {
  margin: 0;
  flex: 1;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--nh-body);
}

.nh-reviews__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nh-reviews__avatar {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.nh-reviews__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nh-sage-tint);
  color: var(--nh-sage);
  font-weight: 800;
  font-size: 1.5rem;
}

.nh-reviews__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--nh-charcoal);
}

@media screen and (max-width: 749px) {
  .nh-reviews__heading {
    font-size: 2.1rem;
  }

  .nh-reviews__grid {
    grid-template-columns: 1fr;
  }

  .nh-reviews__card {
    padding: 2rem;
  }
}
