.th-blog-post-hero-case-study {
  {% if module.styles.section_background_type == "featured_image" and hero_featured_image %}
    background-image: url('');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;

  {% elif module.styles.section_background_type == "image" %}
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

  {% elif module.styles.section_background_type == "gradient" %}
    background: ;

  {% endif %}

  
}