.nk-reviews {
  background: #fff7f7;
}
.nk-reviews__head {
  max-width: 720px;
  text-align: center;
  margin: auto;
}
.nk-reviews__head .nk-eyebrow {
  justify-content: center;
}
.nk-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.nk-review-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid #f0dfe0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(90, 20, 22, 0.05);
}
.nk-review-card__stars {
  color: #d71920;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.nk-review-card blockquote {
  margin: 24px 0;
  color: #26332f;
  font-size: 17px;
  font-style: normal;
  line-height: 1.75;
}
.nk-review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.nk-review-card__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fee5e6;
  color: #c9151c;
  font-size: 16px;
  font-weight: 800;
}
.nk-review-card strong,
.nk-review-card small {
  display: block;
}
.nk-review-card strong {
  font-size: 15px;
}
.nk-review-card small {
  margin-top: 2px;
  color: #718078;
  font-size: 13px;
}
@media (max-width: 850px) {
  .nk-reviews__grid {
    grid-template-columns: 1fr;
  }
  .nk-review-card {
    min-height: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nk-review-card {
    transition: none !important;
  }
}
