.about-hero-section {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 2.5rem;
  align-items: center;
}

.about-hero-copy {
  min-width: 0;
}

.about-hero-copy .page-hero-title {
  max-width: 12ch;
}

.about-portrait-card {
  margin: 0;
  padding: 1rem;
  overflow: hidden;
  background: var(--panel-glass);
  border: 1px solid var(--line-soft-3);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.about-portrait-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-card) - 10px);
  border: 1px solid var(--line-soft-4);
  background: var(--bg-soft);
}

.about-portrait-caption {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0.25rem 0.15rem;
}

.about-portrait-caption strong {
  color: var(--text-strong);
  font-size: 1.15rem;
}

.about-portrait-caption span {
  color: var(--muted);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.about-gallery-card {
  margin: 0;
  overflow: hidden;
}

.about-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-soft);
}

.about-gallery-card figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
}

.about-gallery-card figcaption strong {
  color: var(--text-strong);
  font-size: 1.1rem;
}

.about-gallery-card figcaption span {
  color: var(--muted);
}

.about-video-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 100%;
}

.about-video-card h3,
.about-video-card p {
  margin: 0;
}

.about-video-card > a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.about-video-card > a:hover,
.about-video-card > a:focus-visible {
  color: var(--accent-strong);
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-portrait-card {
    max-width: 680px;
  }
}
