/* about.css — About section */

/* ─── Content block ──────────────────────────────── */

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
  max-width: 680px;
}

/* ─── Intro paragraph ────────────────────────────── */

.about-intro p {
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  line-height: 1.7;
  max-width: 58ch;
}

/* ─── History + interests ────────────────────────── */

.about-history p,
.about-interests p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 58ch;
}

/* Subtle visual break before the interests paragraph */
.about-interests {
  padding-top: var(--s-4);
  border-top: 1px solid var(--color-border-subtle);
}

.about-interests p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
