
/*-----------------------------------*/
/* page auteur - produit */
/*-----------------------------------*/

.page-template-page-auteurs footer .wp-block-group.alignfull.wc-blocks-pattern-footer-large{
    /*min-width: 1100px;*/
}
.author-products {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Trois produits par ligne */
    gap: 20px;
    margin-top: 20px;
}

.author-products li {
    text-align: center;
    padding: 15px;
    transition: transform 0.2s ease-in-out;
    background-color: #fff;
}

.author-products li:hover {
    transform: scale(1.05);
}

.author-products .product-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.author-products .product-title {
    font-weight: 400;
}
.title-other-book{
    font-weight: 400;

}

@media (max-width: 768px) {
    .author-products {
        grid-template-columns: repeat(2, 1fr);
    }
	.author-products li{
		padding: 0;
	}
	

}