Try this to change text:
function graphene_filter_inthissection( $translated, $original, $domain ) {
$strings = array(
'In this section' => 'Your text here',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_inthissection', 10, 3 );
And this to remove text:
.section-title-sm {
display: none
}