.avp-post-authors{

    display:flex;
    flex-direction:column;
    gap:28px;

}

.avp-post-author{

    display:flex;
    align-items:center;
    gap:18px;

}

.avp-post-author-image{

    width:82px;
    height:82px;

    flex-shrink:0;

}

.avp-post-author-image img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    border-radius:50%;

    transition:
        border-radius .35s ease,
        transform .35s ease;

}

.avp-post-author:hover .avp-post-author-image img{

    border-radius:0;

}


.avp-post-author-content{

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.avp-post-author-name{

    position:relative;
    color:black;
    display:inline-block;
    width:fit-content;
    font-size:20px;
    line-height:1.05;
    text-decoration:none;

}

.avp-post-author-name::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-2px;

    width:100%;
    height:1px;

    background:currentColor;

    transform:scaleX(0);
    transform-origin:left;

    transition:transform .35s ease;

}

.avp-post-author:hover .avp-post-author-name::after{

    transform:scaleX(1);

}

.avp-post-author-position{

    margin-top:6px;
    font-size:15px;
    line-height:1.4;
	opacity:0.5;
	color:black;

}

