/* ================================================================
   ACR — Editorial Board (board.css)
================================================================ */

.board-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}

/* ─── Role group ─────────────────────────────────────────────── */
.board-group {
    margin-bottom: 2.5rem;
}

.board-role-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.board-role-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

/* ─── Board cards grid ───────────────────────────────────────── */
.board-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.board-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow var(--transition);
}

.board-card:hover { box-shadow: var(--shadow); }

/* ─── Avatar initial ─────────────────────────────────────────── */
.board-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--maroon);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.board-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.board-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--maroon-dark);
    line-height: 1.3;
}

.board-role-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold-dark);
}

.board-affiliation {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ─── Empty state ────────────────────────────────────────────── */
.board-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 540px) {
    .board-cards { grid-template-columns: 1fr; }
}
