/* Estilos del slider en frontend */
.wp-video-slider-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5FE;
    font-family: Arial, sans-serif;
    color: white;
}
.wp-slider-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-video-slide {
    position: absolute;
    width: 300px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
    z-index: 1;
    filter: blur(5px);
    opacity: 0;
}
.wp-video-slide.active {
    z-index: 3;
    transform: translateX(0) scale(1);
    filter: blur(0px);
    opacity: 1;
}
.wp-video-slide.prev {
    z-index: 2;
    transform: translateX(-350px) scale(0.8);
    filter: blur(3px);
    opacity: 0.6;
}
.wp-video-slide.next {
    z-index: 2;
    transform: translateX(350px) scale(0.8);
    filter: blur(3px);
    opacity: 0.6;
}
.wp-video-slide.hidden {
    z-index: 1;
    transform: translateX(0) scale(0.6);
    filter: blur(5px);
    opacity: 0;
}
.wp-video-container {
    width: 100%;
    height: 490px;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.wp-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 490px;
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    border-radius: 20px 20px 0 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.wp-card-info {
    padding: 20px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wp-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #3B2A82;
    line-height: 1.2;
}
.wp-navigation-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    pointer-events: none;
    z-index: 10;
}
.wp-control-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    padding: 0;
}
.wp-control-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .wp-video-slider-container {
        min-height: 500px !important;
        padding: 20px 0 !important;
    }
    .wp-slider-wrapper {
        height: 450px !important;
    }
    .wp-video-slide {
        width: 250px !important;
        height: 450px !important;
    }
    .wp-video-slide .wp-video-container {
        height: 340px !important;
    }
    .wp-video-slide .wp-card-info {
        height: 50px !important;
        padding: 15px !important;
    }
    .wp-video-slide .wp-card-title {
        font-size: 16px !important;
    }
    .wp-video-slide.prev {
        transform: translateX(-280px) scale(0.7) !important;
    }
    .wp-video-slide.next {
        transform: translateX(280px) scale(0.7) !important;
    }
    .wp-navigation-controls {
        width: 320px !important;
    }
    .wp-control-btn img {
        width: 25px !important;
        height: 25px !important;
    }
}
/* Estilos del editor */
.cw-video-slider-editor {
    margin: 20px 0;
}
.cw-video-slider-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.cw-video-slider-item-editor {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.cw-video-slider-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #eee;
}
.cw-video-slider-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cw-video-slider-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


/*# sourceMappingURL=cw_video_slider.min.css.map*/