diff --git a/web/themes/ventuno/templates/content/node--digest-message.html.twig b/web/themes/ventuno/templates/content/node--digest-message.html.twig
index 4d0281c001ff50a487c5e81da847b566ed80684c..cf45ac8027f78ba1ff32ff0f1c94c08dfaad7b92 100644
--- a/web/themes/ventuno/templates/content/node--digest-message.html.twig
+++ b/web/themes/ventuno/templates/content/node--digest-message.html.twig
@@ -94,8 +94,8 @@
     <table role="presentation">
     <tbody>
       <tr>
-        <td>
-          <span class="d-flex bg-primary p-3 fw-bold fs-sm text-white text-uppercase">{{ publication_date }}</span>
+        <td class="bg-primary p-3">
+          <span class="d-inline-flex flex-row fw-bold fs-sm text-white text-uppercase">{{ publication_date }}</span>
         </td>
       </tr>
       <tr>
diff --git a/web/themes/ventuno/templates/parts/inline-styles.html.twig b/web/themes/ventuno/templates/parts/inline-styles.html.twig
index ceb63317aad96dee505aa800a7b4fc3df5a533e0..2e25109f37d2ab2c77ca59b0e80d134c37d7db95 100644
--- a/web/themes/ventuno/templates/parts/inline-styles.html.twig
+++ b/web/themes/ventuno/templates/parts/inline-styles.html.twig
@@ -71,6 +71,9 @@
     text-align: left;
     margin: 0 0 1rem;
   }
+  p time {
+    margin: 0 6px;
+  }
   .bg-primary {
     background: var(--bs-primary);
   }
@@ -128,6 +131,12 @@
   .d-flex {
     display: flex;
   }
+  .d-inline-flex {
+    display: inline-flex;
+  }
+  .flex-row {
+    flex-direction: row;
+  }
   .d-inline-block {
     display: inline-block;
   }