/* board.html */
    .board-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    a.board-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }
    a.board-card:hover {
      border-color: rgba(22, 75, 199, 0.35);
      box-shadow: var(--shadow-float);
    }
    a.board-card .text-link { margin-top: auto; padding-top: 18px; }
    a.board-card .text-link::after {
      width: 14px;
      height: 22px;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m5 12 7 7 7-7' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m5 12 7 7 7-7' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    }
    a.board-card:hover .text-link::after { transform: translateY(3px); }

    .board-avatar {
      width: 88px;
      height: 88px;
      flex: none;
      border-radius: 50%;
      background: var(--blue-tint);
      overflow: hidden;
      margin-bottom: 20px;
    }
    .board-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: grayscale(1);
    }
    .board-card h3 { margin-bottom: 2px; }
    .board-role {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin: 0 0 14px;
    }

    .board-profile {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 200px;
      gap: 48px;
      align-items: start;
      padding: 48px 0;
      border-top: 1px solid var(--hairline);
      scroll-margin-top: 96px;
    }
    .board-profile:first-of-type { border-top: none; padding-top: 0; }
    .board-profile-copy h3 {
      font-size: clamp(22px, 2.4vw, 28px);
      letter-spacing: -0.02em;
      margin: 0 0 2px;
    }
    .board-profile-copy .board-role { margin-bottom: 16px; }
    .board-profile-copy p { margin-bottom: 14px; max-width: 62ch; }
    .board-profile-copy p:last-child { margin-bottom: 0; }
    .board-profile-photo {
      width: 200px;
      height: 200px;
      border-radius: 16px;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--hairline);
    }
    .board-profile-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: grayscale(1);
    }
    .board-profile-refs { margin-top: 18px; }

    @media (max-width: 920px) {
      .board-grid { grid-template-columns: 1fr; }
      .board-profile {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .board-profile-photo {
        order: -1;
        width: 140px;
        height: 140px;
        border-radius: 12px;
      }
    }
    @media (min-width: 921px) and (max-width: 1100px) {
      .board-grid { grid-template-columns: repeat(2, 1fr); }
    }
