.board-member-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.board-member-img-wrap {
    text-align: center;
}

.board-member-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.board-member-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.board-member-name {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.board-member-title {
    color: #0073B1;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.board-member-subtitle {
    color: #D32F2F;
    font-size: 14px;
    font-style: italic;
}

.board-member-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.board-member-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0077b5;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.board-member-linkedin:hover {
    background-color: #005582;
    color: #fff;
}

.board-member-linkedin svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}