.featured-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid rgba(23, 32, 25, 0.15);
  background: rgba(23, 32, 25, 0.15);
}

.featured-review {
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #faf8f3;
}

.featured-review footer a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 3px;
}

.featured-review p {
  margin: 0;
  font: 400 24px/1.35 "Newsreader", serif;
}

.featured-review footer {
  margin-top: 25px;
  color: #626b64;
  font-size: 11px;
}

@media (max-width: 900px) {
  .featured-reviews {
    grid-template-columns: 1fr;
  }
}
