.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}

.person-card {
  background: #f9f9fc;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 16px;
  list-style: none;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.person-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 6px 12px rgba(0,0,0,0.1);
}

.person-name {
  font-size: 1.2rem;
  color: #003366;
}

.person-company {
  margin-top: 4px;
  color: #444;
  font-size: 0.95rem;
}

.person-links {
  margin-top: 8px;
}

.person-icon {
  margin-right: 10px;
  color: #555;
  text-decoration: none;
}

.person-icon:hover {
  color: #007bff;
}

/* Max 4 columns across */
@media (min-width: 1200px) {
  .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
ß