/*=========================================
Books
=========================================*/

.bilin-books{

    padding:120px 0;

    background:#F8FBFD;

}

.books-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.book-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.book-card:hover{

    transform:translateY(-8px);

}

.book-cover{

    height:250px;

    background:#0F8FB5;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:72px;

}

.book-content{

    padding:25px;

    text-align:center;

}

.book-content h3{

    color:#0F8FB5;

    margin-bottom:10px;

}

.book-content p{

    color:#666;

    margin-bottom:25px;

}

.book-actions{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.book-btn{

    display:block;

    padding:12px;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.book-btn.primary{

    background:#F59E0B;

    color:#fff;

}

.book-btn.primary:hover{

    background:#D97706;

}

.book-btn.secondary{

    border:2px solid #0F8FB5;

    color:#0F8FB5;

}

.book-btn.secondary:hover{

    background:#0F8FB5;

    color:#fff;

}

@media(max-width:992px){

.books-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.books-grid{

grid-template-columns:1fr;

}

}