.board-page .board-members { padding: 0; background: transparent; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.board-page .board-member { border: 1px solid var(--line); border-radius: 10px; }
.board-photo-placeholder { width: 100%; max-width: 180px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; background: #eef3f2; border: 1px solid var(--line); color: #496773; }
.board-photo-placeholder span { font-size: 2.5rem; }
.board-photo-placeholder small { font-size: .8rem; }
@media (max-width: 1000px) { .board-page .board-members { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .board-page .board-members { grid-template-columns: 1fr; } }
