@charset "UTF-8";
/* ------------------------------------------- */
/* ------------------------------------------- */
:root {
  font-size: 62.5%;
}

/* ------------------------------------------- */
/* ------------------------------------------- */
.backend a {
  pointer-events: none !important;
}

.block-suggestion > p.style-h1, .block-suggestion > p.style-h3 {
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 781px) {
  .block-suggestion > p.style-h1, .block-suggestion > p.style-h3 {
    font-size: clamp(2rem, 0.0490196078 * (100vmin + 100vmax) / 2, 5rem);
  }
}
.block-suggestion > p.style-h1 > span a, .block-suggestion > p.style-h3 > span a {
  text-decoration: none !important;
  color: black !important;
  text-transform: uppercase !important;
}
.block-suggestion > p.style-h1 > span a:hover, .block-suggestion > p.style-h3 > span a:hover {
  color: var(--current-page-color, #9825fb) !important;
}
.block-suggestion > p.style-h1 > span:last-child, .block-suggestion > p.style-h3 > span:last-child {
  display: none;
}
.block-suggestion #photo-container {
  position: fixed;
  pointer-events: none;
  /* Empêche les clics sur le conteneur */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  overflow: hidden;
  z-index: 110;
  background-color: var(--edition-color, #9825fb);
  border: 2px solid white;
  width: 50vmin;
  height: 37.5vmin;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* activation flexbox */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* centre horizontalement */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* centre verticalement */
}
.block-suggestion #photo-container img {
  /* Safari 6.0 - 9.0 */
  width: 44vmin;
  /* Ajuste la taille de l'image selon tes besoins */
  height: 36vmin;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  border: 2px solid white;
  margin: auto;
  display: block;
}
.block-suggestion #photo-container .style-h4 {
  color: white !important;
  font-weight: 700 !important;
  position: absolute;
  margin: 0;
  padding: 0.2rem 1rem;
  z-index: 101;
  width: 50%;
  line-height: 1.1;
}
.block-suggestion #photo-container .date {
  top: 0.3rem;
  left: 0;
}
.block-suggestion #photo-container .categorie {
  top: 0.3rem;
  right: 0;
  text-align: right;
}
.block-suggestion #photo-container .heure {
  bottom: 0;
  left: 0;
}
.block-suggestion #photo-container .lieu {
  bottom: 0;
  right: 0;
  text-align: right;
}