URLs Added to ACF Repeater Field are not working

Its because the wrapper around that text block is set to display: flex;.

You could override this by adding the following CSS…

.special-list .right-text {
    display: block;
}

You can add this in Admin > Appearance > Customize > Additional CSS

You might want to add this and then test other pages that use this code to make sure it doesn’t break anything else.