.produits-communs__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.produits-communs__item {
position: relative;
background-color: #fff;
box-shadow: 0px 3px 6px 0 #00000029;
}
.produits-communs__item a.produits-communs__item-link {
position: absolute;
inset: 0;
z-index: 2;
}
.produits-communs__item-figure {
display: flex;
position: relative;
overflow: hidden;
margin: 0;
}
.produits-communs__item img {
width: 100%;
height: auto;
aspect-ratio: 1/1;
object-fit: contain;
}
.produits-communs__item-excerpt {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
color: #fff;
font-weight: 600;
padding: 16px;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
overflow: auto;
opacity: 0;
transform: translateY(100%);
transition: all 0.3s ease;
}
.produits-communs__item:hover .produits-communs__item-excerpt {
opacity: 1;
transform: translateY(0);
}
.produits-communs__item-content {
padding: 16px 24px;
}
.produits-communs__item-category {
position: relative;
z-index: 3;
}
.produits-communs__item-category a {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
color: var(--wp--preset--color--custom-turquoise);
text-decoration: none;
}
.produits-communs__item-tag {
position: relative;
z-index: 3;
}
.produits-communs__item-tag a {
font-size: 12px;
font-weight: 500;
font-style: italic;
color: var(--wp--preset--color--custom-gris);
text-decoration: none;
}
.produits-communs__item-title {
font-size: var(--wp--preset--font-size--5);
font-weight: 600;
color: var(--wp--preset--color--custom-bleu);
margin-top: 8px;
margin-bottom: 8px;
}
@media (max-width: 1024px) {
.produits-communs__grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.produits-communs__grid {
grid-template-columns: repeat(1, 1fr);
}
}