.info-shell {
  margin: 0 auto;
  max-width: 1160px;
  padding: 2.4rem clamp(1rem, 4vw, 3rem) 4rem;
}

.info-hero {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 2.2rem 0 2rem;
}

.info-eyebrow {
  color: var(--green-strong);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

.info-hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.7rem);
  line-height: 0.98;
  margin: 0;
  max-width: 13ch;
}

.info-hero p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1rem 0 0;
  max-width: 64ch;
}

.info-section-nav {
  align-self: end;
  display: grid;
  gap: 0.35rem;
  min-width: 13rem;
}

.info-section-nav a {
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-weight: 720;
  padding: 0.42rem 0.75rem;
  text-decoration: none;
}

.info-section-nav a:hover,
.info-section-nav a:focus-visible,
.info-section-nav a[aria-current="page"] {
  border-left-color: var(--green);
  color: var(--green-strong);
}

.info-copy {
  display: grid;
  gap: 3rem;
  padding-top: 2.5rem;
}

.info-copy[hidden] {
  display: none;
}

.prose-section {
  max-width: 76ch;
}

.prose-section h2 {
  font-size: 1.75rem;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.prose-section h3 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
}

.prose-section p,
.prose-section li {
  color: var(--muted);
}

.prose-section p {
  margin: 0.75rem 0 0;
}

.prose-section ol,
.prose-section ul {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.source-note,
.archive-note {
  border-left: 3px solid var(--gold);
  color: var(--muted);
  margin: 0 0 1.6rem;
  max-width: 76ch;
  padding: 0.15rem 0 0.15rem 1rem;
}

.photo-placeholder {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, transparent 49.7%, rgba(245, 240, 229, 0.06) 50%, transparent 50.3%),
    var(--surface);
  border: 1px dashed rgba(245, 240, 229, 0.24);
  border-radius: 8px;
  color: var(--subtle);
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
  max-width: 52rem;
  min-height: 11rem;
  padding: 1rem;
  text-align: center;
}

.photo-placeholder::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 1rem;
  margin-right: 0.65rem;
  width: 1rem;
}

.project-list,
.team-list {
  display: grid;
  gap: 0;
  max-width: 62rem;
}

.project-entry {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(12rem, 0.38fr) minmax(0, 1fr);
  padding: 1.5rem 0;
}

.project-entry h2 {
  font-size: 1.25rem;
  margin: 0;
}

.project-entry p {
  color: var(--muted);
  margin: 0;
}

.project-entry a,
.prose-section a {
  color: var(--green-strong);
}

.project-entry a:hover,
.project-entry a:focus-visible,
.prose-section a:hover,
.prose-section a:focus-visible {
  color: var(--ink);
}

.team-list details {
  border-top: 1px solid var(--line);
  padding: 0.25rem 0;
}

.team-entry {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 7rem minmax(0, 1fr);
  padding: 1rem 0;
}

.team-entry details {
  border: 0;
}

.portrait-placeholder {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px dashed rgba(245, 240, 229, 0.24);
  border-radius: 8px;
  color: var(--subtle);
  display: flex;
  font-size: 0.72rem;
  justify-content: center;
  padding: 0.6rem;
  text-align: center;
}

.team-list summary {
  cursor: pointer;
  display: grid;
  gap: 0.3rem;
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr);
  list-style: none;
  padding: 1rem 0;
}

.team-list summary::-webkit-details-marker {
  display: none;
}

.team-list summary strong {
  color: var(--green-strong);
}

.team-list summary span,
.team-list details p {
  color: var(--muted);
}

  .team-list details p {
  margin: 0 0 1.4rem;
  max-width: 58ch;
}

@media (max-width: 760px) {
  .info-shell {
    padding-top: 1rem;
  }

  .info-hero,
  .project-entry,
  .team-list summary {
    grid-template-columns: 1fr;
  }

  .info-hero h1 {
    font-size: 2.65rem;
  }

  .info-section-nav {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .team-list details p {
    margin-left: 0;
  }

  .team-entry {
    grid-template-columns: 5.25rem minmax(0, 1fr);
  }

  .team-list summary {
    gap: 0.35rem;
  }

  .photo-placeholder {
    min-height: 9rem;
  }
}
