diff --git a/app/assets/stylesheets/extranet/pages/_posts.sass b/app/assets/stylesheets/extranet/pages/_posts.sass
index 4c657e5294586185082f51b64274f1b31e69eb30..6eea8a17340e00de999c521dbfbdfe9291891dab 100644
--- a/app/assets/stylesheets/extranet/pages/_posts.sass
+++ b/app/assets/stylesheets/extranet/pages/_posts.sass
@@ -1,11 +1,6 @@
 .posts-show header
-    
     figure
         position: relative
-        @include media-breakpoint-up(md)
-            display: inline-block
-            padding-left: 2.813rem
-            width: 25%
         picture img
             width: 100%
         &.with-credit::after
diff --git a/app/views/extranet/posts/posts/show.html.erb b/app/views/extranet/posts/posts/show.html.erb
index 5d27810dee207752474cde9f953f80d1110c95ce..68c95674386c08bc7aa5e9b03073b8901f38c61b 100644
--- a/app/views/extranet/posts/posts/show.html.erb
+++ b/app/views/extranet/posts/posts/show.html.erb
@@ -1,24 +1,29 @@
 <% content_for :header do %>
-  <div class="header__info">
-    <h1><%= @post %></h1>
-    <% if @post.published_at %>
-      <p>Publié le <%= l @post.published_at.to_date, format: :long %></p>
-    <% end %>
-    <% if @post.category %>
-      <p>Catégorie : <%= link_to @post.category, posts_category_path(slug: @post.category.slug) %></p>
-    <% end %>
-  </div>
-  <div class="header__additional_data">
-    <% if @post.featured_image.attached? %>
-      <figure <% if @post.featured_image_credit.present? %>class="with-credit"<% end %>>
-        <%= kamifusen_tag @post.featured_image, class: 'img-fluid', width: 300 %>
-        <% if @post.featured_image_credit.present? %>
-          <figcaption tabindex="0">
-              <%= sanitize @post.featured_image_credit %>
-          </figcaption>
+  <div class="row">
+    <div class="header__info col-md-8">
+      <h1><%= @post %></h1>
+      <p class="small">
+        <% if @post.published_at %>
+          Publié le <%= l @post.published_at.to_date, format: :long %>
+        <% end %>
+        <% if @post.category %>
+          <br>
+          Catégorie : <%= link_to @post.category, posts_category_path(slug: @post.category.slug), class: "link" %>
         <% end %>
-      </figure>
-    <% end %>
+      </p>
+    </div>
+    <div class="col-md-4">
+      <% if @post.featured_image.attached? %>
+        <figure class="<% if @post.featured_image_credit.present? %>with-credit<% end %>">
+          <%= kamifusen_tag @post.featured_image, class: 'img-fluid', width: 300 %>
+          <% if @post.featured_image_credit.present? %>
+            <figcaption tabindex="0">
+                <%= sanitize @post.featured_image_credit %>
+            </figcaption>
+          <% end %>
+        </figure>
+      <% end %>
+    </div>
   </div>
 <% end %>