html, body {
  margin: 0;
  width: 1920px; height: 1080px;
  overflow: hidden;
  background: transparent;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.root { position: absolute; inset: 0; background: transparent; }

.hidden { opacity: 0 !important; pointer-events: none; }

/* Conteneur slot */
.lt {
  position: absolute;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-width: 320px;
  max-width: 700px;

  transition: opacity .35s ease, transform .35s cubic-bezier(.22,.68,0,1.2);
}

/* Animations */
.lt.anim-slide          { transform: translateY(24px); opacity: 0; }
.lt.anim-slide.visible  { transform: translateY(0);    opacity: 1; }

.lt.anim-fade           { opacity: 0; }
.lt.anim-fade.visible   { opacity: 1; }

.lt.anim-none           { opacity: 0; transition: none; }
.lt.anim-none.visible   { opacity: 1; }

/* Barre accent gauche — pilotée par JS */
.lt-accent {
  width: 6px;
  flex: 0 0 6px;
}

/* Zone texte — pilotée par JS */
.lt-texts {
  flex: 1;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.lt-name {
  font-weight: 1000;
  line-height: 1.1;
}

.lt-role {
  font-weight: 700;
  line-height: 1.1;
}

/* Zone org — pilotée par JS */
.lt-org {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.lt-org-logo {
  width: 28px; height: 28px;
  object-fit: contain; border-radius: 4px;
  flex: 0 0 auto;
}

.lt-org-name {
  font-size: 13px;
  font-weight: 1000;
  white-space: nowrap;
}
