.clients-marquee-section {
  width: 100%;
  padding: 60px 0;
}

.clients-marquee-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.clients-marquee-title {
  font-size: var(--font-size-h2, 2.5rem);
  font-weight: var(--font-weight-bold, 700);
  color: var(--color-text-dark, #333333);
  margin: 0;
  font-family: "Noto Sans Hebrew", "Open Sans", sans-serif;
}

/* RTL/LTR support */
[dir="rtl"] .clients-marquee-title {
  font-family: "Noto Sans Hebrew", sans-serif;
}

[dir="ltr"] .clients-marquee-title {
  font-family: "Open Sans", sans-serif;
}

.clients-marquee-container{
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 150px;
    padding: 20px 0;
  }
  
  .clients-conveyor{
    position: relative;
    height: 150px;
  }
  
  .client-logo{
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    will-change: transform;
  }
  
  .client-logo img{
    display:block;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
  }
  @media (max-width: 768px) {
    .clients-marquee-section {
      padding: 40px 0;
    }
    
    .clients-marquee-header {
      margin-bottom: 30px;
    }
    
    .clients-marquee-title {
      font-size: 2rem;
    }
    
    .client-logo{
        width: 100px;
        height: 100px;
      }
  }
  
  @media (max-width: 480px) {
    .clients-marquee-title {
      font-size: 1.75rem;
    }
  }