
.avatar-wrapper{
    border-radius: 999px;
    overflow: hidden;
    background-color: var(--pure-color-4);
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    position: relative;
}
    .avatar-wrapper .avatar-initials{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: var(--p-h1-fontsize);
        line-height: var(--p-h1-lineheight);
        color: var(--p-h1-color);
        font-weight: var(--p-h1-fontweight);
        z-index: 1;
    }
    .avatar-wrapper img{    
        width: 100%;
        height: 100%;
        display: grid;
        align-items: center;
        justify-items: center;
        font-size: calc(var(--p-h1-fontsize) * 1.50);
        font-weight: 500;
        color: var(--pure-color-2);
        position: absolute;
        z-index: 2;
    }
    .widget-account .avatar-initials{    
        font-size: var(--p-h3-fontsize);
    }