/* Video Testimonial Card – 71ae60eb */

.vtc-71ae60eb-card {
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.vtc-71ae60eb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Video Area */
.vtc-71ae60eb-video-wrap {
    position: relative;
    overflow: hidden;
    background: #000;
}

.vtc-71ae60eb-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

.vtc-71ae60eb-video-wrap.vtc-playing .vtc-71ae60eb-thumb {
    opacity: 0;
    pointer-events: none;
}

.vtc-71ae60eb-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.vtc-71ae60eb-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.vtc-71ae60eb-video-wrap.vtc-playing .vtc-71ae60eb-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* Video Container */
.vtc-71ae60eb-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.vtc-71ae60eb-video-container video,
.vtc-71ae60eb-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.vtc-71ae60eb-video-wrap.vtc-playing .vtc-71ae60eb-video-container {
    pointer-events: auto;
}

/* Unmute Hint */
.vtc-71ae60eb-unmute-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.vtc-71ae60eb-video-wrap.vtc-playing.vtc-muted .vtc-71ae60eb-unmute-hint {
    opacity: 1;
}

/* Info Section */
.vtc-71ae60eb-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vtc-71ae60eb-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vtc-71ae60eb-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.vtc-71ae60eb-reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vtc-71ae60eb-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.vtc-71ae60eb-title {
    font-size: 13px;
    line-height: 1.3;
}

.vtc-71ae60eb-quote {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}
