/* ── TVS Frontend Slider ── */
.tvs-slider-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
    display: flex;
    align-items: stretch;
}

/* Top / bottom fade masks */
.tvs-fade-top,
.tvs-fade-bottom {
    position: absolute;
    left: 0; right: 0;
    height: 120px;
    z-index: 10;
    pointer-events: none;
}
.tvs-fade-top    { top: 0;    background: linear-gradient(to bottom, var(--tvs-bg, #0d0d0d), transparent); }
.tvs-fade-bottom { bottom: 0; background: linear-gradient(to top,    var(--tvs-bg, #0d0d0d), transparent); }

/* Two-column layout */
.tvs-columns {
    display: flex;
    gap: 16px;
    width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
}
.tvs-col {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* The moving track — duplicated content for seamless loop */
.tvs-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 0;
    will-change: transform;
}

/* Cards */
.tvs-card {
    background: #161622;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 20px 20px 18px;
    transition: border-color .25s, transform .25s;
    cursor: default;
}
.tvs-card:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

/* Header row */
.tvs-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tvs-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.tvs-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    font-family: Georgia, serif;
}
.tvs-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tvs-name {
    color: #f0f0f0;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.tvs-verified {
    flex-shrink: 0;
    vertical-align: middle;
}
.tvs-handle {
    color: #666;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.tvs-quote {
    color: #c8c8d8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Pause on hover */
.tvs-col:hover .tvs-track { animation-play-state: paused !important; }
