.cls-section {
    padding: 72px 0 64px;
    background: #f5f8ff;
    overflow: hidden;
    position: relative;
}

.cls-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #1f6fbd 40%, #3d9bff 60%, transparent 100%);
}

.cls-header {
    text-align: center;
    margin-bottom: 44px;
    padding: 0 20px;
}

.cls-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1f6fbd;
    margin-bottom: 12px;
}

.cls-eyebrow::before,
.cls-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: #1f6fbd;
    opacity: .55;
}

.cls-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #0f1d35;
    margin: 0;
    line-height: 1.25;
}

.cls-title strong {
    font-weight: 800;
    color: #1f6fbd;
}

.cls-sub {
    margin-top: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #6b7c9a;
}

/* Track wrapper */
.cls-track-wrap {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.cls-track-wrap+.cls-track-wrap {
    margin-top: 14px;
}

/* Left / right fade overlays */
.cls-track-wrap::before,
.cls-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 10vw, 160px);
    z-index: 3;
    pointer-events: none;
}

.cls-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f5f8ff 0%, rgba(245, 248, 255, 0) 100%);
}

.cls-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f5f8ff 0%, rgba(245, 248, 255, 0) 100%);
}

/* Scrolling track */
.cls-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

/* Individual logo card */
.cls-logo {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    background: #ffffff;
    border: 1.5px solid #e4ecfa;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    cursor: default;
    box-shadow: 0 2px 8px rgba(31, 111, 189, .06);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.cls-logo:hover {
    border-color: #1f6fbd;
    box-shadow: 0 6px 24px rgba(31, 111, 189, .16);
    transform: translateY(-3px);
}

.cls-logo img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: filter .3s ease;
}

.cls-logo:hover img {
    filter: brightness(1.1) drop-shadow(0 2px 6px rgba(31, 111, 189, .25));
}
