.people-page {
  padding-top: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.person-row {
  display: flex;
  flex-direction: row;
  border: 1px solid #e5e7eb;
  background: white;
  overflow: hidden;
}

.person-row.pi {
  border-color: #c8dafb;
  background: #e8f0fe;
}

.person-left {
  width: 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 20px;
  gap: 6px;
}

.person-photo {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.person-name {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #111;
  text-align: center;
}

.person-role {
  margin: 0;
  font-size: 18px;
  color: #555;
  text-align: center;
}

.person-icons {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.person-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #2f59df;
  text-decoration: none;
}

.person-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.person-link:hover {
  color: #e61d89;
}

.person-bio {
  flex: 1;
  min-width: 0;
  padding: 24px 28px;
  background: white;
  border-left: 1px solid #c8dafb;
  font-size: 18px;
  line-height: 1.6;
  color: #111;
  text-align: left;
  columns: 1;
}

.person-row.pi .person-bio {
  background: #e8f0fe;
  border-left-color: #a0bdf8;
}

.person-bio p {
  margin: 0 0 14px;
  width: 100%;
}

.person-bio p:last-child {
  margin-bottom: 0;
}

.join-box {
  margin: 40px auto;
  width: min(80%, 560px);
  border: 3px solid #2f59df;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 10px 10px 0px #2f59df;
}

.join-box h2 {
  color: #2f59df;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 14px;
}

.join-box p {
  font-size: 16px;
  color: #111;
  line-height: 1.5;
  margin: 0 0 8px;
}