.card-section {
  border: 0;
  background-size: cover; 
  background-position: center bottom;
  position: relative;
}

.card-section .card-body {
  min-height: 240px;
}

.card-section .card-name {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 15px;
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.card-book {
  background-color: rgba(255, 255, 255, .9);
}

.card-book .card-title {
  height: 60px;
  /*margin-bottom: .25rem;*/
  overflow: hidden;
  /*text-overflow: ellipsis;*/
}
.multiline-elipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.card-book .card-text {
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg-illustration {
  background-image: url('../img/bg-home.jpg'); 
  background-position: center bottom; 
  background-repeat: no-repeat;
}

@media screen and (min-width: 1140px) {
  .bg-illustration {
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .card-section .card-body {
    min-height: 150px;
  }
}