/* --- КАРТОЧКИ ДЛЯ БИБЛИОТЕКИ --- */

.biblio-list {
    display: flex;
    flex-direction: column;
    /* УПРАВЛЕНИЕ ОТСТУПОМ: теперь только здесь */
    gap: 12px; 
    margin: 12px 0 0 0 !important;
}

.biblio-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 10px; 
    border-radius: 8px;
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.biblio-card:hover {
    background: #fdfdfd;
    border-color: var(--card-tech);
}

.biblio-img {
    width: 60px !important;   
    height: 85px !important; 
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.biblio-info {
    flex: 1;
    min-width: 0;
}

/* ШРИФТЫ ДЛЯ ПК */
.biblio-info h3 {
    margin: 0 0 2px 0 !important;
    color: var(--card-tech);
    font-size: 1.15rem !important; 
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.biblio-author {
    display: block;
    font-weight: bold;
    font-size: 0.9rem; 
    color: #444;
    margin-bottom: 4px;
}

.biblio-desc {
    margin: 0;
    font-size: 0.85rem; 
    color: #666;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* МОБИЛЬНАЯ АДАПТАЦИЯ */
@media (max-width: 600px) {
    .biblio-img {
        width: 50px !important;
        height: 70px !important;
    }
    .biblio-info h3 {
        font-size: 1rem !important;
    }
    .biblio-author {
        font-size: 0.8rem;
    }
    .biblio-desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 2; 
    }
}
