.board-intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.video-container video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bio-container h2 {
  color: #5cbf7b;
  margin-bottom: 0.5rem;
}

.bio-background {
  background: #f4fdf7;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.board-members {
  margin-top: 3rem;
}

.board-members h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #333;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.member-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-card img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.member-name-box {
  display: inline-flex;
  align-items: center;
  background: #f4fdf7;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.badge {
  margin-left: 1rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  background: #2f855a;
  color: white;
  border-radius: 4px;
}
