.testimonials--cards {
  margin: 15px -15px;
  display: flex;
}

.testimonials--cards .testimonial {
  background: #fff;
  border-radius: 4px;
  color: #1e1e1e;
  padding: 32px 32px 32px 90px;
  position: relative;
  border-left: 0;
  flex-basis: calc( 50% - 30px );
  margin: 15px;
}

.testimonials--cards.count-3 .testimonial {
  flex-basis: calc( 33.33% - 30px );
}

.testimonials--cards .testimonial::before {
  content: '';
  width: 25px;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='35' viewBox='0 0 26 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 27.2344V21.4141C0 19.7214 0.325521 17.9766 0.976562 16.1797C1.6276 14.3828 2.48698 12.6901 3.55469 11.1016C4.6224 9.48698 5.79427 8.11979 7.07031 7L12.3047 10.0469C11.3672 11.6094 10.5599 13.2891 9.88281 15.0859C9.20573 16.8828 8.86719 18.9922 8.86719 21.4141V27.2344H0ZM13.2812 27.2344V21.4141C13.2812 19.7214 13.6068 17.9766 14.2578 16.1797C14.9089 14.3828 15.7682 12.6901 16.8359 11.1016C17.9036 9.48698 19.0755 8.11979 20.3516 7L25.5859 10.0469C24.6484 11.6094 23.8411 13.2891 23.1641 15.0859C22.487 16.8828 22.1484 18.9922 22.1484 21.4141V27.2344H13.2812Z' fill='%230077C8'/%3E%3C/svg%3E%0A");
  position: absolute;
  left: 32px;
  top: 32px;
}

.testimonials--cards .testimonial__quote {
  margin-bottom: 24px;
  font-size: 2.4rem;
}

.testimonials--cards .testimonial__citation {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials--cards .testimonial__logo {
  max-width: 175px;
  display: flex;
  align-items: center;
}

.testimonials--cards .testimonial__logo img {
  max-width: 100%;
  height: auto;
}

.testimonials--cards cite {
  font-style: normal; 
  font-size: 1.8rem;
  display: block;
}

.testimonials--cards .testimonial__individ {
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .testimonials--cards {
    justify-content: center;
    flex-wrap: wrap;
  }
  .testimonials--cards .testimonial {
    flex-basis: 100%;
    max-width: 640px;
    padding: 32px;
  }
  .testimonials--cards .testimonial::before {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    margin-bottom: 16px;
}