/* Titre bloc */
.wc-product-pdfs .wc-pdfs-title{
    margin:.25rem 0 .75rem;
    font-size:1.1rem;
    font-weight:600;
    text-align:left; /* ou center si tu veux */
}

/* Grille de cartes PDF */
.wc-pdfs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:1.5rem;
}

/* Carte PDF */
.wc-pdf-card{
    background:#ffffff;
    border-radius:8px;
    padding:.75rem;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,.08);           /* ombre portée */
    transition:box-shadow .15s ease, transform .15s ease;
}
.wc-pdf-card:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transform:translateY(-3px);
}

/* Vignette */
.wc-pdf-thumb{
    overflow:hidden;
    border-radius:4px;
    background:#fff;
}
.wc-pdf-thumb-img{
    width:100%;
    height:auto;
    display:block;
}
.wc-pdf-thumb-fallback{
    display:flex;
    align-items:center;
    justify-content:center;
    height:220px;
    font-weight:600;
    color:#555;
    background:repeating-linear-gradient(
        135deg,
        #f5f5f5,
        #f5f5f5 10px,
        #eeeeee 10px,
        #eeeeee 20px
    );
}

/* Titre sous la vignette */
.wc-pdf-title{
    margin-top:.6rem;
    font-size:.9rem;
    font-weight:600;
    color:#333;
    word-break:break-word;
    text-align:center;   /* titre bien centré */
}

/* Lien autour de la vignette */
.wc-pdf-thumb-link{
    display:block;
    text-decoration:none;
}

/* Responsive: un peu plus d'espace sur mobile */
@media (max-width:600px){
    .wc-pdfs-grid{
        grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
        gap:1rem;
    }
}
