position: absolute; を使われているのが原因です。
h4:before に指定されている CSS を下記のものにご変更ください。
h4:before {
font-family: 'FontAwesome';
content: "\f0a9";
font-size: 1.75em;
position: relative;
left: 0;
top: 0.1em;
color: #FF9100;
margin-right: 8px;
}
最後の margin-right: 8px; でテキストとの余白を調整できます。
また、子テーマの style.css の 1 番下に、余計な } があります。これ以降に CSS を追加すると不具合が起きる可能性があるため、削除されることをおすすめします。