/* ── Page banner ── */
.page-banner-strip {
  background: var(--dark);
  padding: 32px 0;
}
.page-banner-strip__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1023px) {
  .page-banner-strip { padding: 24px 0; }
  .page-banner-strip__inner { max-width: 640px; }
}
@media (max-width: 767px) {
  .page-banner-strip { padding: 20px 0; }
}

/* ── Page content ── */
.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--gutter) 64px;
}
.page-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.12;
}

/* ── People grid ── */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.person {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.person__img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.person__img-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--g2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--g4);
}
.person__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.person__role {
  font-size: 11px;
  color: var(--g4);
  line-height: 1.4;
}

@media (max-width: 1023px) {
  .people-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .people-grid { grid-template-columns: 1fr; }
  .page-content h1 { font-size: 28px; }
}

/* ── Page content links (orange, distinct from post links) ── */
.page-content.prose p a,
.page-content.prose li a {
  color: var(--orange);
  border-bottom-color: rgba(255, 77, 17, 0.3);
}
.page-content.prose p a:hover,
.page-content.prose li a:hover {
  border-bottom-color: var(--orange);
}
