.remove-bottom-space-0 {
		margin-bottom: 0 !important;
}

.remove-top-space-0 {
		margin-top: 0 !important;
}

/* ===== FORCE FULL WIDTH IMAGE + WAVE ===== */

/* wymuszenie pełnej szerokości niezależnie od kontenera */
.wp-block-image.pool-image-wave {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: visible;
}

/* obraz */
.wp-block-image.pool-image-wave img {
    width: 100%;
    height: auto;
    display: block;
}

/* fala */
.wp-block-image.pool-image-wave::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 140px;
    background: #ffffff;
    clip-path: path("M0,100 C200,140 400,40 700,90 C1000,140 1200,60 1440,100 L1440,200 L0,200 Z");
    pointer-events: none;
}