.text-with-images__mini-header {
    font-size: var(--font-size-h6);
    text-align: center;
}
h2.text-with-images__header {
    font-size: var(--font-size-h2);
    text-align: center;
    font-weight: 600;
    color: black;
    margin: 0;
}
.text-with-images__bottom {
    display: grid;
    grid-template-columns: calc(50% - var(--spacing-lg) / 2) calc(50% - var(--spacing-lg) / 2);
    gap: var(--spacing-lg);
    align-items: center;
}
.text-with-images {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.text-with-images .swiper-slide img {
    aspect-ratio: 1/1.2;
    object-fit: cover;
}

.text-with-images__images {
    display: flex;
    gap: 20px;
}
.text-with-images__images img {
    width: calc(50% - 10px);
}
.imaged-1 .text-with-images__images {
    display: block;
}
.imaged-1 .text-with-images__images img {
    width: 100%;
}
.order--obraz-tekst .text-with-images__col--images {
    order: -1;
}

@media screen and (max-width: 1300px){
    .order--obraz-tekst .text-with-images__bottom {
        grid-template-columns: calc(35% - var(--spacing-lg) / 2) calc(65% - var(--spacing-lg) / 2);
    }
}
@media screen and (max-width: 1300px){
    .text-with-images__bottom {
        grid-template-columns: calc(65% - var(--spacing-lg) / 2) calc(35% - var(--spacing-lg) / 2);
    }
}
@media screen and (max-width: 992px){
    .text-with-images__bottom {
        grid-template-columns: 100% !important;
    }
}

