/*
 Theme Name:   GeneratePress Child
 Template:     generatepress
 Version:      1.0
*/
.buch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.buch-item {
    background: #f9f9ff;
    border: 1px solid #e1e1f0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.buch-item:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.buch-cover-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.buch-title {
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0 10px;
}

.buch-title a {
    color: #4b0082;
    text-decoration: none;
}

.buch-title a:hover {
    text-decoration: underline;
}

.buch-ueberblick {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
