.image-text-widget-wrapper-a83abd5b {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.image-text-widget-wrapper-a83abd5b .image-text-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.image-text-widget-wrapper-a83abd5b .image-text-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover; /* This makes images fill the space evenly */
}

.image-text-widget-wrapper-a83abd5b .image-text-content {
    flex: 1;
}

@media (max-width: 767px) {
    .image-text-widget-wrapper-a83abd5b {
        flex-direction: column;
    }
    
    .image-text-widget-wrapper-a83abd5b .image-text-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
}