<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.people-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; 
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px; /* adjust to desired thumbnail size */
  text-align: center;
}

.person img {
  width: 100px;
  height: 100px;
  object-fit: cover;     /* Ensures the image fills the circle */
  border-radius: 50%;    /* Makes the image a circle */
}

.person-name {
  margin-top: 10px;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
</pre></body></html>