/* ============================================================
   chairs.css — Styles for leadership/chair sections
   ============================================================ */

.chairs-section {
  padding: 80px 20px;
  background: white;
}

.chairs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.chair-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.chair-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(94, 35, 157, 0.2);
  border-color: #5e239d;
}

.chair-header {
  background: linear-gradient(135deg, #5e239d 0%, #b70468 100%);
  padding: 30px;
  text-align: center;
  color: white;
}

.chair-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.chair-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.chair-title {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.chair-body {
  padding: 30px;
}

.chair-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.chair-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.chair-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.chair-link.linkedin {
  background: #0077b5;
  color: white;
}

.chair-link.linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.chair-link.email {
  background: #ea4335;
  color: white;
}

.chair-link.email:hover {
  background: #c5322a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

.chair-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
