UNIT 26 • STAGE 4 OF 7

Problem + Solution

Two-column prose layout with pull quote and solution cards

UNIT 4 / 7
STEP 1

Problem + Solution: The Core Persuasive Arc

Every effective pitch follows the same arc: name the problem clearly, then present a credible solution. The two-column layout in this section puts both columns of text side by side — left column states the problem in the community's own voice, right column introduces the solution approach.

The pull quote (<blockquote> with a red left border) lifts one sentence from the community testimony and makes it visually dominant. This is a classic editorial technique for lending human weight to an argument.

STEP 2

Add Problem CSS and HTML

👉 Key CSS: #problem { background: var(--dark); padding: 72px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pull-quote { border-left: 3px solid var(--red); padding: 18px 0 18px 28px; margin: 28px 0; }
.pull-quote p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; }
STEP 3

Add the Solution Cards

Three cards, each targeting one pillar of the solution: Device Access, Community Broadband, and Digital Skills Training. Each card has an emoji icon, a bold title, and a 2-sentence description. Use repeat(auto-fill, minmax(260px, 1fr)) for the grid.

Stage 4 Complete

The persuasive core of the site is in place: problem clearly stated, solution cards presenting each pillar.

Code Editor
Live Preview