/*AUTHOR*/
.author-post {padding: 35px 0; display: grid; grid-template-areas: "image info" "description description"; grid-template-columns: minmax(75px,auto) 1fr; gap: 10px 10px; margin-top: 30px; border-top: 5px solid #e9e9e9;}
.author-post .author-image {grid-area: image; width: 75px; height: 75px; border-radius: 50%; overflow: hidden;}
.author-post .author-image .img {width: 100%}
.author-post .author-info {grid-area: info;}
.author-post .author-name a,
.author-post .author-name span {display: block; margin: 5px 0; font-size: 21px; font-weight: bold; color: #464646;}
.author-post .author-social {display: block; margin-top: 10px;}
.author-post .author-description {grid-area: description; font-size: 16px; line-height: 18px; color: #767676;}
.author-post .author-role {font-size: 16px; font-weight: 600; color: #464646; line-height: 26px;float: left; margin-right: 3px;}
.author-post .author-space {float: left; color: #464646; margin-right: 2px;}

@media (min-width: 576px)
{
    .author-post .author-social {display: block; margin-top: 0px;}

    .author-post .author-name a,
    .author-post .author-name span {font-size: 22px}
}
/*FIM AUTHOR*/