.icon-running-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Fade overlays on left and right edges */
.icon-running-slider::before,
.icon-running-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 5;
    pointer-events: none;
}

.icon-running-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.icon-running-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.icon-running-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.icon-running-slider:hover .icon-running-track {
    animation-play-state: paused;
}

.icon-running-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    margin: 0 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.icon-running-card:hover {
    transform: translateY(-4px);
}

.icon-running-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-running-card-icon i,
.icon-running-card-icon svg {
    display: block;
}

.icon-running-card-text {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    line-height: 1.3;
}
