/* s_feature_steps.css */
.s_feature_steps {
    position: relative;
    overflow: hidden;
}

.s_feature_steps .feature-step {
    opacity: 0.3;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.s_feature_steps .feature-step.active {
    opacity: 1;
}

.s_feature_steps .step-indicator {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    /* muted-foreground */
    background-color: #f3f4f6;
    /* muted */
    transition: all 0.3s ease;
    font-weight: 600;
}

.s_feature_steps .feature-step.active .step-indicator {
    background-color: var(--o-color-primary, #007bff);
    border-color: var(--o-color-primary, #007bff);
    color: white;
    transform: scale(1.1);
}

.s_feature_steps .feature-step.completed .step-indicator {
    background-color: var(--o-color-primary, #007bff);
    border-color: var(--o-color-primary, #007bff);
    color: white;
}

.s_feature_steps .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 100%;
    min-height: 300px;
}

@media (min-width: 768px) {
    .s_feature_steps .image-container {
        min-height: 400px;
    }
}

.s_feature_steps .feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(100px) rotateX(-20deg);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    visibility: hidden;
}

.s_feature_steps .feature-image.active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    visibility: visible;
    z-index: 10;
}

.s_feature_steps .feature-image.exit {
    opacity: 0;
    transform: translateY(-100px) rotateX(20deg);
    z-index: 5;
}

/* Base styles for Typography mirroring Tailwind */
.s_feature_steps h2 {
    font-weight: 700;
}

.s_feature_steps h3 {
    font-weight: 600;
}

.s_feature_steps p {
    color: #6b7280;
    /* muted-foreground */
}