.vertical-videos-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    box-sizing: border-box;
    overflow: hidden;
}

.vertical-videos-section .vv-section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    padding: 0 24px;
}

.vertical-videos-section .vv-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.vertical-videos-section .vv-viewport {
    overflow: hidden;
    width: 100%;
    flex: 1;
    padding: 30px 0 50px;
    touch-action: manipulation;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.vertical-videos-section .vv-viewport.is-dragging {
    cursor: grabbing;
    touch-action: none;
}

.vertical-videos-section .vv-track {
    display: flex;
    align-items: center;
    width: max-content;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.vertical-videos-section .vv-slide {
    flex: 0 0 auto;
    padding: 0 12px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
    transform: scale(0.78);
    opacity: 0.5;
    transform-origin: center center;
}

.vertical-videos-section .vv-slide:first-child {
    padding-left: 0;
}

.vertical-videos-section .vv-slide.is-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.vertical-videos-section .vv-card {
    position: relative;
    height: clamp(340px, 68vh, 700px);
    width: auto;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    background: #2f3438;
    box-shadow: 0 24px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.vertical-videos-section .vv-slide.is-active .vv-card {
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.vertical-videos-section .vv-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #2f3438;
    pointer-events: none;
    -webkit-touch-callout: none;
}

.vertical-videos-section .vv-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 22px 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.vertical-videos-section .vv-slide.is-active .vv-overlay {
    opacity: 1;
    transform: translateY(0);
}

.vertical-videos-section .vv-tag {
    display: inline-block;
    padding: 7px 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.vertical-videos-section .vv-title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.1;
}

.vertical-videos-section .vv-description {
    margin: 0;
    font-size: clamp(12px, 1.4vw, 15px);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.vertical-videos-section .vv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    margin: -31px 0 0 -31px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    z-index: 4;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.vertical-videos-section .vv-slide.is-active .vv-play-btn.is-playing {
    opacity: 0;
    pointer-events: none;
}

.vertical-videos-section .vv-slide.is-active .vv-card:hover .vv-play-btn.is-playing {
    opacity: 1;
    pointer-events: auto;
}

.vertical-videos-section .vv-play-btn.is-playing::after {
    left: 50%;
    width: 14px;
    height: 16px;
    border: none;
    background: linear-gradient(to right, #1f2428 0 38%, transparent 38% 62%, #1f2428 62% 100%);
}

.vertical-videos-section .vv-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #1f2428;
}

.vertical-videos-section .vv-dots {
    margin-top: auto;
    padding-top: 10px;
}

.vertical-videos-section .vv-dots.owl-controls {
    text-align: center;
}

@media (max-width: 991px) {
    .vertical-videos-section {
        padding: 72px 0 40px;
    }

    .vertical-videos-section .vv-card {
        height: clamp(300px, 60vh, 580px);
    }

    .vertical-videos-section .vv-slide.is-active .vv-card {
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    }
}

@media (max-width: 767px) {
    .vertical-videos-section {
        min-height: 100svh;
        padding: 64px 0 32px;
    }

    .vertical-videos-section .vv-slide {
        padding: 0 8px;
        transform: scale(0.84);
    }

    .vertical-videos-section .vv-slide:first-child {
        padding-left: 0;
    }

    .vertical-videos-section .vv-slide.is-active {
        transform: scale(1);
    }

    .vertical-videos-section .vv-card {
        height: clamp(280px, 54vh, 500px);
    }

    .vertical-videos-section .vv-slide.is-active .vv-card {
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    }
}
