.wp-block-gallery.has-nested-images {
    position: relative;
    width: 100%;
    height: 600px;
    /*overflow: hidden; !* Обмеження виходу елементів за межі блоку *!*/
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
    position: absolute;
    margin: 0;
    transform-origin: center;
    transition: transform 0.3s ease, z-index 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: inherit;
    transition: transform 0.3s ease;
}

.wp-block-gallery.has-nested-images figure.wp-block-image.hovered {
    z-index: 10;
    transform: scale(1.2); /* Збільшення поточного елемента */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
