
.book-shortlist-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: start;
}

.book-card {
  width: 160px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
  padding: 10px;
  transition: transform 0.2s ease;
}

.book-card:hover {
  transform: translateY(-5px);
}

.book-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.ebs-shortlist-container .book-title {
  color: #7f3427;
    display: block;
    font-family: Besley, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}
.book-img{
  height: 216px;
  min-height: 216px;
  max-height: 216px;
  object-fit: contain;
  width: 100%;
}

.book-author {
      font-family: "DM Sans", Sans-serif;
    font-size: 13px;
    line-height: 15px;
    color: #1B1B1B;
    transition: color 0.3s;
}
.book-translator{
  font-family: "DM Sans", Sans-serif;
    font-size: 13px;
    line-height: 15px;
    color: #868e96;
    transition: color 0.3s;
}
.book-publisher{
      font-family: "DM Sans", Sans-serif;
    font-size: 13px;
    line-height: 15px;
}
.ebs-shortlist-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

@media (max-width: 1024px) {
  .ebs-shortlist-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .ebs-shortlist-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ebs-shortlist-card{
  box-shadow: 0px 10px 35px -7px rgba(0, 0, 0, 0.12);
  padding: 10px;
}
