/* Desktop Layout - Horizontal Row */
.sps-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sps-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 30px;
}

.sps-step {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sps-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.sps-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sps-step-number {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.sps-step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin-left: -5px;
    z-index: 1;
}

.sps-step:last-child .sps-step-line {
    display: none;
}

.sps-step-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.sps-step-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Swiper overrides for desktop */
@media (min-width: 768px) {
    .sps-container.swiper {
        overflow: visible;
    }
    .sps-wrapper.swiper-wrapper {
        transform: none !important;
    }
    .sps-container .swiper-pagination {
        display: none;
    }
}

/* Mobile Layout - Swiper Slider */
@media (max-width: 767px) {
    .sps-wrapper {
        gap: 0;
    }
    .sps-step {
        width: 80%; /* roughly 1.2 slides per view */
    }
    .sps-step-line {
        display: none; /* Hide connecting lines on mobile */
    }
    .sps-container .swiper-pagination {
        position: relative;
        margin-top: 20px;
    }
}