/*
==========================================================
SUNU BIBLIOTHÈQUE
STYLE.CSS
VERSION 1.0
==========================================================
*/

.sb-library{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin:40px 0;

}

.sb-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

    display:flex;

    flex-direction:column;

}

.sb-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.sb-cover{

    position:relative;

    overflow:hidden;

}

.sb-cover img{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.sb-card:hover .sb-cover img{

    transform:scale(1.04);

}

.sb-content{

    padding:18px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.sb-content h3{

    font-size:18px;

    font-weight:700;

    line-height:1.4;

    margin:0 0 12px;

    min-height:50px;

}

.sb-content p{

    margin:0;

    color:#666;

    font-size:14px;

}

.sb-download{

    margin-top:auto;

    display:block;

    text-align:center;

    background:#116530;

    color:#ffffff;

    text-decoration:none;

    padding:12px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.sb-download:hover{

    background:#0b4722;

    color:#fff;

}

@media(max-width:1400px){

    .sb-library{

        grid-template-columns:repeat(5,1fr);

    }

}

@media(max-width:1200px){

    .sb-library{

        grid-template-columns:repeat(4,1fr);

    }

}

@media(max-width:992px){

    .sb-library{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:768px){

    .sb-library{

        grid-template-columns:repeat(2,1fr);

    }

    .sb-cover img{

        height:280px;

    }

}

@media(max-width:480px){

    .sb-library{

        grid-template-columns:1fr;

    }

}
/*=========================================
RECHERCHE
=========================================*/

.sb-library-header{

    margin-bottom:35px;

}

.sb-search{

    margin-bottom:20px;

}

#sb-search{

    width:100%;

    padding:16px 20px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

}

.sb-filters{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.sb-filter{

    background:#f5f5f5;

    border:none;

    padding:10px 18px;

    border-radius:30px;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

}

.sb-filter:hover{

    background:#116530;

    color:#fff;

}

.sb-filter.active{

    background:#116530;

    color:#fff;

}

.sb-category{

    margin:14px 0;

}

.sb-category span{

    display:inline-block;

    background:#eef7ef;

    color:#116530;

    padding:6px 12px;

    border-radius:30px;

    font-size:13px;

}