/* Container for all people cards */
.people-cards {
  gap: 24px;
  justify-content: flex-start;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* Single person card */
.person-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 100px 80px rgba(0, 0, 0, 0.08);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.person-role {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Poppins', Arial, sans-serif;
}

.person-name {
  font-size: 1.2rem;
  color: #222;
  font-weight: 700;
  font-family: 'Volkhov', serif;
  letter-spacing: 0.5px;
}

/* Responsive: stack cards on small screens */
@media (max-width: 900px) {
  .people-cards {
    gap: 16px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .people-cards {
    grid-template-columns: 1fr;
  }
}