.blog-authors {
    padding: 1rem;
}

.blog-authors h3 {
    margin-bottom: 1rem;
}

.blog-authors-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
}

.blog-authors .blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-authors .blog-author .blog-author-name {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-authors .blog-author .blog-author-name span:first-child {
    font-size: 16px;
    font-weight: bold;
}

.blog-authors .blog-author .blog-author-name span + span {
    color: grey;
    font-size: 14px;
}

.blog-authors .blog-author img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-authors .blog-author a {
    color: black;
}
