/* Ingetrans – Clients Marquee Widget CSS */
:root { --gfcarousel-brand: #f59e0b; --gfcarousel-speed: 30s; --gfcarousel-dir: normal; --gfcarousel-h: 96px; --gfcarousel-w: 200px; --gfcarousel-gap: 16px; }

.gfcarousel-section { background:#fff; padding:96px 0; border-top:1px solid #f1f5f9; border-bottom:1px solid #f1f5f9; overflow:hidden; }
.gfcarousel-container { max-width:1440px; margin:0 auto; padding:0 24px; }
@media(min-width:1024px){ .gfcarousel-container { padding:0 48px; } }

/* Header */
.gfcarousel-header { text-align:center; max-width:720px; margin:0 auto 48px; }
.gfcarousel-eyebrow { display:inline-block; font-size:11px; text-transform:uppercase; letter-spacing:3px; font-weight:700; color:var(--gfcarousel-brand); margin-bottom:12px; }
.gfcarousel-title { font-size:clamp(1.75rem,3.5vw,2.5rem); font-weight:900; letter-spacing:-0.03em; line-height:1.15; color:#0f172a; margin:0; }

/* ── Marquee ── */
.gfcarousel-marquee-wrap { position:relative; overflow:hidden; margin-bottom:48px; }

/* Fade gradients */
.gfcarousel-fade { position:absolute; inset-y:0; width:128px; z-index:10; pointer-events:none; }
.gfcarousel-fade--left  { left:0;  background:linear-gradient(to right, var(--gfcarousel-section-bg, #fff) 0%, transparent 100%); }
.gfcarousel-fade--right { right:0; background:linear-gradient(to left,  var(--gfcarousel-section-bg, #fff) 0%, transparent 100%); }

.gfcarousel-track { overflow:hidden; }
.gfcarousel-track__inner {
  display: flex;
  gap: var(--gfcarousel-gap);
  width: max-content;
  animation: igcl-scroll var(--gfcarousel-speed) linear infinite var(--gfcarousel-dir);
}
.gfcarousel-track[data-pause="true"] .gfcarousel-track__inner:hover { animation-play-state: paused; }

@keyframes igcl-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--gfcarousel-gap) / 2)); }
}

/* Items */
.gfcarousel-item {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  min-width: var(--gfcarousel-w);
  height: var(--gfcarousel-h);
  padding: 0 32px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
a.gfcarousel-item:hover {
  background: #fff;
  border-color: #e2e8f0;
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
}

/* Logo image */
.gfcarousel-item__logo { max-height: calc(var(--gfcarousel-h) - 32px); width: auto; object-fit: contain; filter: grayscale(1); opacity:.65; transition: filter .3s ease, opacity .3s ease; display:block; }
.gfcarousel-item:hover .gfcarousel-item__logo { filter: grayscale(0); opacity:1; }

/* Text fallback */
.gfcarousel-item__name {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #334155;
  white-space: nowrap;
  line-height: 1;
}

/* ── CTA ── */
.gfcarousel-cta { text-align:center; display:flex; flex-direction:column; align-items:center; gap:20px; }
.gfcarousel-cta__text { font-size:1.0625rem; color:#475569; line-height:1.7; max-width:520px; margin:0; }
.gfcarousel-cta__text strong { color:#0f172a; }

.gfcarousel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.gfcarousel-btn:hover { background:#334155; transform:translateY(-2px); }
.gfcarousel-btn svg { flex-shrink:0; }

/* Reveal */
.gfcarousel-reveal { opacity:0; transform:translateY(24px); transition:opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.gfcarousel-reveal.gfcarousel-animated { opacity:1; transform:none; }

/* Respect reduced motion */
@media(prefers-reduced-motion: reduce) {
  .gfcarousel-track__inner { animation: none; }
  .gfcarousel-reveal { opacity:1; transform:none; }
}
