.books-index-page .books-library > .np-wrap {
  max-width: 1440px;
}

.books-index-page .books-catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
}

.books-index-page .book-info h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (min-width: 1500px) {
  .books-index-page .books-catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .books-index-page .books-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .books-index-page .books-catalog {
    grid-template-columns: 1fr;
  }
}
