.people-page {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.people-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1080px; /* 4 cards x (240px + gap) */
  margin: 0 auto;
  padding: 0 20px;
}

.person-card {
  width: 240px;
  min-height: 380px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  justify-self: center;  /* Ensures card is centered in column */
}

.person-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}
.person-card h3 {
  font-size: 18px;
  margin: 8px 0 6px;
}

.person-card p {
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}
