.vt-container-e6892922 {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: none; /* Hide default cursor to show custom one */
}

.vt-carousel-e6892922 {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
    --vt-slides: 3;
}

.vt-carousel-e6892922::-webkit-scrollbar {
    display: none;
}

.vt-carousel-e6892922.active {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.vt-card-e6892922 {
    flex: 0 0 calc((100% - ((var(--vt-slides) - 1) * 20px)) / var(--vt-slides));
    scroll-snap-align: center;
    position: relative;
}

.vt-card-inner-e6892922 {
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* 3:4 Aspect Ratio */
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(0.98);
    transition: transform 0.3s ease;
}

.vt-card-e6892922:hover .vt-card-inner-e6892922 {
    transform: scale(1);
}

.vt-video-e6892922, .vt-placeholder-e6892922 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-placeholder-e6892922 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    color: #666;
    font-weight: bold;
}

.vt-card-info-e6892922 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: #fff;
    z-index: 2;
    pointer-events: none;
}

.vt-name-e6892922 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.vt-role-e6892922 {
    font-size: 0.9rem;
    opacity: 0.8;
}

.vt-custom-cursor-e6892922 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: #000;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: exclusion;
}

.vt-custom-cursor-e6892922.visible {
    opacity: 1;
}

.vt-custom-cursor-e6892922.active {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.6);
}
