  /* TEAM PAGE */
  /* Board layout, mimicking rocketryatvirginiatech.org/Team/Leads */
  .team-col { border-top: 1px solid var(--border); }

  .board-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 14px 12px;
  }
  .board-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 24px;
    line-height: 1.3;
  }
  .board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
  }
  .board-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .board-member .img-wrap {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--fg3);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
  }
  /* real headshots fill the photo box once they exist */
  .board-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* placeholder avatar stays small and centered inside the photo box */
  .board-avatar {
    width: 96px;
    height: 96px;
    display: block;
    flex-shrink: 0;
  }
  .board-member h2 {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--fg);
    font-family: var(--mono);
  }
  .board-member p {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--fg2);
    text-transform: uppercase;
  }
  .board-link {
    margin-top: 8px;
    font-size: 9px;
    letter-spacing: 0.06em;
    color: var(--accent2);
    text-decoration: none;
    border-bottom: 0.5px solid var(--fg3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .board-link:hover { color: var(--fg); border-color: var(--fg3); }

  /* faculty board: two cards centered */
  .board-faculty {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
  }
  .board-faculty .img-wrap { aspect-ratio: 1 / 1; }

  @media (max-width: 900px) {
    .board { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 640px) {
    .board { grid-template-columns: repeat(2, 1fr); }
    .board-faculty { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 400px) {
    .board { grid-template-columns: 1fr; }
    .board-faculty { grid-template-columns: 1fr; max-width: 260px; }
  }
