.motimowa-300 {
    min-height: 80px !important;
}
.motimowa-600 {
    min-height: 160px !important;
}


.motimowa-opacity img {
    opacity: 0.5; /* 0.0 – 1.0 */
}
.motimowa-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.motimowa-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- MOBILE FIX: iPhone / Android --- */
@media only screen and (max-width: 767px) {

    /* Kontener musi sam ustawić proporcje */
    .motimowa-video-bg {
        width: 100%;
        height: 100%;
    }

    /* Mobilna wersja wideo – dopasowane do szerokości */
    .motimowa-video-bg video {
        width: 100vw !important;
        height: auto !important;
        min-height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
    }
}