/* CSS POUR LE WIDGET .image-titre-widget */
.widget_image_titre_widget {
  text-align: center;
}

.image-titre-widget {
  display: inline-block;
  position: relative;
  text-align: center;
}
.image-titre-widget img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}
.image-titre-widget .titre {
  width: 240px;
  height: 240px;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  padding: 15px;
  color: white;
  opacity: 0;
  background-color: rgba(244, 202, 82, 0.8);
  transition: all 0.33s ease-in-out;
}
.image-titre-widget:hover .titre {
  opacity: 1;
  transition: all 0.33s ease-in-out;
}
