/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Round Corner on Blog Content Cards */
.blog-index__post img {
    border-radius: 10px 10px 0 0;
}
.hhs-blog-card-inner {
    border-radius: 10px;
}

/* Round Corner on All Images */
img {
  -webkit-border-radius: 10px;
  border-radius: 10px; !!important
}

/* Bold Numbers in Counter Module */
.hhs-counter-mod h2 {
font-weight: 700; !!important
}