/* css/manifesto.css — the dynamic brand-lines block used on the homepage
   and every goal page. Deliberately not a card: no border, no background
   tint, no shadow — it should read as a printed insert page, not a widget. */

.manifesto-section {
  padding: 56px 0;
}

.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  min-height: 5.5em; /* reserves space before JS swaps the fallback text in, avoids CLS */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 14px;
}

.manifesto-line {
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.22;
  font-weight: 650;
  color: var(--color-ink);
  margin: 0;
}

.manifesto-mark {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  color: var(--color-muted);
  opacity: 0.6;
}

/* Goal pages: smaller scale, narrower measure, sits between the CTA/preview
   and the long-form article — should not compete with either. */
.manifesto-section.goal-manifesto {
  padding: 40px 0;
}

.manifesto-section.goal-manifesto .manifesto-inner {
  max-width: 760px;
  min-height: 4.5em;
}

.manifesto-section.goal-manifesto .manifesto-line {
  font-size: clamp(20px, 2.5vw, 32px);
}

@media (max-width: 640px) {
  .manifesto-section { padding: 40px 0; }
  .manifesto-section.goal-manifesto { padding: 32px 0; }
}
