.rt-wrap {
    width: 100%;
    background: #f8faff;
    border-bottom: 0.5px solid #00306e;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    height: 48px;
    box-sizing: border-box;
}
.rt-badge {
    background: #D2093C;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 22px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}
.rt-badge::after {
    content: '';
    position: absolute;
    right: -14px; top: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 14px solid #D2093C;
    z-index: 3;
}
.rt-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    animation: rt-blink 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes rt-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.15; }
}
.rt-viewport {
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}
/* Fade kiri & kanan — pakai div terpisah, bukan ::before/::after pada parent */
.rt-fade-left {
    position: absolute;
    left: 0; top: 0;
    width: 48px; height: 100%;
    background: linear-gradient(to right, #f8faff 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
.rt-fade-right {
    position: absolute;
    right: 0; top: 0;
    width: 64px; height: 100%;
    background: linear-gradient(to left, #f8faff 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
.rt-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding-left: 32px;
}
.rt-track:hover {
    animation-play-state: paused !important;
}
@keyframes rt-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.rt-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-right: 52px;
    font-size: 13.5px;
}
.rt-item a {
    color: #1e293b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 5px;
    transition: background 0.18s, color 0.18s;
}
.rt-item a:hover {
    background: #dbeafe;
    color: #1d4ed8;
}
.rt-arrow {
    opacity: 0;
    transform: translateX(-3px);
    transition: opacity 0.18s, transform 0.18s;
    font-size: 11px;
    color: #1d4ed8;
    display: inline-block;
}
.rt-item a:hover .rt-arrow {
    opacity: 1;
    transform: translateX(0);
}
.rt-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rt-sep {
    margin-right: 52px;
    color: #cbd5e1;
    font-size: 15px;
    user-select: none;
}
@media (max-width: 767px) {
    .rt-badge {
        display: none;
    }
}

