diff --git a/blocks/_blog-post-featured-image.liquid b/blocks/_blog-post-featured-image.liquid
index f4fc47cf2..c09231270 100644
--- a/blocks/_blog-post-featured-image.liquid
+++ b/blocks/_blog-post-featured-image.liquid
@@ -7,39 +7,41 @@
assign image = closest.article.image
%}
-
- {%- capture image_border_style -%}
- {% render 'border-override', settings: block_settings %}
- {%- endcapture -%}
+{% if image != blank %}
+
+ {%- capture image_border_style -%}
+ {% render 'border-override', settings: block_settings %}
+ {%- endcapture -%}
- {{
- image
- | image_url: width: 3840
- | image_tag:
- width: image.width,
- widths: '240, 352, 832, 1200, 1600, 1920, 2560, 3840',
- height: image.height,
- class: 'blog-post-featured-image__image border-style',
- style: image_border_style,
- sizes: 'auto, (min-width: 750px) 100vw, 100vw',
- loading: 'eager',
- fetchpriority: 'high',
- alt: image.alt
- }}
-
+ {{
+ image
+ | image_url: width: 3840
+ | image_tag:
+ width: image.width,
+ widths: '240, 352, 832, 1200, 1600, 1920, 2560, 3840',
+ height: image.height,
+ class: 'blog-post-featured-image__image border-style',
+ style: image_border_style,
+ sizes: 'auto, (min-width: 750px) 100vw, 100vw',
+ loading: 'eager',
+ fetchpriority: 'high',
+ alt: image.alt
+ }}
+
+{% endif %}
{% stylesheet %}
.blog-post-featured-image {
diff --git a/sections/main-blog-post.liquid b/sections/main-blog-post.liquid
index e77758e07..6deb378e1 100644
--- a/sections/main-blog-post.liquid
+++ b/sections/main-blog-post.liquid
@@ -13,17 +13,6 @@
{% render 'spacing-style', settings: section.settings %}
"
>
-