.text-image__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.text-image__inner-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
}

.text-image__image {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.text-image__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.text-image__heading * {
    color: #dff8eb;
}

.text-image__text * {
    color: #dff8eb;
}

.text-image__text a {
	color: #f2545b;
}

.text-image__text {
    margin-bottom: 1rem;
}

@media screen and (max-width: 991.98px) {
    .text-image__wrapper {
        flex-direction: column;
    }

    .text-image__inner-wrapper,
    .text-image__image {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .text-image__image img {
        max-height: 500px;
        width: 100%;
        min-height: 258px;
    }
}

@media screen and (max-width: 767.98px) {
    .text-image__wrapper {
        gap: 20px;
    }
}