/* ticker container */
#cleanTickerTrack {
    display: inline-flex;
    gap: 2rem;
    transform: translateX(0);
}

.clean-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    color: #92400e;
    /* yellow-700-ish */
    text-decoration: none;
}

/* subtle hover */
.clean-ticker-item:hover {
    text-decoration: underline;
}

/* ensure no extra outlines (removes the circled look from devtools screenshot) */
.clean-ticker-item:focus {
    outline: none;
    box-shadow: none;
}

/* keep the rounded container look */
.rounded-xl {
    border-radius: 12px;
}
