/* Remove hyphenation from paragraphs - Steve Format quick test 10 Apr 2020 */

/* To disable hyphenation on blog content */

/* Remove hyphenation from paragraphs */
.f_blog_post_header,
.f_blog_image_caption,
.f_blog_body, 
.f_blog_body_typography,
.f_blog_title,
.f_blog_title_in_post,
.f_blog_title_typography {
  hyphens: none!important; /* stop hyphenation for words breaking */
}

/* To remove hyphens in Safari */
.f_blog_post_header,
.f_blog_image_caption,
.f_blog_body, 
.f_blog_body_typography,
.f_blog_title,
.f_blog_title_in_post,
.f_blog_title_typography,
.f_blog_post p {
        -webkit-hyphens: none!important;
}

/* Ends */