fix(director): align layout and typography with live site

Narrows the photo column to match the live site's ~1:3.6 split,
stacks photo above name as an h3, italicises the quote, and styles
the name line with body font at caption scale.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-09 15:14:22 -07:00
parent 1bc0224f76
commit 5f4fbd5e05
2 changed files with 8 additions and 6 deletions
+4 -4
View File
@@ -3,15 +3,15 @@ import type { DirectorSection } from '../../types/home-sections';
interface Props { section: DirectorSection }
const { section } = Astro.props;
---
<section class="section family-section">
<div class="container feature-grid">
<section class="section director-section">
<div class="container feature-grid director-layout">
<div class="director-card">
<img src={`/assets/images/${section.photo}`} alt={section.photoAlt} />
<p><strong>{section.name}</strong><br />{section.credentials}</p>
<h3 class="no-balance">{section.name}, {section.credentials}</h3>
</div>
<div>
<h2>{section.heading}</h2>
<p>{section.quote}</p>
<p><em>{section.quote}</em></p>
<img class="signature" src={`/assets/images/${section.signature}`} alt={section.signatureAlt} />
</div>
</div>