
/* ── Inline images within testimony text ───────────────────────── */
.testimony-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: .75rem 0;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.testimony-body img.img-left   { float: left;  margin: .4rem 1rem .4rem 0; max-width: 45%; }
.testimony-body img.img-right  { float: right; margin: .4rem 0 .4rem 1rem; max-width: 45%; }
.testimony-body img.img-center { display: block; margin: .75rem auto; }
.testimony-body img.img-full   { width: 100%; }
.testimony-card { overflow: hidden; } /* clear floats */

/* ── Testimony card with photo ─────────────────────────────────── */
.testimony-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.testimony-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.testimony-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary, #6366f1);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.testimony-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--stone-light, #f1f5f9);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 3px solid var(--border, #e2e8f0);
}
.testimony-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink, #1e293b);
  margin: 0 0 2px;
  line-height: 1.2;
}
.testimony-date {
  font-size: .73rem;
  color: var(--stone, #94a3b8);
}
.testimony-quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--primary, #6366f1);
  opacity: .18;
  font-family: Georgia, serif;
  margin-bottom: -.5rem;
  display: block;
}
.testimony-body {
  font-size: .97rem;
  color: var(--ink-light, #475569);
  line-height: 1.7;
}
