.hubx-jagged-banner-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    max-height: 650px;
    min-height: 320px;
    overflow: hidden;
    margin: 40px 0; /* Odstęp od innych elementów */
    /* clip-path jest dodawany inline przez PHP */
}

@media (max-width: 768px) {
    .hubx-jagged-banner-wrapper {
        height: 450px; /* Mniejsza wysokość na mobile, min-height 320px chroni środek */
    }
}

.hubx-jagged-banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hubx-jagged-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hubx-jagged-slide.active {
    opacity: 1;
    z-index: 2;
}
