.contactContent {
    display: contents;
}
.contactContent__image {
    height: auto;
    max-width: 100%;
}
@media only screen and (min-width: 1050px) {

    .contactContent {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        width: 100%;
        max-width: 85rem;
        grid-template-areas: "a b";
        align-items: center;
        gap: 8px;
    }
    .contactContent__imageContainer{
        height: 0;
        min-height: 100%;
        grid-area: a;
    }
    .contactContent__image {
        height: 100%;
        max-height: 577px;
        width: auto;
    }
}