body.about-open { overflow: hidden; }
body.about-open .cite-dock {
  opacity: 0;
  pointer-events: none;
}

.about {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 7vh 5vw;
  background: rgba(18, 16, 14, .38);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
}
.about[hidden] { display: none !important; }

.about-close {
  position: absolute;
  top: 22px;
  right: 28px;
  z-index: 2;
  padding: 10px 16px;
  border: 1px solid rgba(246,240,228,.45);
  color: #f6f0e4;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  background: rgba(20,18,16,.35);
}
.about-close:hover { background: #b23a22; border-color: #b23a22; }

.about-card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: 132px 1fr 200px;
  gap: 22px 28px;
  align-items: center;
  padding: 28px 32px;
  background: rgba(246, 240, 228, .94);
  color: #1a1814;
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}

.about-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
  justify-self: center;
  grid-column: 1;
  grid-row: 1;
}
.about-who {
  grid-column: 2;
  grid-row: 1;
}

.about-who h2 {
  margin: 0 0 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: -.03em;
  max-width: none;
}
.about-kicker {
  margin: 0 0 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: #b23a22;
}
.about-role {
  margin: 0;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 18px;
  line-height: 1.4;
  color: #4a453e;
}

.about-half {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: 50% 8%;
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: stretch;
}

.about-facts {
  grid-column: 1 / 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 0;
}
.about-facts div { min-width: 0; }
.about-facts dt {
  margin: 0 0 4px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #b23a22;
}
.about-facts dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}
.about-facts a { color: inherit; }

@media (max-width: 900px) {
  .about-card {
    grid-template-columns: 96px 1fr;
    padding: 22px;
    gap: 16px;
  }
  .about-half { display: none; }
  .about-avatar {
    width: 96px;
    height: 96px;
  }
  .about-avatar,
  .about-who,
  .about-facts {
    grid-column: auto;
    grid-row: auto;
  }
  .about-facts {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .about-close { top: 12px; right: 12px; }
}
