<% if city.latest_weather_art&.image&.attached? %>
<%= image_tag city.latest_weather_art.image, class: "w-full h-full object-cover transform group-hover:scale-105 transition-transform duration-500" %>

<%= city.name %>

<%= city.country.name %>, <%= city.region.name %>

<% else %>

<%= city.name %>

<%= city.country.name %>, <%= city.region.name %>

Lat: <%= city.latitude %> Long: <%= city.longitude %>
<% end %>
<%= city.timezone %>
<% if city.latest_weather_art %>
<%= city.latest_weather_art.weather_date.strftime("%b %d, %Y") %>
<% end %>
<%= link_to "View Details", city_path(city), class: "btn btn-primary btn-sm" %>