/* PATCH: Schrittnavigation breiter machen */

.steps {
    gap: 5rem !important;  /* Vorher: 3.5rem */
}

.step {
    min-width: 220px !important;  /* Vorher: 180px */
}

.step-label {
    min-width: 140px !important;  /* Vorher: 120px */
}

/* Connector Line anpassen */
.step:not(:last-child)::after {
    right: -2rem !important;  /* Vorher: -1.34rem */
    width: 2rem !important;   /* Vorher: 1.34rem */
}

@media (max-width: 1200px) {
    .steps {
        gap: 4rem !important;
    }
    
    .step {
        min-width: 200px !important;
    }
    
    .step:not(:last-child)::after {
        width: 1.6rem !important;
        right: -1.6rem !important;
    }
}

@media (max-width: 992px) {
    .steps {
        gap: 3rem !important;
    }
    
    .step {
        min-width: 170px !important;
    }
    
    .step:not(:last-child)::after {
        width: 1.2rem !important;
        right: -1.2rem !important;
    }
}
