.team-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.team-slide {
    min-width: 220px;
    scroll-snap-align: start;
    text-align: center;
    border: 1px solid #eee;
    padding: 15px;
    background: #fff;
}

.team-slide img {
    max-width: 100%;
    height: auto;
}

.team-slider[dir="rtl"] {
    flex-direction: row-reverse;
}
