#people-staff-rows-container{
    background: #fff;
    color: #000;
    border-top-left-radius: 40px;
}

.staff-board-row{
    display: flex;
    max-width: 1032px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    gap: 100px;
    padding: 60px 0;
    border-bottom: 1px solid #000;
}

.staff-board-row:last-child{
    border-bottom: 0;
}

.staff-board-row .label{
    color: #000;
    font-family: Flaviotte;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.staff-board-year{
    color: var(--Light-Gray, #C8C8C8);
    font-family: Flaviotte;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 175px;
    flex-grow: 0;
    flex-shrink: 0;
}

.staff-board-staff, .staff-board-board{
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
    line-height: 20px;
}

.staff-board-staff{
    width: 320px;
    flex-grow: 0;
    flex-shrink: 0;
}

.staff-board-board ul{
    column-count: 2;
    column-gap: 1rem;
}

@media screen and (max-width: 768px) {
    .staff-board-row{
        flex-direction: column;
        gap: 20px;
        padding: 60px 20px;
    }
}