.block-cbg-video-testimonials {
    padding: 80px 0;
    background: #f7f7f7;
}

/* Header Styles */
.testimonials-header {
    margin-bottom: 50px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: #304366;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-subtitle p {
    margin: 0;
}

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

.testimonial-slide {
    padding: 0 15px;
    outline: none;
}

.testimonial-item {
    margin-bottom: 20px;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    margin-bottom: 25px;
}

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

/* Testimonial Name */
.testimonial-name {
    text-align: center;
    margin-top: 20px;
}

.testimonial-name p {
    font-size: 20px;
    font-weight: 600;
    color: #304366;
    margin: 0;
}

/* Slick Dots */
.testimonials-slider .slick-dots {
    bottom: -40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.testimonials-slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
}

.testimonials-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #dee2e6;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-dots li button:before {
    display: none;
}

.testimonials-slider .slick-dots li.slick-active button {
    background-color: #64c8d0;
    transform: scale(1.1);
}

/* No Testimonials Message */
.no-testimonials {
    padding: 40px 0;
    color: #6c757d;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .block-cbg-video-testimonials {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .block-cbg-video-testimonials {
        padding: 50px 0;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-subtitle {
        font-size: 15px;
    }

    .video-wrapper {
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .testimonial-name p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonial-name p {
        font-size: 16px;
    }
}