/* Video Left Content Right Block */
.acv-video-left-content-right {
    padding: 60px 0;
    background: #F1F2F2;
}

.acv-vlcr-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Video Column */
.acv-vlcr-video {
    flex: 0 0 50%;
    max-width: 50%;
}

.acv-vlcr-video-wrapper {
    position: relative;
    background: #f3f4f6;
    border-radius: 0;
    overflow: hidden;
}

.acv-vlcr-video-player {
    width: 100%;
    height: auto;
    display: block;
}

.acv-vlcr-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
    line-height: 0;
}

.acv-vlcr-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.acv-vlcr-play-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Video Controls */
.acv-vlcr-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 76, 92, 0.9);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.acv-vlcr-video-wrapper:hover .acv-vlcr-controls,
.acv-vlcr-video-wrapper.is-playing .acv-vlcr-controls {
    opacity: 1;
}

.acv-vlcr-control-play {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.acv-vlcr-control-play:hover {
    color: #ee7f2d;
}

.acv-vlcr-timeline {
    flex: 1;
    cursor: pointer;
}

.acv-vlcr-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.acv-vlcr-progress-bar {
    height: 100%;
    background: #ee7f2d;
    width: 0;
    transition: width 0.1s linear;
}

.acv-vlcr-time {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.acv-vlcr-time-separator {
    margin: 0 4px;
}

/* Content Column */
.acv-vlcr-content {
    flex: 1;
    min-width: 0;
}

.acv-vlcr-title {
    font-size: 2rem;
    font-weight: 200;
    color: #1d6b81;
    margin: 0 0 20px;
    line-height: 1.2;
}

.acv-vlcr-text {
    color: #27496d;
    font-size: 1rem;
    line-height: 1.6;
}

.acv-vlcr-text p {
    margin: 0 0 15px;
}

.acv-vlcr-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .acv-vlcr-container {
        gap: 40px;
    }

    .acv-vlcr-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .acv-video-left-content-right {
        padding: 40px 0;
    }

    .acv-vlcr-container {
        flex-direction: column;
        gap: 30px;
    }

    .acv-vlcr-video {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .acv-vlcr-title {
        font-size: 1.5rem;
    }

    .acv-vlcr-play-button svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .acv-vlcr-controls {
        padding: 10px 15px;
        gap: 10px;
    }

    .acv-vlcr-time {
        font-size: 11px;
    }

    .acv-vlcr-play-button svg {
        width: 40px;
        height: 40px;
    }
}
