.people-page {
  width: 100%;
  max-width: none;
  padding-top: 120px;
  padding-bottom: 0;
  gap: 0;
}

.people-list-view {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  margin-bottom: 24px;
  border: 1px solid var(--color-border-nav);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  transition: var(--transition-fast);
}

.back-link:hover {
  color: var(--color-text-strong);
  border-color: var(--color-border-strong);
  background: rgba(0, 0, 0, 0.02);
  transform: translateX(-2px);
}

/* section background */

.people-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 48px 0;
}

.people-band--pi {
  background: #ffffff;
}

.people-band--members {
  background: #ffffff;
}

.people-band--alumni {
  background: #ffffff;
}

.people-band__inner {
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
}

.people-band-label {
  margin-bottom: 18px;
  color: var(--color-text-subtle);
}

/* list */

.people-list {
  display: grid;
  gap: var(--space-8);
}

.people-members-list,
.people-alumni-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* detail */

.member-detail-view {
  display: flex;
  flex-direction: column;
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
  padding-bottom: 60px;
}

.member-detail-profile {
  display: flex;
  flex-direction: column;
}

.member-detail-profile--centered {
  width: 100%;
}

.member-detail-header {
  display: grid;
  grid-template-columns: 176px minmax(320px, 520px);
  gap: 32px;
  align-items: start;
}

.member-detail-header--inset,
.member-detail-header--centered {
  width: min(100%, 780px);
  margin: 0;
}

.member-detail-header.no-photo {
  grid-template-columns: minmax(320px, 520px);
}

.member-detail-header.no-photo .member-detail-main {
  min-height: 0;
}

.member-detail-photo-wrap {
  width: 176px;
  display: flex;
  justify-content: center;
  align-self: start;
}

.member-detail-photo {
  width: 176px;
  height: 176px;
  border-radius: 18px;
}

.member-detail-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 176px;
  justify-content: center;
}

.member-detail-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.member-detail-name {
  margin: 0;
}

.member-detail-role {
  color: var(--color-text-muted);
}

.member-detail-affiliation {
  color: var(--color-text-subtle);
}

.member-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  background: #ffffff;
}

.icon-link:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.icon-link__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: var(--color-text-muted);
}

.member-detail-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  width: min(100%, 780px);
}

.member-detail-sections--pi {
  margin-top: 24px;
}

.member-detail-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.member-detail-section-title {
  margin: 0;
}

.member-detail-section-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.member-detail-item {
  color: var(--color-text-muted);
}

.member-publications-section {
  margin-top: 6px;
}

.member-publications-title {
  margin: 0;
}

.member-detail-joined {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}

.member-detail-joined-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
  text-transform: uppercase;
}

.member-detail-joined-value {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
