.board-page {
    padding: 30px 0 60px;
}

.board-header {
    margin-bottom: 18px;
}

    .board-header h2 {
        color: #1a3560;
        font-weight: 700;
        margin: 0;
    }

.board-chair-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #1a3560, #1253ca);
    color: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(26,53,96,0.15);
}

.board-chair-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
}

.board-chair-text {
    margin: 0;
    line-height: 1.6;
    color: #fff;
}

    .board-chair-text b {
        color: #fff;
    }

.board-members-heading {
    color: #1253ca;
    font-weight: 700;
    font-size: 1.05em;
    margin: 0 0 14px;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .board-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .board-members-grid {
        grid-template-columns: 1fr;
    }
}

.board-member-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e5e9f2;
    border-left: 4px solid #1ab394;
    border-radius: 8px;
    padding: 16px 18px;
    box-shadow: 0 2px 8px rgba(26,53,96,0.05);
}

.board-member-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f7fb;
    color: #1253ca;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

.board-member-card p {
    margin: 0;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}
