/* === LIVROS === */
.books__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.book-card,
.book-card .product-card__image-link,
.book-card .product-card__body {
  background: var(--color-surface);
}

.book-card .product-card__image-link {
  background: var(--color-page);
}

.book-card .product-card__image-link img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  padding: 0;
  background-color: transparent;
  mix-blend-mode: multiply;
}

.book-card .btn {
  font-size: 0.84rem;
}

@media (max-width: 1120px) {
  .books__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .books__grid {
    grid-template-columns: 1fr;
  }
}
