// Testimonial, single pulled quote on cream. Placeholder until real testimonials are sourced.
function Testimonial() {
  return (
    <section className="section section-cream" data-screen-label="05 Testimonial">
      <div className="section-inner">
        <div className="testimonial-block">
          <div className="testimonial-mark" aria-hidden="true">“</div>
          <p className="testimonial-quote">
            Lee changed how our facilitators show up in the room. After the training, they stopped <em>performing accountability</em> and started doing the slower, harder work of holding it.
          </p>
          <div className="testimonial-attrib">
            <span className="testimonial-name">Director of Programs</span>
            <span className="testimonial-role">State coalition · DVI standards rollout</span>
            <span className="testimonial-source">Placeholder · pending sign-off</span>
          </div>
        </div>
      </div>
    </section>
  );
}

window.Testimonial = Testimonial;
