.book-cover {
  width: 160px;
  height: 220px;
  background: #f7f5f0; /* Цвет старой бумаги */
  border: 1px solid #d1cfc8;
  border-radius: 2px 5px 5px 2px;
  position: relative;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 20px 15px 20px 25px; /* Большой отступ слева под корешок */
  box-sizing: border-box;
  font-family: "Georgia", serif; /* Книжный шрифт */
}

/* Корешок с имитацией объема */
.spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  background: linear-gradient(to right, 
    rgba(0,0,0,0.15) 0%, 
    rgba(255,255,255,0.3) 50%, 
    rgba(0,0,0,0.05) 100%);
  border-right: 1px solid rgba(0,0,0,0.1);
}

.author {
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: bold;
}

.title {
  font-size: 14px;
  color: #222;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Обрезает текст после 5 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

