/* ===== VIDEO TESTIMONIALS WIDGET ===== */
.summit-video-testimonials {
    padding: 60px 20px;
    /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ===== VIDEO WRAPPER ===== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #1e293b;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.client-avatar-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .client-avatar-large {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}

/* ===== TESTIMONIAL CONTENT ===== */
.testimonial-content {
    padding: 28px;
    position: relative;
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ffffff;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
}

/* ===== AUTHOR INFO ===== */
.testimonial-author {
    border-top: 2px solid #e2e8f0;
    padding-top: 16px;
}

.client-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 6px 0 !important;
}

.project-type {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .summit-video-testimonials {
        padding: 40px 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .client-name {
        font-size: 16px;
    }

    .project-type {
        font-size: 13px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}