.lct-ticker {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    box-sizing: border-box;
}

.lct-title {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.lct-viewport {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
}

.lct-track {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.lct-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.lct-item a:hover {
    text-decoration: underline;
}

.lct-date {
    margin-inline-start: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.lct-sep {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    user-select: none;
}

.lct-ticker.is-paused .lct-track {
    animation-play-state: paused;
}

@media (max-width: 640px) {
    .lct-title {
        display: none;
    }

    .lct-ticker {
        border-radius: 10px;
        padding: 10px;
    }

    .lct-item a {
        font-size: 13px;
    }
}
