/* Statement
   A two-column editorial section. The left column carries a large statement;
   the right column carries supporting paragraphs. Colour and type from
   tokens.css (marketing theme). */

.dp-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--dp-space-10);
  align-items: start;
  max-width: 72rem;
  margin: 0 auto;
  padding: var(--dp-space-12) var(--dp-space-6);
}

@media (max-width: 760px) { .dp-statement { grid-template-columns: 1fr; gap: var(--dp-space-6); } }

.dp-statement-lead {
  margin: 0;
  font-size: var(--dp-text-4xl);
  line-height: var(--dp-leading-tight);
  font-weight: var(--dp-weight-bold);
  color: var(--dp-navy);
}

.dp-statement-body {
  display: flex;
  flex-direction: column;
  gap: var(--dp-space-4);
}

.dp-statement-body p {
  margin: 0;
  font-size: var(--dp-text-base);
  line-height: var(--dp-leading-normal);
  color: var(--dp-text-muted);
}
