/* ==========================================================================
   MODULE: IMAGE-TEXT
   ========================================================================== */

.mod-image-text {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* --- OBRÁZOK A ZOOM EFEKT --- */
.mod-image-text .img-text-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    isolation: isolate;
}

.mod-image-text .img-text-image-wrapper img {
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Zoom efekt */
.mod-image-text .img-text-has-zoom:hover img {
    transform: scale(1.05) !important;
}

/* --- TEXTOVÉ WRAPPERY --- */
.mod-image-text .img-text-wrapper {
    padding: 3rem 5%;
}

.mod-image-text .img-text-wrapper-full {
    padding: 3rem 12%;
}

/* --- RESPONZIVITA --- */
@media (max-width: 991.98px) {
    .mod-image-text .img-text-image-wrapper img {
        height: 400px;
        object-fit: cover;
    }

    .mod-image-text .img-text-wrapper,
    .mod-image-text .img-text-wrapper-full {
        padding: 4rem 1.5rem !important;
        text-align: center;
    }
}