.liste {
  margin: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr) );
  gap: 20px;
}

figure {
  margin: 0;
}
figure a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: currentColor;
  text-decoration: none;
  position: relative;
}
figure span {
  height: 100%;
  background: paleturquoise;
  transition: all .5s;
  overflow: hidden;
}
figure:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}
figure:hover span {
  background: white;
}
figure figcaption {
  padding-top: .5em;
}
img {
  width: 50%;
  height: 50%;
  object-fit: cover;
  flex: 1;
 
  mix-blend-mode: multiply;
  transition: all .5s;
}



summary {
  list-style-type: none; 
}
[open] summary {
  list-style-type: none; 
}

summary:hover{
background-color: blue;
font-size: 105%;
transition: all .5s;
}
