.book-categories-badge-list {
    display: flex;
    margin: 0 -5px;
}

@media (max-width: 1024px) {
    .book-categories-badge-list--author {
        justify-content: center;
    }
}


.book-categories-badge-list__item {
    display: inline-block;
    padding:  5px 20px;
    border-radius: 20px;
    border: 2px solid white;
    background: transparent;
    margin: 0 5px;
    color: white;
    font-size: 15px;
    font-weight: 400;
}

.book-categories-badge-list__item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.book-categories-badge-list__item--active {
    background: white;
    color: #070A51;
}

.book-categories-badge-list__item--active:hover {
    background: #eee;
    color: #070A51;
}