.elementor-37510 .elementor-element.elementor-element-7047870{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-37510 .elementor-element.elementor-element-974aab9{width:100%;max-width:100%;}.elementor-37510 .elementor-element.elementor-element-974aab9.elementor-element{--align-self:center;}@media(min-width:768px){.elementor-37510 .elementor-element.elementor-element-7047870{--content-width:100%;}}/* Start custom CSS for shortcode, class: .elementor-element-974aab9 *//* =========================================================
   USER → LISTS (My Lists)
   Look & feel = HOME random experiences
   Scoped: only .xrdb-user-lists-gallery
   ========================================================= */

/* Force la largeur full (si un wrapper impose un max-width) */
.xrdb-user-lists-gallery{
  width: 100%;
  max-width: none !important;
  margin: 0;
}
.xrdb-user-lists-gallery > *{
  max-width: none !important;
}

/* Grille responsive : 2 → 3 → 4 → 5 colonnes */
.xrdb-user-lists-gallery .xrdb-user-lists-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;

  /* ✅ centre le "pack" quand il y a peu de cards */
  justify-content: center;

  width: 100%;
  margin: 6px 0 0; /* (top) espace léger */
  justify-items: stretch;
  align-items: start;
}

@media (min-width: 640px){
  .xrdb-user-lists-gallery .xrdb-user-lists-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px){
  .xrdb-user-lists-gallery .xrdb-user-lists-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1280px){
  .xrdb-user-lists-gallery .xrdb-user-lists-grid{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Cartes */
.xrdb-user-lists-gallery .xrdb-exp-card{
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  background: #fff;
  transition: none;
  text-align: left;
}

/* Poster */
.xrdb-user-lists-gallery .xrdb-exp-poster{
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #f6f6f6;
}
.xrdb-user-lists-gallery .xrdb-exp-poster img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* Meta */
.xrdb-user-lists-gallery .xrdb-exp-meta{
  text-align: center;
}

/* Titre */
.xrdb-user-lists-gallery .xrdb-exp-title{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  margin-top: 8px;
  font-weight: 600;
  color: #EF3B2D;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  min-height: calc(1.2em * 2);
}

.xrdb-user-lists-gallery .xrdb-exp-card:hover,
.xrdb-user-lists-gallery .xrdb-exp-card:focus,
.xrdb-user-lists-gallery .xrdb-exp-card:active{
  transform: none;
  border-color: #ddd;
}

.xrdb-user-lists-gallery .xrdb-exp-title:hover,
.xrdb-user-lists-gallery .xrdb-exp-title:focus,
.xrdb-user-lists-gallery .xrdb-exp-title:active{
  color: #EF3B2D;
  text-decoration: none;
}

/* Controls */
.xrdb-user-lists-controls{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 26px;
}

.xrdb-user-lists-label{
  font-weight: 700;
  opacity: 0.75;
  white-space: nowrap;
}

.xrdb-user-lists-select{
  width: min(520px, 90vw);
  max-width: 520px;
  padding: 10px 12px;

  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;

  font-weight: 600;
  line-height: 1.1;
}

.xrdb-user-lists-select:focus{
  outline: none;
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* Load more */
.xrdb-loadmore{
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.xrdb-loadmore-btn{
  display: inline-flex;
}

/* Actions (delete list / delete all) */
.xrdb-user-lists-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

/* ✅ boutons orange du site */
.xrdb-user-lists-actions .xrdb-user-lists-btn{
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #EF3B2D;
  background: #EF3B2D;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.xrdb-user-lists-actions .xrdb-user-lists-btn:hover,
.xrdb-user-lists-actions .xrdb-user-lists-btn:focus{
  filter: brightness(0.95);
}

.xrdb-user-lists-actions .xrdb-user-lists-btn:disabled{
  opacity: .6;
  cursor: not-allowed;
}

/* =========================================================
   My Lists — Remove (×) top-right on each tile (centered)
   ========================================================= */

/* La carte doit être relative pour positionner le bouton */
.xrdb-user-lists-gallery .xrdb-exp-card{
  position: relative;
}

/* Badge remove : rond, top-right, discret + X centrée (dessinée en CSS) */
.xrdb-user-lists-gallery .xrdb-list-remove{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;

  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;

  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.92);

  /* on neutralise le caractère × pour éviter le décalage de font */
  font-size: 0;
  color: transparent;
  line-height: 0;

  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  transition: transform .08s ease, box-shadow .08s ease, background .08s ease, border-color .08s ease;
}

/* Dessin de la croix (centrée) */
.xrdb-user-lists-gallery .xrdb-list-remove::before,
.xrdb-user-lists-gallery .xrdb-list-remove::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(0,0,0,0.70);
  border-radius: 2px;
  transform-origin: center;
}

.xrdb-user-lists-gallery .xrdb-list-remove::before{
  transform: translate(-50%, -50%) rotate(45deg);
}
.xrdb-user-lists-gallery .xrdb-list-remove::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hover/focus : passe en orange */
.xrdb-user-lists-gallery .xrdb-list-remove:hover,
.xrdb-user-lists-gallery .xrdb-list-remove:focus{
  background: #EF3B2D;
  border-color: #EF3B2D;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
  outline: none;
}

.xrdb-user-lists-gallery .xrdb-list-remove:hover::before,
.xrdb-user-lists-gallery .xrdb-list-remove:hover::after,
.xrdb-user-lists-gallery .xrdb-list-remove:focus::before,
.xrdb-user-lists-gallery .xrdb-list-remove:focus::after{
  background: #fff;
}

/* Etat disabled */
.xrdb-user-lists-gallery .xrdb-list-remove:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}/* End custom CSS */