Hi,
I found a couple of issues in the EventArticle.cshtml template.
- Address fields are being outputted outside the blocks, appearing randomly on the page and breaking the template
 


- Post code is being outputted first in the Address, which doesn't match any typical address format.
 
It's being outputted as:
Post Code, StreetAddress
City, Region, Country

For European standard format, it should be:
StreetAddress,
Post Code, City, Region (if any)
Country
And for American/Canadian, it should be:
StreetAddress,
City, Region/State, PostCode
Country
Regards