.about-header {
  padding: clamp(40px, 5vw, 64px) var(--pad) clamp(40px, 5vw, 64px);
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}
@media (min-width: 800px) {
  .about-header { grid-template-columns: 1fr 1fr; align-items: start; }
  .about-header > picture {
    margin-top: clamp(48px, 4vw, 64px);
    transform: translateY(5%);
  }
}
.about-header h1 {
  font-size: var(--h2-size);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.02em;
  white-space: pre-line;
  margin: clamp(24px, 2.5vw, 40px) 0 clamp(40px, 4vw, 64px);
}
.about-header .bio p { margin: 0 0 1.4em; max-width: 680px; }
.about-header .bio p:last-child { margin-bottom: 0; }
.about-header img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.about-header > picture { overflow: hidden; }
.about-header > picture img {
  width: calc(100% + 2px);
  max-width: none;
  transform: translateX(-2px);
}

.section {
  padding: clamp(48px, 7vw, 96px) var(--pad);
  border-top: 1px solid var(--line);
}
.section h2 { margin-bottom: clamp(24px, 3vw, 40px); }

.achievement-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.achievement-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.achievement-item .org {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--label-size);
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
}
.achievement-item .detail { font-size: var(--body-size); }
[data-content="achievements-note"]:empty { display: none; }
.achievement-item .evidence-link {
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--button-size);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.achievement-item .evidence-link:hover { border-color: var(--ink); }

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(20px, 3vw, 44px);
  row-gap: 12px;
  list-style: none;
  margin: 0; padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 1rem + 1.2vw, 1.75rem);
  color: var(--ink);
}
.client-list li { white-space: nowrap; }
.client-list li:not(:last-child)::after {
  content: '·';
  margin-left: clamp(20px, 3vw, 44px);
  color: var(--muted);
}
