#1. First, use this code to Code Injection > Foote
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('<span class="border-img"></span>').insertBefore('img.author-avatar-image');
$('<span class="border-img-bottom"></span>').insertAfter('img.author-avatar-image');
});
</script>

#2. Next, use this code to Custom CSS
div.blog-item-author-profile-wrapper {
background-color: #ebe9e3;
border: 1px solid #2f3334;
border-radius: 5px;
padding: 20px 30px 30px 30px;
position: relative;
margin-top: 0px !important;
justify-content: center !important;
align-items: center !important;
padding-top: 60px !important;
}
span.author-avatar.content-fill {
border-radius: 0 !important;
border-top-left-radius: 50% !important;
border-top-right-radius: 50% !important;
position: absolute;
top: -60px;
z-index: 9999999;
left: 50%;
transform: translatex(-50%);
margin-top: 0 !important;
border: none;
padding: 10px;
background-color: #eae9e4;
}
span.border-img, span.border-img-bottom {
position: absolute;
top: 0;
width: 118px;
height: 119px;
left: 0;
right: 0;
border: 1px solid #2f3334;
border-top-left-radius: 50%;
border-top-right-radius: 50%;
border-bottom:0;
}
span.author-avatar img {
z-index: 9999999;
width: 100% !important;
height: 99px !important;
}
span.border-img-bottom {
top: unset;
border: none;
width: 250px !important;
background-color: #ebe9e3;
border-radius: 0 !important;
top: 60px;
z-index: 1;
}
.blog-item-wrapper .author-name {
display: block;
}
