/* Grid: 3 columns on desktop, 1 on mobile */
.edb-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem 2.25rem; /* 36px */
  align-items: start;
}
@media (max-width: 768px) {
  .edb-staff-grid { grid-template-columns: 1fr; }
}

/* Card */
.edb-staff-card {
  text-align: center;
  color: inherit;
  max-width: 340px;
  margin: 0 auto;
}

/* Circular photo */
.edb-staff-photo-wrap {
  width: 240px;
  max-width: 80%;
  margin: 0 auto 34px;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  background: #0c1f26;
}
.edb-staff-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .35s ease, transform .35s ease;
  display: block;
}
.edb-staff-card:hover .edb-staff-photo {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.edb-staff-photo.placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #cfd8dc, #b0bec5);
}

/* Text styles */
.edb-staff-name {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  margin: 8px 0 4px;
  font-family: 'Poppins';
  color: #fff;
}
.edb-staff-job {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #87C4D2;
  line-height: 40px;
}
.edb-staff-bio {
  font-size: 14px;
  line-height: 26px;
  opacity: .9;
  color: #fff;
}
.edb-staff-bio p { margin: 0 0 0.9em; }