
.author {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
}

.author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid var(--bg-secondary);
}

.author .avatar>img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

.author .name {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.author .name .nickname {
    font-size: 14px;
    color: var(--text-primary);
    opacity: 0.9;
    font-weight: 600;
}

.author .name .resume {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.8;
}