.image-info__wrapper {
    width: 98rem;
}

.image-info__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
}

.image-info__image {
    flex: 0 0 auto;
    width: 44rem;
    max-width: 100%;
}

.image-info__content {
    gap: 3rem;
    flex: 1;
    max-width: 46rem;
}

@media screen and (max-width: 767.9px) {
    .image-info__inner {
        align-items: center;
        flex-direction: column;
    }

    .image-info__image {
        width: 60rem;
        max-width: 100%;
    }

    .image-info__content {
        max-width: 100%;
        gap: 2.2rem;
    }

    .image-info__content br {
        display: none;
    }
}