#board {
  color: #fff;
  text-align: center;
  padding-block: 4rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  justify-items: center;
}

@media (max-width: 900px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
}

.member-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 320px;
  border: 2px solid transparent;

  padding: 0;
  overflow: hidden;
}

.member-media img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.member-body {
  padding: 1.2rem;
  text-align: center;
}

.member-body h4 {
  margin: 0;
  font-weight: 600;
}

.member-body .role {
  color: var(--muted);
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.member-body .socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-body .socials i {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.8;
}
.member-body .socials i:hover {
  opacity: 1;
}

.member-media {
  aspect-ratio: 1/1;
}
.member-media img {
  height: 100%;
}
