Change position icons featured

Please try this PHP code snippet

add_filter(
    'hivepress/v1/templates/listing_view_block', 
	function ($template) {
		return hivepress()->template->merge_blocks(
			$template,
			[
				'listing_content' => [
                   'blocks' => [
                   'listing_featured_badge_custom' => [
						'type'   => 'part',
						'path'   => 'listing/view/listing-featured-badge',
						'_order' => 15,
               ]        
            ]
         ]
			]
		);
	},
	1000
);

Also, please try to add this CSS code snippet

.hp-listing--view-block .hp-listing__content .hp-listing__featured-badge{
	position: unset;
}