diff --git a/source/_patterns/04-components/card/card.twig b/source/_patterns/04-components/card/card.twig
index 6065c815093b13a85eb702e86784e93f9239a058..a325aa84c8292c119f3fad85a561219352532826 100644
--- a/source/_patterns/04-components/card/card.twig
+++ b/source/_patterns/04-components/card/card.twig
@@ -15,7 +15,7 @@
   {%  endif %}
 
   <div class="card__body">
-    {% if title or author or date or sub_title %}
+    {% if title or author or date or sub_title or position %}
       <div class="card__header">
         {% if date %}
           <div class="card__date">
diff --git a/source/_patterns/04-components/contact/contact.twig b/source/_patterns/04-components/contact/contact.twig
index f5b2d3286c6c319d830d3d128db1c4c51e5e7a78..ccb62563a0e9278e034ac9694beeb16c79613cef 100644
--- a/source/_patterns/04-components/contact/contact.twig
+++ b/source/_patterns/04-components/contact/contact.twig
@@ -11,9 +11,9 @@
           </a>
         </h2>
       {% endif %}
-      {% if contact.sub_title %}
+      {% if contact.position %}
         <span class="uw-contact__position">
-          {{ contact.sub_title }}
+          {{ contact.position }}
         </span>
       {% endif %}
     {% endblock %}