/* styles complémentaires pour publications*/
/* et flèche */

/*----*/
/* liste de publications */
/*----*/

.book-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    /* new*/
}

.book-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    /*align-items: flex-start;*/
    /* Alignement haut */
}

/* petite ligne entre les livres */
.book-item+.book-item {
    border-top: 1px solid #ddd;
}

/* new*/
.book-cover {
    flex: 0 0 120px;
    min-height: 120px;
    max-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover_height {
    height: 120px;
    min-width: 120px;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Images : toujours contenues */
.book-cover img,
.book-cover_height img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid #ccc;
}

.book-content {
    flex: 1;
    padding-top: 4px;
    /* new Petit décalage */
}

.book-title {
    font-size: 1.1rem;
    margin: 0 0 4px;
    font-weight: 600;
}

.book-author {
    margin: 0 0 8px;
    color: #555;
    font-size: 0.95rem;
}

.book-desc {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

/*----*/
/* Responsive mobile - à revoir*/
/*----*/
@media (max-width: 640px) {
    /*à voir*/
}