.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-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@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 *//* ================================ */
/* CREOVEO UGC WALL (STABLE RESET)  */
/* Desktop: 3 columns vertical      */
/* Mobile: ONLY column 1 horizontal */
/* ================================ */

.creoveo-ugc-wall{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 520px;
  overflow: hidden;
}

/* kill any fade overlays if you had them */
.creoveo-ugc-wall:before,
.creoveo-ugc-wall:after{
  display: none !important;
  content: none !important;
}

.ugc-col{
  height: 100%;
  overflow: hidden;
}

.ugc-track{
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}

.ugc-item{
  display: block;
  height: 230px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
}

.ugc-item video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* animations */
.ugc-col.ugc-up .ugc-track{
  animation: ugcUp 22s linear infinite;
}
.ugc-col.ugc-down .ugc-track{
  animation: ugcDown 24s linear infinite;
}
.ugc-col.slow.ugc-up .ugc-track{
  animation-duration: 30s;
}

@keyframes ugcUp{
  from{ transform: translateY(0); }
  to{ transform: translateY(-50%); }
}
@keyframes ugcDown{
  from{ transform: translateY(-50%); }
  to{ transform: translateY(0); }
}

/* ---------------- */
/* MOBILE: 1 LANE   */
/* ---------------- */

@media (max-width: 768px){

  /* only show first column */
  .creoveo-ugc-wall{
    display: block;
    height: 300px;
    overflow: hidden;

    /* full-bleed */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }

  .creoveo-ugc-wall .ugc-col:nth-child(2),
  .creoveo-ugc-wall .ugc-col:nth-child(3){
    display: none !important;
  }

  /* turn the track horizontal */
  .creoveo-ugc-wall .ugc-track{
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    height: 100% !important;
    animation: ugcLeft 22s linear infinite !important;
    gap: 12px !important;
  }

  /* force cards to be small and in one row */
  .creoveo-ugc-wall .ugc-item{
    flex: 0 0 auto !important;
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
    height: 100% !important;
  }

  .creoveo-ugc-wall .ugc-item video{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@keyframes ugcLeft{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ========================================= */
/* CREOVEO – TRUSTED CLIENT LOGO CAROUSEL     */
/* FULL-BLEED | NO SHADOW | B/W | CLEAN       */
/* (namespaced to avoid conflicts)            */
/* ========================================= */

.creoveo-trusted.creoveo-fullbleed{
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.creoveo-trusted .trusted-inner{
  width: 100%;
  padding: 22px 0;
}

.creoveo-trusted .trusted-eyebrow{
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  opacity: .8;
  margin-bottom: 14px;
}

.creoveo-trusted .logo-marquee{
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}

.creoveo-trusted .logo-track{
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  will-change: transform;
}

.creoveo-trusted .logo-item{
  width: 160px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.creoveo-trusted .logo-item img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: .85;
}

.creoveo-trusted .logo-track.to-left{
  animation: marqueeLeft 28s linear infinite;
}
.creoveo-trusted .logo-track.to-right{
  animation: marqueeRight 32s linear infinite;
}

@keyframes marqueeLeft{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight{
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@media (max-width: 768px){
  .creoveo-trusted .logo-item{
    width: 130px;
    height: 36px;
  }
  .creoveo-trusted .logo-track{
    gap: 24px;
  }
}
.creoveo-whyugc{
  padding: 48px 0; /* ugyanaz a vastagság, mint az 50+ AI apps */
}/* End custom CSS */