/* Start custom CSS */.people {
  padding: 28px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.people-header {
  margin-bottom: 18px;
  text-align: left;
}

.people-header h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.2;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 720px) {
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Person card */
.person-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 100%;          
  gap: 2rem;
}

.person-card:hover,
.person-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

/* Media (avatar) */
.person-media {
  margin: 0 0 12px 0;
  align-self: center;
  width: 140px;
  height: 140px;
  border-radius: 999px;        /* circle */
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;       
  display: block;
}


.person-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.person-name {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.person-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #333;
}


.proverb {
  margin: 28px auto 0;
  max-width: 800px;
  text-align: center;
}

.proverb blockquote {
  margin: 0;
  padding: 14px 18px;
  background: #fff;
  border-left: 4px solid #222;
  border-radius: 8px;
  display: inline-block;
}

.proverb figcaption {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #555;
}/* End custom CSS */