.trusted-by-patients {
    padding: clamp(5rem, 8vw, 8.75rem) 0;
    background: #ffffff;
}

.trusted-by-patients__intro {
    max-width: 820px;
    margin: 0 auto clamp(3rem, 5vw, 5rem);
    text-align: center;
}

.trusted-by-patients__title {
    margin: 0;
    color: #000000;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.055em;
}

.trusted-by-patients__text {
    max-width: 760px;
    margin: 1rem auto 0;
    color: #000000;
    font-size: clamp(1.125rem, 1.45vw, 1.75rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.trusted-by-patients__content {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 8rem);
}

.trusted-by-patients__videos {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(.5rem, 1vw, 1rem);
}

.trusted-by-patients__slider {
    min-width: 0;
    touch-action: pan-y;
}

.trusted-by-patients__slide {
    display: none;
}

.trusted-by-patients__slide.is-active {
    display: block;
}

.trusted-by-patients__video {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #e8f6fd;
    cursor: pointer;
}

.trusted-by-patients__thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trusted-by-patients__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 2.625rem;
    color: #ffffff;
    background: #ff0000;
    border-radius: 0.625rem;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.trusted-by-patients__iframe {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: 0;
}

.trusted-by-patients__video.is-playing .trusted-by-patients__thumbnail,
.trusted-by-patients__video.is-playing .trusted-by-patients__play {
    opacity: 0;
}

.trusted-by-patients__video:hover .trusted-by-patients__play,
.trusted-by-patients__video:focus-visible .trusted-by-patients__play {
    transform: translate(-50%, -50%) scale(1.06);
}

.trusted-by-patients__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 0;
    border-radius: 0.75rem;
    color: #000000;
    background: #f1f1f1;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.trusted-by-patients__arrow:hover,
.trusted-by-patients__arrow:focus-visible {
    background: #e3f6ff;
    transform: translateY(-1px);
}

.trusted-by-patients__arrow[disabled] {
    opacity: 0.45;
    pointer-events: none;
}

.trusted-by-patients__dots {
    grid-column: 2;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.trusted-by-patients__dot {
    width: 3.5rem;
    height: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d6edf8;
    cursor: pointer;
}

.trusted-by-patients__dot.is-active {
    background: #000000;
}

.trusted-by-patients__info {
    display: grid;
    gap: clamp(1.5rem, 2vw, 2.25rem);
}

.trusted-by-patients__info-item {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
}

.trusted-by-patients__info-icon {
    display: block;
    width: 1.6rem;
    height: auto;
}

.trusted-by-patients__info-title {
    margin: 0 0 0.5rem;
    color: #000000;
    font-size: clamp(1.125rem, 1.15vw, 1.375rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.trusted-by-patients__info-text {
    max-width: 42rem;
    margin: 0;
    color: #000000;
    font-size: clamp(0.9375rem, 0.95vw, 1.125rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

@media (max-width: 991px) {
    .trusted-by-patients__content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .trusted-by-patients__videos {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    .trusted-by-patients__info {
        width: min(100%, 720px);
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .trusted-by-patients {
        padding: 4.5rem 0;
    }

    .trusted-by-patients__videos {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .trusted-by-patients__arrow {
        display: none;
    }

    .trusted-by-patients__dots {
        grid-column: 1;
        margin-top: 0;
    }

    .trusted-by-patients__dot {
        width: 2.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trusted-by-patients__play,
    .trusted-by-patients__arrow {
        transition: none;
    }
}
