/* public/styles/front/books.css */
.Books .wrapper{
    display: grid;
    grid-template-columns: calc(25% - 11.25px) calc(25% - 11.25px) 
                           calc(25% - 11.25px) calc(25% - 11.25px);
    grid-gap: 15px;
    padding: 15px;
    background: white;
}

.Books .wrapper a{
    display: block;
    width: 100%;
    position: relative;
    padding-top: 140.26%;
}

.Books .wrapper a img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    float: left;
}

.Books .pagination{
    background: white;
    text-align: center;
}

.Books .pagination img:hover{
    cursor: pointer;
    opacity: .7;
}

@media only screen and (max-width: 600px){
    .Books .wrapper{
        grid-template-columns: 100%;
    }
}