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

.staff{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 50px;
    justify-content: center;
}
.staff-item{
    width: calc(33.33% - (40px / 3));
}
.staff-img{
    width: 100%;
    aspect-ratio: 5 / 4;
    background-color: #E2E2E2;
    border-radius: 10px;
    overflow: hidden;
}
.staff-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 250ms all ease-in-out !important;
}
.staff-item:hover .staff-img img{
    transform: scale(1.1);
}
.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;
    margin: 40px 0;
}