/* ===== FINAL CLEAN BOARD ===== */

.board-directors-section {
  padding: 60px 0;
  background: #f9f9f9;
}

/* CARD */
.team-member {
  background: #fff;
  border: 1px solid #f1c27d;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* IMAGE FIX (IMPORTANT) */
.image-box {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* TEXT */
.team-info {
  padding: 10px;
  text-align: center;
}

.member-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.member-role {
  font-size: 12px;
  color: #777;
}

/* FOUNDER */
.founder-card {
  border: 2px solid #e9a33c;
}

/* GRID */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

/* TOP LEADERS */
.top-leaders {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* MOBILE */
@media(max-width:768px){
  .top-leaders {
    flex-direction: column;
    align-items: center;
  }
}