.rt-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}


.rt-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.rt-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px 20px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.rt-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a9e5c;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.rt-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-content {
    overflow: hidden;
}

.rt-name {
    font-weight: 600;
    font-size: 14px;
    color: #222;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rt-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
