Hi there,
so that would be the number format detection on iOS devices converting that number to a link.
Theres a few options to stop it:
a. Tell the browser to not perform format detection on telephone numbers. With this PHP snippet
add_action( 'wp_head', function(){
?>
<meta name="format-detection" content="telephone=no">
<?php
});
OR
b. Edit that block and make it a Link and give it a specific link color.
OR
c. Select that block and in Advanced > Additional CSS Class(es) add no-to-telephone
Then add this CSS to your site:
.no-to-telephone a {
color: color: var(--base-3);
}