/* --- Structure générale --- */
.flyers-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:40px;
}

/* Mobile = 1 par ligne */
@media(max-width:768px){
    .flyers-container{
        grid-template-columns:1fr;
    }
}

/* --- Carte flyer --- */
.flyer{
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,.12);
    transition:.25s;
    display:flex;
    flex-direction:column;
}

.flyer:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

/* --- Image aperçu PDF --- */
.flyer img{
    width:100%;
    height:auto;
    display:block;
}

/* --- Bouton download --- */
.download-button{
    padding:16px;
    text-align:center;
}

.download-button .btn{
    border-radius:25px;
}

/* --- Titres blocs --- */
.title-container{
    margin:40px 0 15px 0;
    text-align:center;
}

.title-container h4{
    font-size:22px;
    margin:0;
}
