/* Reset & Basis */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: Arial, sans-serif;
    background-color: #f9f4e5;
    color: #6d4b3b;
    line-height: 1.6;
}
header { text-align: center; margin-bottom: 30px; }
header h1 { font-size: 2.5rem; margin-bottom: 10px; }
header p { font-size: 1.1rem; color: #555; }
.filters { margin-top: 15px; }

/* Grid Buchliste */
.book-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Buchkarte */
.book {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
}
.book img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}
.book h2 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}
.book .author {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}
.book .desc {
  font-size: 0.9rem;
  color: #555;
  height: auto;
}