.newsbar-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.newsbar-track {
    display: flex;
    white-space: nowrap;
    animation: child-newsbar-scroll 18s linear infinite;
}

/* Text + icon base style (Elementor will override typography & color) */
.newsbar-item,
.newsbar-icon {
    display: inline-flex;
    align-items: center;
    margin: 0 60px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.newsbar-icon svg {
    width: 20px;
    height: 20px;
}

/* Smooth infinite scroll */
@keyframes child-newsbar-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


