.vt-ec46defb-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background-color: #f9f9f9;
}

.vt-ec46defb-swiper {
    width: 50%;
    height: 100%;
}

.vt-ec46defb-slide {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.vt-ec46defb-content-side {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    background: transparent;
    position: relative;
}

/* Rectangle pointer overlapping into the video side */
.vt-ec46defb-pointer {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: #f9f9f9;
    z-index: 10;
    box-shadow: 2px -2px 5px rgba(0,0,0,0.03);
    transition: background-color 0.3s ease;
}

/* Fixed right-hand video side with scroll fade observer */
.vt-ec46defb-video-side {
    width: 50%;
    position: relative;
    background-color: #000;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.vt-ec46defb-video-side.is-in-view {
    opacity: 1;
    transform: scale(1);
}

/* Videos are stacked absolutely inside the static video container */
.vt-ec46defb-video-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.vt-ec46defb-video-item.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.vt-ec46defb-video-player,
.vt-ec46defb-video-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vt-ec46defb-meta {
    margin-bottom: 20px;
}

.vt-ec46defb-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.vt-ec46defb-role {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.vt-ec46defb-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Nav arrows style */
.vt-ec46defb-swiper .swiper-button-next,
.vt-ec46defb-swiper .swiper-button-prev {
    color: #111111;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.vt-ec46defb-swiper .swiper-button-next::after,
.vt-ec46defb-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.vt-ec46defb-swiper .swiper-button-next {
    right: 20px;
}

.vt-ec46defb-swiper .swiper-button-prev {
    left: 20px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .vt-ec46defb-container {
        flex-direction: column-reverse;
    }
    .vt-ec46defb-swiper,
    .vt-ec46defb-video-side {
        width: 100%;
        height: 50%;
    }
    .vt-ec46defb-content-side {
        padding: 20px;
    }
    .vt-ec46defb-pointer {
        right: auto;
        left: 50%;
        top: -10px;
        transform: translateX(-50%) rotate(45deg);
        box-shadow: -2px -2px 5px rgba(0,0,0,0.03);
    }
}
