.responsive-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 1.5rem;
}

.book-cover-container {
    /*background-color: var(--bg-color);
    border: solid 2px var(--fg-color);*/
    max-width: 50%;
    /*border-radius: 12px;*/
    display: flex;
    flex: 1 1 25%;
    flex-direction: row;
}

.book-cover {
    background-size: cover;
    background-position: center;
    /*border-radius: 12px;*/
    overflow: hidden;
    position: relative;
    text-align: center;
    height: 220px;
    min-width: 130px;
}
.book-cover-img {
    background-size: cover;
    background-position: center;
    /*border-radius: 12px;*/
    overflow: hidden;
    position: relative;
    text-align: center;
    height: 220px;
    width: 110px;
    min-width: 130px;
}

.book-content {
    display: flex;
    flex-grow: 1;
    padding: 0 .8rem;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.title {
    font-weight: bold;
    line-height: 1.2;
}

.artist {
    font-size: small;
}

.dates {
    font-size: small;
    white-space: pre-line;
    margin: 0;
    overflow: visible;
}
.info {
    line-height: 1.5;
}

@media screen and (max-width: 600px) {
    .book-cover-container {
        flex-direction: row;
        max-width: 100%;
    }

    .book-content {
        flex-grow: 1;
        min-height: 0px;
        align-items: right;
        text-align: right;
        justify-content: right;
    }
    .dates {
        display: inline-block;
    }
}

progress::-moz-progress-bar { background: var(--color); }
progress::-webkit-progress-value { background: #50FA7B; }
progress {
    height: 12px;
    width: 100%;
    border: solid 2px var(--color);
    accent-color: var(--color);
    background-color: var(--background-color);
    margin-bottom: 0;
}