
.board_grid {
    display: flex;
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    gap: 130px 16px;
    flex-wrap: wrap;
}

.board_member {
    border-radius: 8px;
    border: 1px solid var(--1px-Stroke, #242C35);
    background: #FFF;
    box-shadow: 1px 1px 0px 0px #242C35;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 42px;
}

.board_member_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.board_member_name {
    color: #24292F;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off;
    font-family: "Medium LL";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.72px;
}

.board_member_title {
    color: #242C35;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'salt' on, 'liga' off;
    font-family: "Garton Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 1.26px;
    text-transform: uppercase;
}

.board_member_bio div {
    color: #242C35;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'salt' on, 'liga' off;
    font-family: "Garton Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: 1.26px;
    border-radius: 40px;
    border: 1px solid #414141;
    background: #00C2FF;
    box-shadow: 1px 1px 0px 0px #414141;
    padding: 14px 22px;
}

.board_member {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.board_member > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}