.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* === GRID PRINCIPAL === */
.video-grid {
  display: flex !important;
  gap: 40px !important;
  align-items: center !important;
}

/* === WRAPPER VIDÉOS (À GAUCHE) === */
.vertical-scroll-wrapper {
  flex: 1 !important;
  display: flex !important;
  gap: 20px !important;
  overflow: hidden !important;
  position: relative !important;
  padding: 40px 0 !important;
  max-height: 800px !important;
}

/* === CONTENEUR TEXTE (À DROITE) === */
.content-wrapper {
  flex: 0 0 40% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
}

/* === DÉGRADÉS HAUT ET BAS === */
.vertical-scroll-wrapper::before,
.vertical-scroll-wrapper::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  height: 100px !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

.vertical-scroll-wrapper::before {
  top: 0 !important;
  background: linear-gradient(to bottom, #E5803B 0%, rgba(229,128,59,0) 100%) !important;
}

.vertical-scroll-wrapper::after {
  bottom: 0 !important;
  background: linear-gradient(to top, #E5803B 0%, rgba(229,128,59,0) 100%) !important;
}

/* === COLONNES === */
.vertical-scroll-column {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  will-change: transform !important;
}

/* Animation vers le bas */
.scroll-down {
  animation: scrollDown 10s linear infinite !important;
}

/* Animation vers le haut */
.scroll-up {
  animation: scrollUp 10s linear infinite !important;
}

/* Pause au survol de la colonne */
.vertical-scroll-column:hover {
  animation-play-state: paused !important;
}

/* === ANIMATIONS === */
@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollUp {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* === VIDÉOS === */
.vertical-scroll-column .elementor-widget-video {
  flex-shrink: 0 !important;
  width: 100% !important;
  transition: transform 0.3s ease !important;
}

.vertical-scroll-column .elementor-widget-video:hover {
  transform: scale(1.05) !important;
  z-index: 20 !important;
  position: relative !important;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
  .video-grid {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .content-wrapper {
    flex: 1 !important;
    text-align: center !important;
    order: -1 !important;
  }
  
  .vertical-scroll-wrapper {
    gap: 10px !important;
    max-height: 600px !important;
  }
  
  .vertical-scroll-wrapper::before,
  .vertical-scroll-wrapper::after {
    height: 60px !important;
  }
  
  .vertical-scroll-column {
    gap: 10px !important;
  }
}/* End custom CSS */