

.employee-testimonials-video__title-wrap {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 120px;
}

.employee-testimonials-video__title-wrap .product-zone__title-container {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding: 14px 36px;
    background: rgba(0, 0, 0, 0.04);
}

.employee-testimonials-video__title-wrap .product-zone__title-container::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: var(--product-zone-title-border-gradient, linear-gradient(162deg, rgba(0, 0, 0, 0) 50%, var(--color-accent) 100%));
    mask: linear-gradient(var(--color-white) 0 0) content-box, linear-gradient(var(--color-white) 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.employee-testimonials-video__title-wrap .product-zone__title {
    color: var(--color-text);
    text-shadow: 0 0 20px var(--color-white);
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.employee-testimonials-video__player-wrap {
    overflow: hidden;
}

.employee-testimonials-video__player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: var(--color-black);
}

@media (min-width: 769px) {
    .employee-testimonials-video__player-wrap {
        height: 100vh;
        max-height: 100dvh;
    }

    .employee-testimonials-video__player {
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center bottom;
    }
}

@media (max-width: 768px) {
    .employee-testimonials-video__player {
        max-height: 100dvh;
    }
}

