/* ─── About hero ──────────────────────────────────────────────────────────── */
.about-hero {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
}

.about-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-intro h1 {
  font-size: 36px;
  margin-bottom: 4px;
}

.about-tagline {
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ─── Content ─────────────────────────────────────────────────────────────── */
.about-content {
  margin-bottom: 0;
}

.about-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* ─── Links ───────────────────────────────────────────────────────────────── */
.about-links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-links li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about-links strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-faint);
  min-width: 72px;
  flex-shrink: 0;
}

.about-links a,
.about-links span {
  font-size: 15px;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 500px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
