.pt-e54dd26c-wrapper {
    position: relative;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #333;
    padding: 40px 0;
    /* background-color set via elementor controls */
    border-radius: 8px; /* Optional subtle border radius for the wrapper if background colored */
}

.pt-e54dd26c-header {
    margin-bottom: 20px;
    padding: 0 20px;
}

.pt-e54dd26c-eyebrow {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pt-e54dd26c-heading {
    font-family: 'Saira', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.pt-e54dd26c-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0;
    line-height: 1.5;
}

.pt-e54dd26c-controls-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 20px;
    min-height: 30px;
}

.pt-e54dd26c-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: pt-pulse-hint 2s infinite ease-in-out;
}

.pt-e54dd26c-hint-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pt-e54dd26c-hint-icon svg {
    width: 1em;
    height: 1em;
}

@keyframes pt-pulse-hint {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(-3px); }
}

.pt-e54dd26c-track-container {
    position: relative;
    width: 100%;
}

.pt-e54dd26c-connector {
    position: absolute;
    top: 25px; /* Adjust if node size changes */
    left: 20px;
    right: 20px;
    /* height and bg set via elementor controls */
    z-index: 1;
    transform: translateY(-50%); /* Centers the line vertically behind the 50px node */
}

.pt-e54dd26c-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 20px 20px;
    gap: 20px;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.pt-e54dd26c-track::-webkit-scrollbar {
    display: none;
}

.pt-e54dd26c-track.is-dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grabbing;
    user-select: none;
}

.pt-e54dd26c-step {
    /* Changed flex basis to show ~4 items across standard desktop container (e.g. 1140px width) */
    /* 1140px - (padding * 2) - (gap * 3.5) / 4 ~ 260px */
    flex: 0 0 270px;
    scroll-snap-align: start;
    position: relative;
    z-index: 2;
    background: transparent;
    cursor: grab;
}

.pt-e54dd26c-track.is-dragging .pt-e54dd26c-step {
    cursor: grabbing;
}

.pt-e54dd26c-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    /* box-shadow set via elementor controls to simulate line cutoff */
}

.pt-e54dd26c-step-title {
    font-family: 'Saira', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.pt-e54dd26c-step-desc {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.pt-e54dd26c-progress {
    margin: 10px 20px 0;
    border-radius: 4px;
    overflow: hidden;
    /* height and background set via elementor controls */
}

.pt-e54dd26c-progress-bar {
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 4px;
    /* background set via elementor controls */
}

@media (max-width: 1024px) {
    .pt-e54dd26c-step {
        flex: 0 0 240px; /* ~3 cards on tablet */
    }
}

@media (max-width: 768px) {
    .pt-e54dd26c-heading {
        font-size: 2rem;
    }
    .pt-e54dd26c-step {
        flex: 0 0 200px; /* ~2 cards on mobile */
    }
}
