/* Testimonials Slider Block - Basic Structure */
.testimonials-slider-block {
    width: 100%;
    background-color: #e3e3e3;
}

.testimonials-slider-block .container {

}

.testimonials-slider-block .row {
    display: flex;
    align-items: flex-start;
}

/* Video Column - 60% */
.testimonials-slider-block .video-column {
    flex: 0 0 67%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
    color: #666;
}

/* Testimonials Column - 40% */
.testimonials-slider-block .testimonials-column {
    height: 100%;
    padding: 40px;
}

.testimonials-title {
    margin: 0 0 45px 0;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.author-name {
    margin-bottom: 10px;
}

.testimonial-text {
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 15px;
}

.slider-prev,
.slider-next {
    background: transparent;
    border: none;
    width: 40px;
    height: 50px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-slider-block .row {
        flex-direction: column;
    }
    
    .testimonials-slider-block .video-column,
    .testimonials-slider-block .testimonials-column {
        flex: none;
        width: 100%;
    }
    
    .testimonials-title {
        font-size: 20px;
    }
    
    .author-name {
        font-size: 16px;
    }
}
.testimonials-slider-prev:hover,
.testimonials-slider-next:hover{
    background-color: transparent;
    opacity: .6;
}