.scrolling-text-ticker {
    background-color: #c8e8d8;
    overflow: hidden;
    padding: 10px 0;
}

.scrolling-text-ticker-track {
    display: flex;
    width: max-content;
    animation: scrolling-text-scroll 65s linear infinite;
}

.scrolling-text-ticker-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.scrolling-text-ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    font-size: 16px;
    font-weight: 600;
}

.scrolling-text-ticker-item::after {
    content: "•";
    margin-left: 40px;
    color: #1a3a6b;
    font-weight: 700;
}

.scrolling-text-ticker-item:last-child::after {
    content: "";
    margin-left: 0;
}

.scrolling-text-ticker-item span {
    color: #1a3a6b;
}

@keyframes scrolling-text-scroll {
    0% {
        transform: translateX(0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .scrolling-text-ticker-track {
        animation: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .scrolling-text-ticker-content[aria-hidden="true"] {
        display: none;
    }
}
