.about-page {
  display: grid;
  gap: 2rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: start;
}

.about-hero-copy {
  display: grid;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--shell-rule-strong);
}

.about-hero-copy p,
.about-article p,
.about-note p:last-child {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.76;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.about-figure {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.about-figure img {
  width: 100%;
  border: 1px solid var(--shell-rule);
}

.about-figure figcaption {
  color: var(--shell-muted);
  font: 400 0.82rem/1.45 var(--shell-font-sans);
}

.about-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.about-article {
  max-width: 690px;
}

.about-article p {
  margin: 0 0 1.5rem;
}

.about-lead::first-letter {
  float: left;
  margin: 0.08em 0.1em 0 0;
  font-family: var(--shell-font-serif);
  font-size: 4.5rem;
  line-height: 0.82;
}

.about-sidebar {
  display: grid;
  gap: 1.5rem;
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 0.78rem 0;
  border-top: 1px solid var(--shell-rule);
  font: 500 0.98rem/1.45 var(--shell-font-sans);
}

.about-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-links {
  display: grid;
  gap: 0.85rem;
}

.about-links a {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--shell-rule);
  font: 500 0.98rem/1.45 var(--shell-font-sans);
}

.about-links a:hover,
.about-links a:focus-visible {
  text-decoration: underline;
}

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

.about-note {
  padding-top: 0.85rem;
  border-top: 1px solid var(--shell-rule-strong);
}

.about-note h2 {
  margin: 0 0 0.65rem;
  font-family: var(--shell-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-note p:last-child {
  font-size: 1rem;
  line-height: 1.6;
}

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

@media (max-width: 700px) {
  .about-hero-copy p,
  .about-article p {
    font-size: 1.08rem;
    line-height: 1.68;
  }

  .about-lead::first-letter {
    font-size: 3.8rem;
  }
}
