/**
 * JetEngine Listing Marquee — Propriétés (suffix 4430a841)
 */
.jem-container-outer-4430a841 { overflow: hidden; width: 100%; position: relative; padding: 10px 0; }
.jem-marquee-wrapper-4430a841 { display: flex; width: max-content; user-select: none; }
.jem-track-4430a841 { display: flex; align-items: stretch; flex-shrink: 0; will-change: transform; }
.jem-dir-left .jem-track-4430a841  { animation: jemMarqueeLeft_4430a841  var(--jem-speed, 40s) linear infinite; }
.jem-dir-right .jem-track-4430a841 { animation: jemMarqueeRight_4430a841 var(--jem-speed, 40s) linear infinite; }
.jem-pause-on-hover:hover .jem-track-4430a841 { animation-play-state: paused !important; }
@keyframes jemMarqueeLeft_4430a841  { 0% { transform: translate3d(0,0,0); }     100% { transform: translate3d(-100%,0,0); } }
@keyframes jemMarqueeRight_4430a841 { 0% { transform: translate3d(-100%,0,0); } 100% { transform: translate3d(0,0,0); } }

/* Carte — espace via margin-right (uniforme, même au raccord des 2 rubans) */
.jem-card-4430a841 { box-sizing: border-box; margin-right: 20px; }
.jem-card-inner-4430a841 {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background-color: #141414;
  border-radius: 14px;
}
/* Image en BACKGROUND : remplit toujours tout le cadre (aucune règle img du thème ne s'applique) */
.jem-card-bg-4430a841 {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.jem-card-inner-4430a841:hover .jem-card-bg-4430a841 { transform: scale(1.06); }
.jem-card-img-placeholder-4430a841 { background-color: #252525; }

/* Badge — toujours visible */
.jem-card-badge-4430a841 {
  position: absolute;
  top: 14px; left: 14px; z-index: 10;
  color: #fff; font-size: 11px; text-transform: uppercase; font-weight: 700;
  padding: 5px 11px; border-radius: 6px; letter-spacing: 0.6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.jem-badge-sale     { background-color: #16a34a; }
.jem-badge-rent     { background-color: #2563eb; }
.jem-badge-vacation { background-color: #f59e0b; }
.jem-badge-sold     { background-color: #6b7280; }
.jem-badge-rented   { background-color: #6b7280; }

/* Overlay : apparaît AU SURVOL (par défaut on voit l'image + le badge) */
.jem-card-overlay-4430a841 {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  box-sizing: border-box;
  text-decoration: none;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.08) 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.jem-card-inner-4430a841:hover .jem-card-overlay-4430a841 { opacity: 1; visibility: visible; }
/* Léger slide-up du contenu au survol */
.jem-card-overlay-4430a841 > * { transform: translateY(14px); transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1); }
.jem-card-inner-4430a841:hover .jem-card-overlay-4430a841 > * { transform: translateY(0); }
.jem-card-category-4430a841 { font-size: 12px; color: #e0e0e0; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 6px; font-weight: 600; }
.jem-card-title-4430a841 { font-size: 18px; color: #fff; margin: 0 0 8px 0; font-weight: 700; line-height: 1.3; }
.jem-card-price-4430a841 { font-size: 17px; color: #39f3bb; font-weight: 700; margin-bottom: 14px; }

/* Bouton unique */
.jem-btn-4430a841 {
  display: inline-block;
  align-self: flex-start;
  background-color: #ffffff;
  color: #111111;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.jem-btn-4430a841:hover { background-color: #39f3bb; }
.jem-btn-4430a841:active { transform: scale(0.97); }

.jem-empty-info-4430a841 { padding: 24px; text-align: center; color: #888; font-size: 14px; border: 1px dashed #ccc; border-radius: 10px; }

@media (max-width: 768px) {
  .jem-card-title-4430a841 { font-size: 16px; }
  /* Pas de survol sur mobile : overlay visible en permanence */
  .jem-card-overlay-4430a841 { opacity: 1 !important; visibility: visible !important; }
  .jem-card-overlay-4430a841 > * { transform: none !important; }
}
