.text-image {
    padding: 64px 0;
    position: relative;
}

.text-image .column-wrapper {
    display: flex;
    gap: 48px;
    padding: 32px 0;
}

.text-image.block-centered .column-wrapper {
    align-items: center;
}

.text-image .column-wrapper>* {
    width: 50%;
    text-align: left;
    flex: 1 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.text-image .column-text {
    color: var(--Color-1);
    font-variant-numeric: lining-nums proportional-nums;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.00);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.text-image .column-text h1,
.text-image .column-text h2,
.text-image .column-text h3,
.text-image .column-text h4,
.text-image .column-text h5,
.text-image .column-text h6 {
    color: var(--Color-1);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.00);
    font-family: "Familjen Grotesk";
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.803px;
    text-transform: uppercase;
}

@media (max-width:1199px) {
    .text-image {
        padding: 48px 0
    }
}

@media (min-width:991px) {
    .text-image.block-reversed .column-wrapper {
        flex-direction: row-reverse;
    }

    /* to najwyzej do usuniecia */
    .text-image:not(.block-reversed) .column-wrapper * {
        text-align: right;
    }
    /* to najwyzej do usuniecia */

    .text-image.block-reversed .column-wrapper * {
        text-align: left;
    }
}

@media (max-width:991px) {
    .text-image .column-wrapper {
        flex-wrap: wrap;
    }

    .text-image .column-wrapper>* {
        width: 100%;
    }

    .text-image .column-text {
        font-size: 16px;
    }
}

@media (max-width:768px) {
    .text-image {
        padding: 48px 0;
    }
}