// Leadership.jsx — MSO operations leadership
function MsoLeadership() {
  const team = [
    { name: "Dr. Matthew Sherwood", title: "Manager · AltaPath Management Services" },
    { name: "Mr. Andrew DeVito", title: "Operations & Technology" },
    { name: "Mr. Joe Gallo", title: "Financial Operations" },
  ];
  return (
    <section id="leadership" className="section section--bone">
      <div className="container">
        <div className="section__head">
          <div>
            <span className="eyebrow">Leadership</span>
            <h2 style={{ marginTop: 14 }}>Operations leadership.</h2>
          </div>
          <p className="lede">
            The MSO is run by operators with combined backgrounds in
            laboratory operations, revenue cycle, regulatory compliance, and
            healthcare technology. Detailed biographies and references are
            shared on request.
          </p>
        </div>
        <div className="leadership">
          {team.map((m) => (
            <div className="lead" key={m.name}>
              <div className="lead__title">{m.title}</div>
              <div className="lead__name">{m.name}</div>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
}

Object.assign(window, { MsoLeadership });
