/* ===== INTRO ===== */
.board-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
.board-intro p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== BOARD MEMBERS ===== */
.board-members {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
.board-members h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

/* ===== CARD ===== */
.board-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.board-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Headshot placeholder (circular with person silhouette) */
.headshot-placeholder {
  width: 120px;
  height: 120px;
  background: #e0e0e0;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.headshot-placeholder::after {
  content: "";
  display: block;
  width: 55%;
  max-width: none;
  aspect-ratio: 1;
  opacity: 0.4;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.board-headshot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
}

.board-card h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.3rem;
}
.board-role {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.board-email {
  display: inline-block;
  font-size: 0.82rem;
  color: #444;
  text-decoration: underline;
  word-break: break-all;
}
.board-email:hover {
  color: #222;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .board-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}
