/* Leadership Bios Grid & Card Styles */
.leadership-bios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.leadership-bio-card {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 2px solid #e5e7eb;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.leadership-bio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: #15803d;
}

.leadership-bio-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.18);
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #15803d;
}

.leadership-bio-name {
  font-family: 'Poppins', sans-serif;
  color: #374151;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.leadership-bio-title {
  color: #15803d;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leadership-bio-desc {
  font-family: 'Open Sans', sans-serif;
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .leadership-bios-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .leadership-bio-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .leadership-bio-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.3rem;
  }
}
