.service-column {
    width: 50%;
}

.service-tools .section-container {
    padding-left: 0;
    padding-right: 0;
}

.tools-column {
    flex-direction: column;
    display: flex;
    width: 100%;
    gap: var(--space-48);
}

.tools-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.services-marquee {
    overflow: hidden; width: 100%; padding: 1rem 0;
}

.services-marquee .marquee-track {
    animation: marquee 25s linear infinite;
    will-change: transform;
    display: flex;
    gap: var(--space-48);
    align-items: center;
    width: max-content;
}

.services-marquee .logo-wrap {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-marquee .logo-wrap img,
.services-marquee .logo-wrap svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    display: block;
}

/*
.services-marquee .logo-wrap svg circle:not(.no-fill),
.services-marquee .logo-wrap svg path:not(.no-fill) {
    fill: var(--text-muted);
}

.services-marquee .logo-wrap svg circle.no-fill,
.services-marquee .logo-wrap svg path.no-fill {
    fill: var(--bg);
}
*/


.marquee-track .card.logo-card {
    display: flex;
    
    justify-content: center;
    align-items: center;

    box-sizing: content-box;
    min-width: 0;
    min-height: 0;

    width: 120px;
    height: 120px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .services-marquee .marquee-track { animation: none; }
}

/* mobile: stack columns */
@media (max-width: 768px) {
  .section-content {
    flex-direction: column;
    gap: 24px;
  }

  .service-column {
    width: 100%;
  }

  /* optional: keep text first, mock second (default DOM order) */
  .service-column + .service-column {
    margin-top: 8px;
  }
}