/* Basic responsive grid and card styles for people page */
.people-section {
  margin: 2rem 0;
}
.people-section__title {
  font-size: 1.5rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
  font-weight: 600;
}

.people-section__single {
  display: flex;
  width: minmax(220px, 1fr);
  justify-content: center;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1rem 0 2rem;
}
.person-card {
  background: var(--card-bg, #fff);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.person-card__photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.person-card__content {
  padding: 0.75rem;
}
.person-card__name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}
.person-card__role {
  margin: 0 0 0.5rem;
  color: var(--muted-color, #666);
  font-size: 0.95rem;
}
.person-card__bio {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-color, #333);
}
.person-card__placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(90deg,#eee,#f7f7f7);
}
