.about-page { max-width: 960px; margin: 0 auto; padding: 0 1rem 3rem; }
.about-header { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
body.is-public .about-page .about-header h1 { margin: 0; color: #1f3320; }
body.is-public .about-page .about-lead { color: #445443; margin: 0 auto 0 0; }
.btn-manage {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .9rem; border-radius: 6px; font-size: .875rem;
    background: var(--bs-primary, #7A5C3E); color: #fff; text-decoration: none;
    white-space: nowrap;
}
.btn-manage:hover { opacity: .88; }
.about-empty { color: #4b5563; font-style: italic; }
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.board-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: box-shadow .15s;
}
.board-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.10); }
.board-photo {
    width: 100%; aspect-ratio: 1/1;
    background: color-mix(in srgb, var(--bs-primary, #7A5C3E) 12%, #f3f4f6);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.board-photo img { width: 100%; height: 100%; object-fit: cover; }
.board-initials {
    font-size: 3rem; font-weight: 700;
    color: var(--bs-primary, #7A5C3E);
    opacity: .7;
    user-select: none;
}
.board-info {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    color: #1f2937;
}
.board-position {
    font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    color: var(--bs-primary, #7A5C3E);
}
.board-name { font-size: 1.1rem; font-weight: 700; line-height: 1.25; color: #1f2937; }
.board-bio { font-size: .875rem; color: #4b5563; margin: .25rem 0 0; line-height: 1.55; }
.board-contact { display: flex; flex-direction: column; gap: .2rem; margin-top: .5rem; }
.board-contact-link {
    font-size: .8rem; color: #2f5f7a; text-decoration: none;
    display: flex; align-items: center; gap: .3rem;
}
.board-contact-link:hover { color: var(--bs-primary, #7A5C3E); text-decoration: underline; }
