/* Bannière défilante infinie - Basée sur le design Figma */
.heho-infinite-banner {
    background: var(--color-black);
    padding: 0;
    height: 259px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.heho-infinite-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transform: rotate(3.205deg);
}

.heho-infinite-banner__text {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 100px;
    line-height: 100px;
    color: var(--color-white);
    margin-right: 100px;
    text-transform: none;
}

.heho-infinite-banner__arrow {
    font-family: var(--font-base);
    font-size: 16px;
    color: #00d9ff;
    margin-right: 100px;
    transform: rotate(-2.279deg);
    position: relative;
}

/* Animation supprimée - bannière statique */

/* Responsive */
@media (max-width: 1200px) {
    .heho-infinite-banner {
        height: 200px;
    }
    
    .heho-infinite-banner__text {
        font-size: 80px;
        line-height: 80px;
        margin-right: 80px;
    }
    
    .heho-infinite-banner__arrow {
        margin-right: 80px;
    }
}

@media (max-width: 768px) {
    .heho-infinite-banner {
        height: 150px;
    }
    
    .heho-infinite-banner__text {
        font-size: 60px;
        line-height: 60px;
        margin-right: 60px;
    }
    
    .heho-infinite-banner__arrow {
        font-size: 14px;
        margin-right: 60px;
    }
}

@media (max-width: 480px) {
    .heho-infinite-banner {
        height: 120px;
    }
    
    .heho-infinite-banner__text {
        font-size: 40px;
        line-height: 40px;
        margin-right: 40px;
    }
    
    .heho-infinite-banner__arrow {
        font-size: 12px;
        margin-right: 40px;
    }
}