// Section 4.7 — Thesis bridge.
// Sits between Essay Intensive (Section 4) and Component Intensive (Section 5).
// Conceptual through-line of the entire business; both products serve this thesis.

const ThesisBridge = () => (
  <section className="section thesis-bridge" aria-label="The thesis behind both intensives">
    <div className="thesis-bridge-bg" aria-hidden="true" />
    <div className="wide">
      <div className="thesis-bridge-inner">
        <p className="thesis-line ink">You write every word.</p>
        <p className="thesis-line purple">
          Your coach makes sure <Scribble>every decision</Scribble> is the right one; before you write it.
        </p>
      </div>
    </div>
  </section>
);

window.ThesisBridge = ThesisBridge;
