.author-block-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    color: #666666;
    flex-direction: column;
    gap:1rem;
    font-size: 1rem;
}

.author-block-wrapper .hb_author{
    text-align: start;
    display: flex;
    flex-direction: row;
    gap:1rem;
    align-items: center;
}

.hb_author_text a,
.hb_author_checked a {
    font-weight: normal;
    color:#666666;
}
.hb_author_text a:hover,
.hb_author_checked a:hover {
    color:#333333;
}

.hb_author img{
    width: auto !important;
    max-height: 60px;
    height: auto;
    border-radius: 9999px;
}
.hb_author_checked_check {
    margin-left: -17px;
}
.hb_author:has(img) + .hb_author_checked {
    padding-left: calc(60px + 1rem);
}
.hb_author_checked_more {
    display: block;
}

@media only screen and (min-width: 782px) {
    .author-block-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap:2rem;
    }
    .hb_author:has(img) + .hb_author_checked {
        padding-left: 0;
    }
}