.book-container {
  width: 100%;
  transition: 0.4s;
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
}
.book-container:hover {
  transition: 0.4s;
  border-inline-start: initial;
}
.book-container .book-image {
  width: 100%;
  min-width: 131px;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
}
.book-container .book-details {
  display: flex;
  flex-direction: column;
  padding: 0.6rem;
  row-gap: 0.5rem;
}
.book-container .book-details p {
  margin: 0;
}
.book-container .book-details .book-title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.book-container .book-details .book-title .book-title {
  font-size: 1.2rem;
  font-weight: bold;
}
.book-container .book-details .book-title i {
  color: black;
  cursor: pointer;
}
.book-container .book-details .book-description-container {
  height: 3rem;
  overflow: hidden;
}
.book-container .book-details .book-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--success-color);
}
.book-container .book-details .btn {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
}

@media screen and (min-width: 768px) {
  .book-container {
    width: 49%;
    flex-direction: row;
  }
  .book-container .book-image {
    max-width: 170px;
  }
}/*# sourceMappingURL=book.css.map */