/* ===== staff SLIDER ===== */

.staff-block {
    margin-top: 30px;
}

.staff-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.staff-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.staff-nav {
    display: flex;
    gap: 8px;
}

.staff-prev,
.staff-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1f2633;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: .2s;
}

.staff-prev:hover,
.staff-next:hover {
    background: #00b27a;
    color: #041b12;
}

/* swiper fix */
.staff-swiper {
    padding-bottom: 10px;
}