.testimonial-video-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.testimonial-video-nav button {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    background: #111;
    color: #fff;
    transition: all 0.3s ease;
}

.testimonial-video-nav button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.video-testimonial-card {
    background: #0f0f0f;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    overflow: hidden;
    background: #000;
}

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

.video-testimonial-info {
    padding: 22px 22px 26px;
}

.video-testimonial-info h4 {
    margin-bottom: 10px;
    color: #fff;
}

.video-testimonial-info p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.75);
}

.testimonial-video-carousel .swiper-slide {
    height: auto;
}

@media (max-width: 767px) {
    .testimonial-video-nav {
        justify-content: flex-start;
        margin-top: 20px;
    }
}