.vsk-has-bg, 
.wp-block-group.vsk-has-bg {
    min-height: 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 20px; 
    z-index: 0;
}

.vsk-has-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--vsk-bg-url);
    background-size: cover;
    background-position: var(--vsk-pos, center center) !important;
    background-repeat: no-repeat;
    filter: blur(var(--vsk-blur, 0px));
    opacity: var(--vsk-opacity, 1);
    z-index: -1;
    transition: opacity 0.3s ease;
}

[style*="background-image"] {
    background-size: cover;
    background-position: center center;
}

.vsk-parallax, .vsk-parallax::before {
    background-attachment: fixed!important;
}


.vsk-has-bg > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .vsk-parallax::before {
        background-attachment: scroll !important;
    }
}