.feedback {
  padding-block: 5.5rem;
  background-color: rgb(248, 248, 248);
}

.feedback__heading {
  font-size: 1.875rem;
  line-height: calc(2.25 / 1.875);
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(85, 85, 85);
  text-align: center;
  padding-inline: 1rem;
  margin-block-end: 2.5rem;
}

.feedback__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .feedback__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feedback__card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feedback__stars {
  color: #ffd23f;
  display: flex;
  gap: 0.375rem;
}

.feedback__text {
  color: rgb(85, 85, 85);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.feedback__text::before {
  content: "\201C";
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-inline-end: 0.1em;
  font-style: normal;
  opacity: 0.4;
}

.feedback__text::after {
  content: "\201D";
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-inline-start: 0.1em;
  font-style: normal;
  opacity: 0.4;
}

.feedback__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgb(85, 85, 85);
}

.feedback__platform-link {
  color: rgb(119, 119, 119);
  font-size: 0.8125rem;
}

.feedback__platform-link::before {
  content: "·";
  margin-inline-end: 0.5rem;
}

.feedback__platform-link:hover {
  color: rgb(85, 85, 85);
}
