.TextImage {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.TextImage__ImageContainer {
    flex: 0 1 auto;
    max-width: 539px;
}

.TextImage__Image--Desktop {
    display: none;
    height: auto;
}

.TextImage__Image--Mobile {
    width: 100%;
}

.TextImage__Content {
    flex: 0 1 auto;
}

.TextImage__Header {
    margin: 0 0 16px;
    padding: 0;
    font-size: 27px;
    line-height: 34px;
    color: var(--color-gray);
    background-color: transparent;
}

.TextImage__Text {
    margin: 16px 0;
    font-size: 18px;
    line-height: 25px;
}

.TextImage__Text p {
    margin: 16px 0;
}

.TextImage__Text h3 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 29px;
}

.TextImage__Text ul {
    margin: 16px 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.TextImage__Text li {
    margin: 24px 0;
    padding-left: 32px;
    font-size: 18px;
    line-height: 25px;
    background-image: url('../../Icons/icon-checkmark.svg');
    background-repeat: no-repeat;
    background-position: left top;
}

.TextImage__Text li:first-child {
    margin-top: 0;
}

.TextImage__Text li:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .TextImage {
        flex-wrap: nowrap;
    }

    .TextImage__Image--Mobile {
        display: none;
    }

    .TextImage__Image--Desktop {
        display: block;
    }

    .TextImage__Content {
        max-width: 445px;
    }
}
