.partner-testimonials {
  box-sizing: content-box;
  -webkit-font-smoothing: antialiased;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 96px;
  color: rgba(var(--color-text));
  background-color: transparent;
}

.partner-testimonials__title {
  margin: 0 0 16px;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  color: rgba(var(--color-text));
}

.partner-testimonials__lede {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  text-align: center;
  color: rgba(var(--color-light-text));
}

.partner-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  margin-top: 48px;
}

.partner-testimonials__grid > [id^="shopline-block-"] {
  display: contents;
}

/* Cards stretch to equal height and the caption fills the remaining space, so
   the two grey caption boxes bottom-align even when quotes differ in length.
   review #7 */
.partner-testimonials__card {
  display: flex;
  flex-direction: column;
}

.partner-testimonials__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: rgb(245, 243, 239);
}

.partner-testimonials__caption {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgb(245, 243, 239);
  padding: 28px 24px;
  text-align: center;
}

.partner-testimonials__name {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--color-text));
}

.partner-testimonials__quote {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  color: rgb(68, 65, 59);
}

.partner-testimonials__attribution {
  font-size: 12.5px;
  color: rgb(138, 134, 125);
}

@media (max-width: 900px) {
  .partner-testimonials__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .partner-testimonials__grid > [id^="shopline-block-"] {
    display: block;
    flex: 0 0 min(280px, 78vw);
    scroll-snap-align: start;
  }

  .partner-testimonials__card {
    flex: 0 0 min(280px, 78vw);
    scroll-snap-align: start;
  }
}
