.pt-testimonials-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
}

.pt-testimonial-card {
  background: #10242d;
  border-top: 2px solid var(--gold, #cdb47b);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.pt-testimonial-card__media {
  aspect-ratio: 16 / 9;
  background: #0d1f28;
  overflow: hidden;
  width: 100%;
}

.pt-testimonial-card__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pt-testimonial-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1rem, 1.8vw, 1.35rem);
}

.pt-testimonial-card__mark {
  color: var(--gold, #cdb47b);
  font-family: Georgia, serif;
  font-size: 3rem;
  height: 2.2rem;
  line-height: 1;
}

.pt-testimonial-card blockquote {
  color: #fff;
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  letter-spacing: -.025em;
  line-height: 1.38;
  margin: 1.3rem 0 0;
}

.pt-testimonial-card cite {
  color: var(--gold-soft, #d8be80);
  font-size: .8rem;
  font-style: normal;
  line-height: 1.45;
  margin-top: auto;
  padding-top: .9rem;
}

.pt-testimonial-card cite strong { display: block; font-weight: 700; }
.pt-testimonial-card cite span { color: #9fb1b7; display: block; margin-top: .22rem; }

@media (max-width: 980px) {
  .pt-testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .pt-testimonials-grid { grid-template-columns: 1fr; }
}
