
/* =========================================================
   PDF / FICHES À IMPRIMER
   ========================================================= */

.chapitre-pdfs {
    margin-top: 40px;
    margin-bottom: 40px;

    padding: 20px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 15px;

    text-align: center;
}

.chapitre-pdfs h2 {
    margin: 0 0 18px;

    color: #1e293b;

    font-size: 22px;
    font-weight: 800;
}

.chapitre-pdfs-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(100px, 120px));

    justify-content: center;

    gap: 12x;

    margin-bottom: 18px;
}


/* Carte PDF */

.chapitre-pdf {
    min-width: 0;

    padding: 6px;

    background: #fff;

    border: 1px solid #e2e8f0;
    border-radius: 9px;

    box-shadow:
        0 2px 7px rgba(15, 23, 42, .04);

    box-sizing: border-box;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.chapitre-pdf:hover {
    transform: translateY(-2px);

    border-color: #93c5fd;

    box-shadow:
        0 5px 14px rgba(37, 99, 235, .10);
}


/* Vignette 200 × 280 */

.chapitre-pdf-image {
    width: 100%;

    aspect-ratio: 200 / 280;

    overflow: hidden;

    background: #fff;

    border-radius: 6px;
}

.chapitre-pdf-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* Nom de la fiche */

.chapitre-pdf-nom {
    margin-top: 8px;

    color: #475569;

    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
}


/* Bouton vers tous les PDF */

.chapitre-pdfs-lien {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    background: #2563eb;

    border-radius: 8px;

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background .15s ease,
        transform .15s ease,
        box-shadow .15s ease;
}

.chapitre-pdfs-lien:hover {
    background: #1d4ed8;

    transform: translateY(-1px);

    box-shadow:
        0 4px 10px rgba(37, 99, 235, .20);
}


@media (max-width: 700px) {

   
    .chapitre-pdfs {
        padding: 14px;
    }

    .chapitre-pdfs-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap: 8px;
    }

    .chapitre-pdf {
        padding: 5px;
    }

    .chapitre-pdf-nom {
        font-size: 10px;
    }

}


/* =========================================================
   TRÈS PETITS ÉCRANS
   ========================================================= */

@media (max-width: 420px) {

   
    .chapitre-pdfs-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 260px;

        margin-left: auto;
        margin-right: auto;
    }
}