diff --git a/app/views/event_registrations/link_organization.html.erb b/app/views/event_registrations/link_organization.html.erb
index 53520ca02..6bb65e84f 100644
--- a/app/views/event_registrations/link_organization.html.erb
+++ b/app/views/event_registrations/link_organization.html.erb
@@ -43,20 +43,21 @@
<% multiple = present_entries.size > 1 %>
<% present_entries.each_with_index do |entry, i| %>
- -
- <%# Same green form-submission icon used on the registrants list, linking
- to this specific submission's public view. %>
+
-
+ <%# The whole card links to this specific submission's public view;
+ the green form-submission icon (also used on the registrants list)
+ sits inline as the affordance. %>
<%= link_to event_public_registration_path(@event_registration.event, **form_show_params, form_submission_id: entry[:submission].id, return_to: "link_organization", link_org_return_to: params[:return_to]),
target: "_blank", rel: "noopener",
- class: "text-green-600 hover:text-green-800 mt-1 shrink-0",
+ class: "flex items-start gap-2 group hover:text-green-800",
title: multiple ? "View submission ##{i + 1}" : "View form submission",
data: { turbo_frame: "_top" } do %>
-
+
+
+
Organization: <%= entry[:org_name].presence || "—" %><% if entry[:organization]&.city_state.present? %> · <%= entry[:organization].city_state %><% end %>
+
Position / title: <%= entry[:position].presence || "—" %>
+
<% end %>
-
-
Organization: <%= entry[:org_name].presence || "—" %><% if entry[:organization]&.city_state.present? %> · <%= entry[:organization].city_state %><% end %>
-
Position / title: <%= entry[:position].presence || "—" %>
-
<% end %>