.books .books {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: flex-start;
}

.books .book {
  margin-bottom: 10px;
  margin-right: 5px;
  padding: 0;
  width: 32%;
  -webkit-box-shadow: 3px 3px 5px 0 #eee;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    3px 3px 5px 0 #eee;  /* Firefox 3.5 - 3.6 */
  box-shadow:         3px 3px 5px 0 #eee;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.books .book a {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-height: 190px;
  padding: 5px;
  text-decoration: none;
}

.books .book a:hover {
  background-color: #e7eef6;
}

.books .book img {
  margin: 0 10px 0 0;
  max-width: 120px!important;
  padding-right: 10px;
}

.books .book h4 {
  font-size: 95%;
  line-height: 125%;
  margin-top: 0;
}

@media (max-width: 767px) {
  .books .book {
    width: 48%;
  }

  .books .book h4 {
    font-size: 125%;
  }
}

@media (max-width: 479px) {
  .books .book {
    width: 100%;
  }
}
