.testimonials {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-radius: 5px;
}

.testimonial__content__quotation-marks {
  margin-bottom: 20px;
}

.testimonial__content__quotation-marks img {
  width: 100%;
  max-width: 60px;
}

.testimonial__author p {
  font-weight: bold;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 0;
}

{# ========== Modifier Classes ========= #}

.testimonial--variation-2 {
  justify-content: space-between;
  padding: 0;
  border-radius: 10px;
}

.testimonial--variation-2 .testimonial__content {
  padding: 20px;
}

.testimonial--grey-blue-bg {
  background-color: #EFF3F8;
}

.testimonial--white-bg {
  background-color: white;
}

.testimonial__author--green-strip {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #E7F4D8;
  padding: 10px 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.testimonial__author--green-strip > img {
  width: 100%;
  max-width: 64px;
  padding-right: 10px;
}

.testimonial__author--green-strip i {
  font-size: 15px;
  color: #FCC153;
}

.testimonial__author--green-strip__name-and-rating {
  padding-left: 10px;
  border-left: 2px solid #4D6070;
}

.testimonial__author--green-strip__name-and-rating p {
  font-style: normal;
  color: #2F2F2F;
  margin-bottom: 8px;
}

{# ========== END Modifier Classes ========= #}