.book-authors-list {
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.book-authors-list li.book-author a{
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

li.book-author img {
    width: 100%;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    aspect-ratio: 4 / 4;
}

li.book-author h3 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: rgb(35, 35, 35);
}

form.author-search-form {
    display: flex;
    margin: 40px 0px;
}