.vtx-hero-carousel-zone {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--vtx-clr-bg-deep);
    border-radius: var(--vtx-radius-sm);
    margin-bottom: 20px;
}

.vtx-carousel-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.vtx-carousel-slide {
    min-width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    padding: 40px;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.vtx-slide-visual {
    width: 45%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-top: var(--border-deep);
}

.vtx-slide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-transition: var(--vtx-transition-base);
    transition: var(--vtx-transition-base);
}

.vtx-slide-visual:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

.vtx-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    aspect-ratio: 1;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../../images/play.c0de2e0.png);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: var(--vtx-transition-base);
    transition: var(--vtx-transition-base);
}

.vtx-slide-data {
    width: 55%;
}

.vtx-slide-title {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.vtx-tag-badge {
    background: #fff;
    color: #000;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: bold;
    margin-right: 10px;
    white-space: nowrap;
}

.vtx-author-tag {
    font-size: 16px;
    margin: 10px 0;
    color: var(--vtx-clr-text-main);
    font-weight: 600;
}

.vtx-action-btn {
    background: var(--vtx-clr-accent);
    color: #000;
    border: none;
    padding: 10px 24px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    -webkit-transition: var(--vtx-transition-base);
    transition: var(--vtx-transition-base);
    white-space: nowrap;
}

.vtx-action-btn:hover {
    background: #fff;
}

.vtx-carousel-indicators {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    gap: 8px;
}

.vtx-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: var(--vtx-transition-base);
    transition: var(--vtx-transition-base);
}

.vtx-dot-active {
    background: var(--vtx-clr-text-main);
    box-shadow: 0 0 5px #fff;
}

.vtx-square-btn {
    width: 28px;
    height: 28px;
    background: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.vtx-square-btn:hover {
    background: var(--vtx-clr-accent, #fbc531);
}

.vtx-pill-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    gap: 6px;
    padding: 0 10px;
}

.vtx-pill-dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.vtx-pill-dot.active {
    width: 16px;
    background: #ffffff;
    border-radius: 3px;
}

.vtx-mid-slider-zone {
    position: relative;
    background: var(--vtx-clr-bg-deep);
    border-radius: var(--vtx-radius-sm);
    padding: 30px;
    margin: 30px 0;
    overflow: hidden;
    cursor: pointer;
}

.vtx-mid-track-wrapper {
    width: 100%;
    overflow: hidden;
}

.vtx-mid-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.vtx-mid-slide {
    min-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.vtx-mid-info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    padding-bottom: 40px;
}

.vtx-mid-visual {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.vtx-mid-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.vtx-mid-controls {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.vtx-sphere-carousel-zone {
    margin: 40px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.vtx-sphere-stage {
    position: relative;
    width: 100%;
    height: 260px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-perspective: 1000px;
            perspective: 1000px;
    overflow: hidden;
}

.vtx-sphere-item {
    position: absolute;
    width: 50%;
    max-width: 450px;
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vtx-sphere-item:hover img {
    cursor: pointer;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.vtx-sphere-item img {
    width: 100%;
    display: block;
    -webkit-transition: var(--vtx-transition-base);
    transition: var(--vtx-transition-base);
}

.vtx-sphere-active {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.vtx-sphere-prev {
    -webkit-transform: translateX(-65%) scale(0.8);
            transform: translateX(-65%) scale(0.8);
    opacity: 0.6;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.vtx-sphere-next {
    -webkit-transform: translateX(65%) scale(0.8);
            transform: translateX(65%) scale(0.8);
    opacity: 0.6;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.vtx-sphere-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin-top: 20px;
}

@media (max-width: 480px) {
    .vtx-mid-slide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
           -moz-box-orient: vertical;
           -moz-box-direction: reverse;
                flex-direction: column-reverse;
    }

    .vtx-mid-controls {
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }

    .vtx-mid-visual {
        min-height: 220px;
        aspect-ratio: auto;
    }

    .vtx-showcase-title {
        max-height: 60px;
        overflow: hidden;
    }

    .vtx-sphere-stage {
        height: 160px;
    }

    .vtx-dual-matrix .vtx-horiz-card:nth-child(n+7) {
        display: none;
    }

    .vtx-slide-title {
        font-size: 12px;
    }

    .vtx-slide-visual,
    .vtx-slide-data {
        width: 100%;
    }
}
