
/*------------------------------------------------*/
.partners__marquee {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners__track {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    will-change: transform;
    animation: marquee 15s linear infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    position: relative;
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.25));
}

.partners__track::after {
    content: attr(data-duplicate);
    display: inline-block;
    white-space: nowrap;
}

.partners__group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
}

@keyframes marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-49.75%, 0, 0);
    }
}

.partners__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 240px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.08), rgba(0, 0, 0, 0.25));
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 14px;
    padding: 0.6rem 0.9rem;
    gap: 0.8rem;
    box-shadow:
        inset 0 0 8px rgba(0, 255, 255, 0.15),
        0 0 10px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: visible;
    /* ← это ключевой момент */
}

.partners__item:hover {
    transform: scale(1.05);
    box-shadow:
        inset 0 0 10px rgba(0, 255, 255, 0.25),
        0 0 18px rgba(0, 255, 255, 0.25);
    z-index: 10;
}

.partner-svg {
    width: 74px;
    height: auto;
    flex-shrink: 0;
    display: block;
    opacity: 0.95;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.25));
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b9e8ff;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

@media (max-width: 768px) {
    .partners__track {
        animation-duration: 35s;
    }
}