

.bookshelf {
    position: relative;
    margin: 40px auto;
    list-style: none;
    text-align: center;
}

.bookshelf figure {
    position: relative;
    display: inline-block;
    margin: 40px 0 0 0;
    width: 250px;
    vertical-align: top;
    text-align: center;
}

.bookshelf figure:hover .book{
    -webkit-transform:  scale(1.04);
    -moz-transform:     scale(1.04);
    -o-transform:       scale(1.04);
    transform:          scale(1.04);
    box-shadow: 0 5px 35px 0 rgba(0,0,0,.4);
}

.book {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 220px;
    height: 350px;
    box-shadow: 0 0 45px 0 rgba(70,70,70,.3);
    transition: all .3s cubic-bezier(.21,1.1,.96,.84);
    will-change: transform;
    background: url(img/a-paraitre.png) no-repeat center left;
    background-size: cover;
    color: white;
}

.bookshelf figcaption {
    display: inline-block;
    width: 220px;
    text-align: left;
}

.bookshelf figcaption h2 {
    font-family: 'Berling', serif;
    color: #00B1C7;
    font-size: 1.225em;
    line-height: 1em;
    margin-bottom: 0;
}

.bookshelf figcaption a{
    color: #00B1C7;
    transition: all .2s;
}

.bookshelf figcaption a::before{
   content: "";
   position: absolute;
   z-index: +1;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
}

.bookshelf figcaption a:hover,
.bookshelf figcaption a:focus{
    color: #EA6059;
}

.bookshelf figcaption h3 {
    color: black;
    font-weight: 800;
    font-size: 1em;
    line-height: 1em;
    margin-bottom: 8px;
    margin-top: 8px;
}

.bookshelf figcaption ul {
    position: relative;
    padding-top: 12px;
    font-size: .8em;
    line-height: 1.225em;
}

.bookshelf figcaption ul::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80px;
    height: 1px;
    background-color: #00B1C7;
    opacity: .5;
}

.bookshelf figcaption ul li:nth-child(1) {
    color: #00B1C7;
    font-style: italic;
    font-weight: 700;
}
