* { box-sizing: border-box; }
:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17202a;
  background: #f5f6f8;
}
body { margin: 0; }
.page { width: min(900px, calc(100% - 32px)); margin: 0 auto; padding: 56px 0 40px; }
.hero { margin-bottom: 28px; }
.eyebrow { margin: 0 0 10px; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #667085; }
h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.08; }
h2 { margin: 0 0 20px; font-size: 1.25rem; }
.card { background: white; border: 1px solid #e4e7ec; border-radius: 16px; padding: 24px; margin: 16px 0; box-shadow: 0 4px 18px rgba(16,24,40,.04); }
.details { display: grid; grid-template-columns: 220px 1fr; margin: 0; }
.details > div { display: contents; }
dt, dd { padding: 11px 0; border-bottom: 1px solid #eaecf0; margin: 0; }
dt { font-weight: 650; color: #475467; }
dd { color: #101828; }
.person { padding: 18px 0; border-top: 1px solid #eaecf0; }
.person:first-child { border-top: 0; padding-top: 0; }
.person h3 { margin: 0 0 12px; font-size: 1.05rem; }
.person p { margin: 6px 0; color: #475467; }
.missing { color: #b54708; }
footer { margin-top: 24px; color: #667085; font-size: .82rem; line-height: 1.5; }
@media (max-width: 620px) {
  .page { padding-top: 32px; }
  .card { padding: 20px; }
  .details { grid-template-columns: 1fr; }
  dt { padding-bottom: 3px; border-bottom: 0; }
  dd { padding-top: 0; }
}
