ブログ記事の h3 にテーマ側で自動挿入されている ::before の左線装飾を無効化したいので、blog.css に以下を追加してください。

.single .entry-content h3::before,
.blog .entry-content h3::before {
    content: none !important;
    border: none !important;
    background: none !important;
}

.entry-content h3 {
    border-left: none !important;
    padding-left: 0 !important;
}
