/* Buch-Cards für das Literaturportal */

.kf-buch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 40px;
    margin: 30px 0;
}

@media (max-width: 600px) {
    .kf-buch-grid {
        grid-template-columns: 1fr;
    }
}

.kf-buch-card {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.kf-buch-cover {
    display: block;
    flex: 0 0 180px;
}

.kf-buch-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.kf-buch-content {
    flex: 1;
    min-width: 0;
}

.kf-buch-titel {
    font-size: 1.3rem;
    margin: 0 0 8px;
    line-height: 1.3;
}

.kf-buch-titel a {
    text-decoration: none;
    color: inherit;
}

.kf-buch-meta {
    font-size: 1rem;
    color: #888;
    margin-bottom: 8px;
}

.kf-buch-kurzbeschreibung {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}