.lezards-image-etiquette {
  display: block;
  position: relative;
}
.lezards-image-etiquette__media {
  position: relative;
  width: 100%;
}
.lezards-image-etiquette__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.lezards-image-etiquette__tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lezards-image-etiquette__tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px 8px;
  border-radius: 0px;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: auto;
  transform-origin: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .lezards-image-etiquette__tag {
    font-size: 15px;
    padding: 5px 5px 3px;
  }
}
.lezards-image-etiquette__tag-label {
  display: block;
  line-height: 1.1;
}
.lezards-image-etiquette__tag.is-color-jaune {
  background-color: var(--e-global-color-primary, #ffd400);
  color: white;
}
.lezards-image-etiquette__tag.is-color-bleu {
  background-color: var(--e-global-color-accent, #0c1d2d);
  color: #0c1d2d;
}
.lezards-image-etiquette__tag.is-color-option3, .lezards-image-etiquette__tag.is-color-blanc {
  background-color: #ffffff;
  color: #0c1d2d;
}
