/**
 * testimonials SDC — structural only (section spacing, max-width container,
 * mobile single-column override). Never restyles the pasted cards/quote —
 * their inline styles carry the actual appearance.
 */
.mk3-sdc--testimonials {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.mk3-sdc--testimonials .mk3-ts__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Pasted markup may be a grid of quote cards (inline
   grid-template-columns:repeat(3,1fr) etc.) or a single quote block with no
   grid at all. This override only has an effect when the pasted root (or a
   direct child of it) actually is a grid — harmless no-op otherwise. */
@media (max-width: 768px) {
  .mk3-sdc--testimonials .mk3-ts__inner > div,
  .mk3-sdc--testimonials .mk3-ts__inner > div > div {
    grid-template-columns: 1fr !important;
  }
}
