/* ——— ZITAT / MISSION ———
   Zwei-Spalten-Insel: Textkarte links (hell, mit dekorativen
   Quadraten wie im FAQ-Plus-Icon — nur größer), Fotos rechts.
   Gleiche Kantenregel wie überall: rund nur an der Außenseite,
   scharf an der Seite, die den Nachbarn berührt. */
.testimonial { padding: 56px 56px 88px; }
.testimonial-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  min-height: clamp(360px, 34vw, 440px);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: var(--canvas);
  border-radius: var(--side-round) 0 0 var(--side-round);
  padding: 44px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Dekorative Quadrat-Treppe — gleiche Formsprache wie .faq-q .mark
   (eckige Rundung, diagonal versetzt), nur größer und im Hintergrund. */
.testimonial-squares { position: absolute; inset: 0; z-index: 0; }
.testimonial-squares i { position: absolute; display: block; background: rgba(75, 112, 133, .08); }
.testimonial-squares i:nth-child(1) { width: 150px; height: 150px; top: -40px; right: 64px; border-radius: 28px 0 28px 0; }
.testimonial-squares i:nth-child(2) { width: 84px; height: 84px; top: 96px; right: -20px; border-radius: 0 20px 0 20px; background: rgba(75, 112, 133, .13); }
.testimonial-squares i:nth-child(3) { width: 190px; height: 190px; bottom: -70px; right: -60px; border-radius: 36px 0 36px 0; }
.testimonial-squares i:nth-child(4) { width: 110px; height: 110px; bottom: 60px; right: 130px; border-radius: 0 24px 0 24px; background: rgba(75, 112, 133, .13); }
.testimonial-squares i:nth-child(5) { width: 64px; height: 64px; bottom: 150px; right: 210px; border-radius: 16px 0 16px 0; background: rgba(75, 112, 133, .18); }

.quote-mark {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: .35;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 46ch;
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.testimonial-card blockquote .accent { color: var(--accent); font-weight: 800; }

.testimonial-caption {
  position: relative;
  z-index: 1;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.testimonial-author span { font-weight: 500; font-size: 15px; color: var(--muted); }

.testimonial-photos {
  height: 100%;
  overflow: hidden;
}
.testimonial-photos img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0 var(--side-round) var(--side-round) 0;
}

@media (max-width: 1100px) {
  .testimonial-card { padding: 48px 36px; }
}

@media (max-width: 860px) {
  .testimonial { padding: 40px 20px 56px; }
  .testimonial-inner { grid-template-columns: 1fr; height: auto; }
  .testimonial-card {
    height: auto;
    border-radius: 28px 28px 0 0;
    padding: 44px 28px 32px;
  }
  .quote-mark { font-size: 64px; }
  .testimonial-photos { height: auto; }
  .testimonial-photos img {
    min-height: 220px;
    border-radius: 0 0 28px 28px;
  }
}
