/* =====================================================
   NDO — Team
   ===================================================== */

.ndo-team {
     max-width: var(--ndw-content-w);
    margin: 0 auto;
    padding-left: var(--ndw-pad-x);
	padding-right: var(--ndw-pad-x);
     padding-top: 120px;
	padding-bottom: 120px;
}

.ndo-team__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* Заголовок */
.ndo-team__title {
    color:  #252525;
    text-align: center;
    font-family: var(--h2-desktop-font-family, "GothamPro", sans-serif);
    font-size: var(--h2-desktop-font-size, 30px);
    line-height: var(--h2-desktop-line-height, 35px);
    font-weight: var(--h2-desktop-font-weight, 700);
    text-transform: uppercase;
    margin: 0;
}

/* Swiper — растягиваем на всю ширину контейнера */
.ndo-team__swiper {
    width: 100%;
    overflow: hidden; /* Swiper обрезает карточки по краю */
}

/* Слайд — не сжимается, фиксированная ширина карточки */
.ndo-team__slide {
    width: auto !important; /* Swiper slidesPerView: 'auto' */
}

/* ── Карточка (классы из Фигмы) ── */
.worker-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 286px;
}

/* Фото-блок */
.worker-photo {
    background: linear-gradient(219.26deg, rgba(232, 239, 246, 1) 0%, rgba(206, 229, 255, 1) 100%);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid transparent;
    padding: 14px 0 0 14px;
    flex-shrink: 0;
    width: 286px;
    height: 351px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 286 / 351;
}

/* Бейдж / логотип в углу */
.worker-photo img {
    width: 83px;
    height: 83px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Текстовый блок */
.worker-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
}

/* Имя */
.worker-card .div {
    color:  #252525;
    text-align: left;
    font-family: "GothamPro", sans-serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    align-self: stretch;
}

/* Должность */
.worker-card .div2 {
    color: #252525;
    text-align: left;
    font-family: "GothamPro", sans-serif;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    align-self: stretch;
}

/* Счётчик выездов */
._3500 {
    color:  #0056b3;
    text-align: left;
    align-self: stretch;
}

._3500-span {
    font-family: "GothamPro", sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
}

._3500-span2 {
    font-family: "GothamPro", sans-serif;
    font-size: 11px;
    line-height: 25px;
    font-weight: 500;
}





@media (max-width: 1024px){
.ndo-team {
    padding-right: 0;
     padding-top: 64px;
	padding-bottom: 64px;
}

}

@media (max-width: 480px){
.ndo-team {
    padding-right: 0;
        padding-top: 32px;
	padding-bottom: 32px;
}
.ndo-team__title {
    font-size: 19px;
}
}