.laf-insights-widget--funnel .laf-insights-widget__body {
    overflow-x: auto;
}

.laf-funnel {
    display: grid;
    gap: 16px;
}

.laf-funnel__track {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 980px;
}

.laf-funnel__node {
    flex: 0 0 170px;
}

.laf-funnel__card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    padding: 16px 14px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.05);
    text-align: center;
}

.laf-funnel__value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 6px;
}

.laf-funnel__label {
    font-size: 13px;
    color: #6b7280;
}

.laf-funnel__connector {
    flex: 0 0 90px;
    display: grid;
    justify-items: center;
    gap: 4px;
}

.laf-funnel__line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(17,24,39,0.10), rgba(17,24,39,0.50));
    border-radius: 999px;
}

.laf-funnel__rate {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-top: 6px;
}

.laf-funnel__rate-label {
    font-size: 9px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
}

.laf-funnel__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #4b5563;
}

.laf-funnel__footer-label {
    color: #6b7280;
}

.laf-funnel__footer-value {
    font-weight: 700;
    color: #111827;
}

.laf-funnel__footer-delta.is-positive {
    color: #15803d;
}

.laf-funnel__footer-delta.is-negative {
    color: #b91c1c;
}

.laf-funnel__footer-delta.is-stable,
.laf-funnel__footer-delta.is-neutral {
    color: #6b7280;
}

.laf-insights-widget--funnel .laf-insights-widget__body {
    overflow: visible;
}

.laf-funnel__viewport {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    scrollbar-gutter: stable both-edges;
}



@media (max-width: 1024px) {
    .laf-funnel__track {
        min-width: 900px;
    }
}