
/* =====================================================================
   V9.6.18 SAFE — ARRIVÉE PHOTO GLOBALE
   Reprend le système validé en cours sur la galerie V9.6.17 :
   très doux, lent, très peu de zoom.
   Utilise translate/scale séparés pour ne pas casser les transforms existants.
   ===================================================================== */

.v918-photo-arrival{
  opacity:0;
  filter:blur(2px);
  translate:var(--v918-x,0px) var(--v918-y,28px);
  scale:.9825;
  will-change:opacity,filter,translate,scale;
}
.v918-photo-arrival.is-v918-photo-visible{
  animation:v918-photo-arrive 2760ms cubic-bezier(.22,1,.36,1) both;
  animation-delay:var(--v918-delay,0ms);
}
@keyframes v918-photo-arrive{
  0%{
    opacity:0;
    filter:blur(2px);
    translate:var(--v918-x,0px) var(--v918-y,28px);
    scale:.9825;
  }
  68%{
    opacity:1;
    filter:blur(0);
    translate:0 -2px;
    scale:1.003;
  }
  86%{
    opacity:1;
    filter:blur(0);
    translate:0 1px;
    scale:.999;
  }
  100%{
    opacity:1;
    filter:blur(0);
    translate:0 0;
    scale:1;
  }
}

/* Origines très discrètes : pas d'effet de vol ou de carte qui se balade. */
.v918-photo-arrival:nth-of-type(4n+1){--v918-x:-7px}
.v918-photo-arrival:nth-of-type(4n+2){--v918-x:7px}
.v918-photo-arrival:nth-of-type(4n+3){--v918-x:-4px}
.v918-photo-arrival:nth-of-type(4n+4){--v918-x:4px}

/* ---------------------------------------------------------------------
   GALERIE ACCUEIL — TELEPHONE :
   12 photos, UNE SEULE COLONNE, toutes les unes sous les autres,
   proportions naturelles conservées.
   --------------------------------------------------------------------- */
@media(max-width:760px){
  .v915-gallery{
    padding:5px!important;
    overflow:visible!important;
  }
  .v915-gallery-grid{
    display:block!important;
    width:100%!important;
  }
  .v915-gallery-grid .v915-card,
  .v915-gallery-grid .v915-card-1,
  .v915-gallery-grid .v915-card-2,
  .v915-gallery-grid .v915-card-3,
  .v915-gallery-grid .v915-card-4,
  .v915-gallery-grid .v915-card-5,
  .v915-gallery-grid .v915-card-6,
  .v915-gallery-grid .v915-card-7,
  .v915-gallery-grid .v915-card-8,
  .v915-gallery-grid .v915-card-9,
  .v915-gallery-grid .v915-card-10,
  .v915-gallery-grid .v915-card-11,
  .v915-gallery-grid .v915-card-12{
    display:block!important;
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    grid-column:auto!important;
    grid-row:auto!important;
    margin:0 0 5px!important;
  }
  .v915-gallery-grid .v915-card img{
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    height:auto!important;
    max-width:100%!important;
    object-fit:contain!important;
  }

  .v918-photo-arrival{
    --v918-x:0px;
    --v918-y:24px;
  }
  .v918-photo-arrival.is-v918-photo-visible{
    animation-duration:2560ms;
  }
}

@media(prefers-reduced-motion:reduce){
  .v918-photo-arrival,
  .v918-photo-arrival.is-v918-photo-visible{
    opacity:1!important;
    filter:none!important;
    translate:none!important;
    scale:1!important;
    animation:none!important;
  }
}
