.testimonial {
  position: relative;
  overflow: hidden;
  background: var(--lime);
  padding: clamp(70px, 10vw, 130px) clamp(22px, 12vw, 180px);
  text-align: center;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -.35em;
  left: .02em;
  color: #12121212;
  font-family: "Syne", sans-serif;
  font-size: clamp(16rem, 36vw, 34rem);
  font-weight: 800;
  line-height: 1;
}

.testimonial > * { position: relative; }
.testimonial .eyebrow { margin-bottom: 30px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}

.testimonial-grid article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 28px;
  border-top: 3px solid var(--ink);
}

.testimonial-grid .testimonial-featured {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.testimonial blockquote {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3.7vw, 4.1rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.045em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.testimonial .testimonial-featured blockquote {
  max-width: 1080px;
  margin-left: 0;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 720px;
  margin: 38px auto 0;
  line-height: 1.5;
}

.testimonial-author strong {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
}

.testimonial-author span { font-size: .9rem; }

@media (max-width: 760px) {
  .testimonial { padding-inline: 22px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-featured { grid-column: auto; }
  .testimonial blockquote {
    font-size: clamp(1.65rem, 7.4vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -.03em;
  }
  .testimonial .testimonial-featured blockquote {
    font-size: clamp(1.4rem, 6.2vw, 2rem);
    line-height: 1.12;
  }
  .testimonial-author { margin-top: 30px; }
}
