/* Layout for cards */
.library-card {
    display: flex;
    margin: 2rem 0;
}

/* Layout for singles */
.library-single {
    margin: 2rem 0;
}

.library__info {
    display: flex;
}

.library__title {
    margin-top: 0;
}

.library__thumbnail {
    flex-shrink: 0;
    margin-right: 2rem;
}

.library__thumbnail img {
    border-radius: 50%;
    height: 100px;
    max-width: 100%;
    width: 100px;
    object-fit: cover;
    background-color: lightgray;
    margin: 0;
}

/* Category tags */

.library-card__categories {
    margin-top: 2rem;
}

.library-card__categories ul {
    padding-left: .5rem;
}

.library-card__grades, .library-card__subjects {
    display: flex;
    justify-content: start;
}

.library-card__categories li {
    display: inline;
}

/* Create comma separated tags for all but the last item */
.library-card__category + .library-card__category:before {
    content: ", "
}
