/* ==========================================================================
   LOOKITSGRAPHIC Universal Converter — visuel de dépôt par lot
   Remplace .drop-symbol (fichiers hétérogènes → fente → sortie acide)
   ========================================================================== */

.drop-symbol {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  color: inherit;
  font: inherit;
  display: block;
}

.dropzone .kicker {
  margin-top: 14px;
}

/* --- Traitement par lot ----------------------------------------------- */

.cv-batch {
  position: relative;
  width: min(246px, 72vw);
  height: 96px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.cv-gate {
  position: absolute;
  left: 50%;
  margin-left: -6px;
  width: 12px;
  height: 96px;
  background: var(--ink, #11110f);
  z-index: 2;
  pointer-events: none;
}

.cv-file {
  position: absolute;
  top: 50%;
  margin-top: -17px;
  width: 44px;
  height: 34px;
  border: 2px solid var(--ink, #11110f);
  background: var(--cv-c, var(--acid, #d9ff32));
  color: var(--ink, #11110f);
  display: grid;
  place-items: center;
  font: 700 8px/1 "Courier New", monospace;
  font-style: normal;
  letter-spacing: 0.04em;
  animation: cv-cross 3.6s linear infinite;
}

.cv-file:nth-child(2) { animation-delay: 0.9s; }
.cv-file:nth-child(3) { animation-delay: 1.8s; }
.cv-file:nth-child(4) { animation-delay: 2.7s; }

@keyframes cv-cross {
  0% {
    left: 0;
    opacity: 0;
    transform: rotate(-7deg);
    background: var(--cv-c);
  }
  10% { opacity: 1; }
  46% {
    left: calc(50% - 22px);
    transform: rotate(-7deg);
    background: var(--cv-c);
  }
  54% {
    left: calc(50% - 22px);
    transform: rotate(0);
    background: var(--acid, #d9ff32);
    color: var(--ink, #11110f);
  }
  90% { opacity: 1; }
  100% {
    left: calc(100% - 44px);
    opacity: 0;
    transform: rotate(0);
    background: var(--acid, #d9ff32);
    color: var(--ink, #11110f);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cv-batch * {
    animation: none !important;
  }

  .cv-file {
    opacity: 1;
  }

  .cv-file:nth-child(1) {
    left: 0;
    transform: rotate(-7deg);
  }

  .cv-file:nth-child(2) {
    left: 52px;
    transform: rotate(-7deg);
  }

  .cv-file:nth-child(3) {
    left: 140px;
    background: var(--acid, #d9ff32);
    color: var(--ink, #11110f);
  }

  .cv-file:nth-child(4) {
    left: 196px;
    background: var(--acid, #d9ff32);
    color: var(--ink, #11110f);
  }
}
