diff --git a/_layouts/post.html b/_layouts/post.html
index f0b3ba62..516c93a4 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -11,7 +11,7 @@
     <div class="container">
       <div class="post__headline common-headline">
         <h5>{{ page.date | date: '%A, %B %-d, %Y' }}</h5>
-        <h2>{{ page.title | strip_html }}</h2>
+        <h1>{{ page.title | strip_html }}</h1>
 {% if page.author %}
         <h6>Posted by {{ page.author }}</h6>
 {% endif %}
diff --git a/_sass/modules/_post.scss b/_sass/modules/_post.scss
index 79ae6131..f1f6070c 100755
--- a/_sass/modules/_post.scss
+++ b/_sass/modules/_post.scss
@@ -12,6 +12,20 @@
     margin: -7px 30px -6px 30px;
     text-align: center;
 
+    h1 {
+      color: $color-red;
+      font-size: 39px;
+      @media (max-width: 800px) {
+        font-size: 32px;
+      }
+      @media (max-width: 600px) {
+        font-size: 28px;
+      }
+      font-weight: 700;
+      letter-spacing: -0.01em;
+      line-height: 38px;
+    }
+    
     h5 {
       margin-bottom: 16px;
     }
diff --git a/category/foundation.html b/category/foundation.html
index e5241ab1..f3772b0b 100644
--- a/category/foundation.html
+++ b/category/foundation.html
@@ -10,7 +10,7 @@
 <div class="heading common-padding--bottom-small common-padding--top-small">
   <div class="container">
     <div class="heading__body">
-      <div class="heading__headline common-headline">
+      <div class="post__headline common-headline">
         <h1>{{ page.title }}</h1>
       </div>
     </div>
diff --git a/category/news.html b/category/news.html
index 78d9826d..94c10e43 100644
--- a/category/news.html
+++ b/category/news.html
@@ -10,7 +10,7 @@
 <div class="heading common-padding--bottom-small common-padding--top-small">
   <div class="container">
     <div class="heading__body">
-      <div class="heading__headline common-headline">
+      <div class="post__headline common-headline">
         <h1>{{ page.title }}</h1>
       </div>
     </div>
diff --git a/category/releases.html b/category/releases.html
index d1c8779a..a5ec4304 100644
--- a/category/releases.html
+++ b/category/releases.html
@@ -10,7 +10,7 @@
 <div class="heading common-padding--bottom-small common-padding--top-small">
   <div class="container">
     <div class="heading__body">
-      <div class="heading__headline common-headline">
+      <div class="post__headline common-headline">
         <h1>{{ page.title }}</h1>
       </div>
     </div>