.page-hero .wrap { max-width: 62ch; }

.endorsements-wrap { max-width: 980px; }
.endorsements-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.endorsements-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.endorsement-list { border-top: 1px solid var(--border); }
.endorsement-empty {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  text-align: center;
}
.endorsement-empty p {
  margin: 10px auto 0;
  color: var(--muted);
  max-width: 52ch;
}
.endorsement-row {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) minmax(0, 1.7fr);
  gap: clamp(28px, 6vw, 80px);
  padding-block: clamp(34px, 6vw, 64px);
  border-bottom: 1px solid var(--border);
}
.endorser {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.endorser-image {
  width: 76px;
  height: 76px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-2);
  overflow: hidden;
}
.endorser-logo {
  object-fit: contain;
  padding: 5px;
  background: var(--surface);
}
.endorser-headshot { object-fit: cover; }
.endorser-initials {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
}
.endorser strong {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}
.endorser > span:not(.endorser-image) {
  margin-top: 4px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}
.endorsement-link {
  margin-top: 14px;
  color: var(--green-ink);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}
.endorsement-link::after { content: " \2192"; }
.endorsement-link:hover { text-decoration: underline; }

.endorsement-row blockquote {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  line-height: 1.52;
  letter-spacing: -.012em;
  max-width: 62ch;
  text-wrap: pretty;
}
.quote-mark {
  display: block;
  height: 24px;
  color: var(--green);
  font-size: 3rem;
  line-height: .7;
}

.endorsement-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 64px);
}
.endorsement-cta p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 56ch;
}
.endorsement-actions {
  display: flex;
  gap: 10px;
  flex: none;
}

@media (max-width: 760px) {
  .endorsements-intro,
  .endorsement-row { grid-template-columns: 1fr; }
  .endorsements-intro { align-items: start; }
  .endorsement-row { gap: 24px; }
  .endorser {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 14px;
    align-items: center;
  }
  .endorser-image {
    grid-row: 1 / span 3;
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }
  .endorser strong { margin-top: 0; }
  .endorser > span:not(.endorser-image) { margin-top: 2px; }
  .endorsement-link { margin-top: 8px; }
  .endorsement-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .endorsement-actions {
    width: 100%;
    flex-direction: column;
  }
  .endorsement-actions .btn { width: 100%; }
}
