/* rs_css_override.css 
   genelillys.com website

   adding this additional css stylesheet to override the "important" 
   styling of Divi style.css (chld_thm_cfg_parent)
   - specifically the related items font on woocommerce
   		
   * added in functions.php file with following code

	//add additional css stylesheet to override the "important" styling of divi - specifically the related items font on woocommerce
	function override_chld_thm_cfg_parent_css() { 	
	        wp_enqueue_style( 'rs_css_override', 'https://genelillys.com/wp-content/themes/raving-software/rs_css_override.css', array(  ) );
	    }

	add_action( 'wp_enqueue_scripts', 'override_chld_thm_cfg_parent_css', 10 );

//
*/


h2.woocommerce-loop-product__title, 
h2.woocommerce-loop-product_title
.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product h3{
    font-size: 16px !important;
}