.ynt-ticker {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ynt-ticker__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.9rem;
    padding: 0.6rem 1.25rem;
}

.ynt-ticker__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--bn-accent-alt, #f3bf36);
}

.ynt-ticker__label::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 0.5rem;
    background: var(--bn-accent, #d42e12);
    box-shadow: 0 0 0 5px rgba(212, 46, 18, 0.2);
}

.ynt-ticker__viewport {
    overflow: hidden;
    min-width: 0;
}

.ynt-ticker__track {
    display: inline-flex;
    align-items: center;
    gap: 1.35rem;
    white-space: nowrap;
    min-width: max-content;
    will-change: transform;
    animation: ynt-scroll var(--ynt-duration, 42s) linear infinite;
}

.ynt-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 1.35rem;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ynt-ticker__item::after {
    content: "\2022";
    color: var(--bn-accent, #d42e12);
}

.ynt-ticker__item a,
.ynt-ticker__item span {
    color: #fff;
    text-decoration: none;
}

.ynt-ticker__item a:hover {
    color: var(--bn-accent-alt, #f3bf36);
    text-decoration: none;
}

@keyframes ynt-scroll {
    from {
        transform: translateX(0);
    }

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

@media (max-width: 640px) {
    .ynt-ticker__inner {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        padding: 0.55rem 1rem;
    }

    .ynt-ticker__label {
        justify-self: start;
        font-size: 0.9rem;
    }
}
