.intro-img{
    background-image: url(../img/staff/intro.jpg)
}

.staff{
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 60px;
}
.staff-item{
    width: calc(33% - (60px / 3));
}
.staff-img{
    width: 100%;
    aspect-ratio: 5 / 4;
    background-color: #E2E2E2;
    border-radius: 10px;
}
.staff-title{
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 10px 0;
}
.staff-role{
    color: #666;
}
.divider{
    width: 100%;
    height: 2px;
    background-color: #ccc;
}