section.block-video{
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    position: relative;
    padding: 0;
}

.block-video video{
    display: block;
}
.block-video .video-grande{
    position: relative;
}
.inner-video{
    position: relative;
}
.item-video > img, .inner-video > img {
    border-radius: 0;
    min-height: 680px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 920px) {

    .block-video.is-style-responsive video{
        min-height: 400px;
        object-fit: cover;
    }
    .block-video.is-style-responsive img{
        height: auto;
        object-fit: contain;
    }

    .inner-video > img {
        height: 400px;
        min-height: auto;
        object-fit: cover;
    }
}

/* 16:9 aspect ratio overrides */
.item-video > img.aspect-16-9, 
.inner-video > img.aspect-16-9 {
    min-height: auto !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
}

@media (max-width: 920px) {
    .item-video > img.aspect-16-9, 
    .inner-video > img.aspect-16-9 {
        height: auto !important;
        min-height: auto !important;
        aspect-ratio: 16/9 !important;
    }
}

/* Patient Text Card Overlay with Glassmorphism */
.patient-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4% 6%;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
}

.patient-text-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 36px;
    border-radius: 20px;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
    pointer-events: auto;
}

.patient-text-quote {
    font-family: "Saans", sans-serif;
    font-size: 19px;
    line-height: 1.5;
    color: #2A2822;
    font-weight: 400;
    margin: 0;
}

/* Tablet & Mobile responsive styles for the overlay */
@media (max-width: 920px) {
    .patient-text-overlay {
        position: relative;
        padding: 32px 24px;
        height: auto;
        display: block;
        background-color: #FAF6F0;
        pointer-events: auto;
    }

    .patient-text-card {
        max-width: 100%;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        text-align: center;
    }

    .patient-text-quote {
        font-size: 16px;
        line-height: 1.6;
        color: #2A2822;
        font-weight: 400;
    }
}