.about-intro__container {
  /* width matches .container — no extra cap, so the intro lines up with
     Founders + Family sections below */
  margin-inline: auto;
}
.about-intro p {
  color: var(--color-body-strong);
  margin-bottom: var(--space-4);
  line-height: var(--line-height-relaxed);
}
.about-intro a { color: var(--color-pink); }

.about-section__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-body-strong);
  margin-bottom: var(--space-3);
}
.about-section__intro {
  color: var(--color-body-strong);
  margin-bottom: var(--space-6);
  max-width: 880px;
}
.about-section__intro--strong { font-weight: var(--font-weight-semibold); }
.about-section__paragraph {
  color: var(--color-body-strong);
  margin-bottom: var(--space-7);
  max-width: 880px;
  line-height: var(--line-height-relaxed);
}

.founders-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-9);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}
.founder { text-align: center; }
.founder__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-3);
  background: var(--color-bg-shaded);
}
.founder__name {
  font-weight: var(--font-weight-bold);
  color: var(--color-body-strong);
}
.founder__role {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.family-card {
  background: var(--color-bg-shaded);
  border-radius: var(--radius-md);
  padding: var(--space-7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.family-card__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-2);
}
.family-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-body-strong);
}
.family-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-body);
  flex: 1;
}
@media (max-width: 900px) {
  .family-grid { grid-template-columns: 1fr; }
}
