diff --git a/assets/sass/_theme/blocks/call_to_action.sass b/assets/sass/_theme/blocks/call_to_action.sass
index 88e29ae7010587efa74580a290c6cb2b4769059c..8624134c6933433ba14ce5782320a1c42fa2e89a 100644
--- a/assets/sass/_theme/blocks/call_to_action.sass
+++ b/assets/sass/_theme/blocks/call_to_action.sass
@@ -1,4 +1,5 @@
 .block-call_to_action
+    --cta-background-color: #{$block-call-to-action-background}
     @include in-page-with-or-without-sidebar
         h2, h3
             @include h5
@@ -35,7 +36,7 @@
             margin-top: calc(#{$spacing2} - #{$spacing1})
 
     @include media-breakpoint-down(desktop)
-        background-color: $block-call-to-action-background
+        background-color: var(--cta-background-color)
         .call_to_action
             padding: $spacing3 0
             .actions
@@ -61,12 +62,12 @@
                 > *
                     order: 2
                 > div
-                    background-color: $block-call-to-action-background
+                    background-color: var(--cta-background-color)
                     padding: col(1, 8)
                     width: 100%
                     position: relative
                     &::after
-                        background-color: $block-call-to-action-background
+                        background-color: var(--cta-background-color)
                         content: ''
                         display: block
                         position: absolute
@@ -88,7 +89,7 @@
   
         @include in-page-without-sidebar
             .block-content
-                background-color: $block-call-to-action-background
+                background-color: var(--cta-background-color)
                 padding: $spacing4 $grid-gutter
                 margin-left: -$grid-gutter
                 margin-right: -$grid-gutter
diff --git a/assets/sass/_theme/sections/authors.sass b/assets/sass/_theme/sections/authors.sass
index 58c1849da3ff379306c6fc879608401af43a258e..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644
--- a/assets/sass/_theme/sections/authors.sass
+++ b/assets/sass/_theme/sections/authors.sass
@@ -1,5 +0,0 @@
-.authors__term
-    .container
-        margin-top: $spacing2
-    .posts
-        @include grid(3, desktop)