diff --git a/app/views/weather_arts/show.html.erb b/app/views/weather_arts/show.html.erb
index b1644c3..7491dda 100644
--- a/app/views/weather_arts/show.html.erb
+++ b/app/views/weather_arts/show.html.erb
@@ -46,6 +46,7 @@
<% watermarked = @weather_art.webp_image.processed %>
+ <% alt_text = "#{@weather_art.city.full_name} Weather Art - #{@weather_art.description} at #{@weather_art.temperature}°C on #{@weather_art.formatted_time(:date)}" %>
<%= link_to rails_blob_path(watermarked),
data: {
pswp_src: rails_blob_url(watermarked),
@@ -54,6 +55,7 @@
pswp_height: 1024
} do %>
<%= image_tag @weather_art.preview_image(:big).processed,
+ alt: alt_text,
class: "w-full h-auto object-cover transition-transform hover:scale-105 duration-300 ease-in-out" %>
<% end %>