diff --git a/home/templates/home/home_people_page.html b/home/templates/home/home_people_page.html
index 1994ae91611a9ef6e5e5073a792848fcf1af1f66..f0ce67bbe138271935a8cf44509b4c55f663a746 100644
--- a/home/templates/home/home_people_page.html
+++ b/home/templates/home/home_people_page.html
@@ -14,15 +14,17 @@
 
         <ul class="flex flex-col gap-2 list-disc ml-3 font-serif">
             {% for person in page.people %}
-                <li class="flex flex-col">
-                    <a
-                        class="underline"
-                        href="{{ person.url }}"
-                    >{{ person.full_name }}</a>
+                <li>
+                    <div class="flex flex-col">
+                        <a
+                            class="underline"
+                            href="{{ person.url }}"
+                        >{{ person.full_name }}</a>
 
-                    {% if person.position %}
-                        <span class="text-gray-500">{{ person.inline_position }}</span>
-                    {% endif %}
+                        {% if person.position %}
+                            <span class="text-gray-500">{{ person.inline_position }}</span>
+                        {% endif %}
+                    </div>
                 </li>
             {% endfor %}
         </ul>