To add a phone number on right of Logo, you can do these
#1. Use this code to Custom CSS box.
a.header-phone {
font-size: 20px;
color: #000;
margin-left: 10px;
}
div.header-title>div {
display: flex;
align-items: center;
justify-content: center;
}

#2. Use this code to Code Injection > Footer
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('<a href="tel:0123456789" class="header-phone">Call: 0123.456.789</a>').insertAfter('div.header-title a');
});
</script>

#3. Result
