.half-text-half-images {
    background: #26296E;
    padding: 60px 0 0;
}

.half-text-half-images__inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-left: 22px;
    padding-right: 22px;
}

.half-text-half-images__content h1 {
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.half-text-half-images__content p {
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-top: 0;
}

.half-text-half-images__content p:last-child {
    margin-bottom: 0;
}

.half-text-half-images__images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -22px;
    margin-right: -22px;
}

.half-text-half-images__image-wrapper {
    width: 50%;
}

.half-text-half-images__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1200px) {
    .half-text-half-images {
        padding: 0;
    }

    .half-text-half-images__inner {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 0;
        max-width: calc(50% + (1368px / 2));
        margin-left: auto;
        margin-right: 0;
        padding-left: 22px;
        padding-right: 0;
    }

    .half-text-half-images__content {
        width: calc(1368px / 2);
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-right: 114px;
    }

    .half-text-half-images__content h1 {
        font-size: 70px;
        line-height: 84px;
    }

    .half-text-half-images__content p {
        font-size: 35px;
        line-height: 44px;
    }

    .half-text-half-images__images {
        flex: 1;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
    }
}