.text-image-small__wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.text-image-small__inner-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
}

.text-image-small__image {
    display: flex;
    flex: 0 0 50%;
    max-width: 50%;
}

.text-image-small__image img {
    width: 100%;
    height: calc(238px + (322 - 238) * ((100vw - 992px) / (1440 - 992)));
    max-height: 322px;
    border-radius: 12px;
    object-fit: cover;
}

.text-image-small__heading * {
    color: #dff8eb;
}

.text-image-small__text * {
    color: #dff8eb;
}

.text-image-small__text {
    margin-bottom: 1rem;
}

@media screen and (max-width: 991.98px) {
    .text-image-small__wrapper {
        flex-direction: column;
        gap: 0;
    }

    .text-image-small__inner-wrapper,
    .text-image-small__image {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .text-image-small__image img {
        height: calc(159px + (500 - 159) * ((100vw - 340px) / (991.98 - 340)));
        width: 100%;
        max-height: 400px;
        min-height: 159px;
    }
}
