

/* Start:/local/components/donsport/staff.list/templates/home/style.css?17569841911759*/
.team-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-card img.trainer {
    width: 100%;
    height: 414px;
    object-fit: cover;
    object-position: top center;
}

.team-card-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 20px;
    will-change: transform;
    touch-action: manipulation;
}

.marquee-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.marquee-btn {
    width: 44px;
    height: 44px;
    border-radius: 5px;
    background: white;
    color: black;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.marquee-btn:hover {
    background: red;
    color: white;
}

.marquee-btn:active {
    transform: scale(0.95);
}

.marquee-btn svg {
    fill: currentColor;
    width: 50px;
    height: 50px;
}

@media (max-width: 767px) {
    .marquee-btn {
        width: 36px;
        height: 36px;
    }

    .marquee-content {
        gap: 12px;
    }
}

.marquee-content {
    display: flex;
    animation: marquee 60s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Кнопки должны быть поверх контента */
.marquee-btn {
    position: relative;
    z-index: 10;
}
/* End */
/* /local/components/donsport/staff.list/templates/home/style.css?17569841911759 */
