.mt-wrapper-8e734956 {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    background: transparent;
}

/* Connector line */
.mt-wrapper-8e734956::before {
    content: '';
    position: absolute;
    background-color: #DED9CE; /* Light muted beige fallback */
    z-index: 0;
}

.mt-step-8e734956 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mt-step-number {
    font-size: 42px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: transparent;
    display: inline-block;
}

.mt-step-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.mt-step-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* Mobile defaults (vertical line) */
@media (max-width: 767px) {
    .mt-wrapper-8e734956 {
        padding-left: 1.5rem;
    }
    .mt-wrapper-8e734956::before {
        left: 0;
        top: 0;
        bottom: 0;
        width: 1px;
    }
    .mt-step-8e734956 {
        padding-left: 1.5rem;
    }
}

/* Desktop horizontal layout */
@media (min-width: 768px) {
    .mt-wrapper-8e734956 {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .mt-step-8e734956 {
        flex: 1;
        text-align: left;
    }
    
    /* Horizontal connector line */
    .mt-wrapper-8e734956::before {
        top: 24px; /* Center with the large number approx */
        left: 0;
        right: 0;
        height: 1px;
        width: 100%;
    }
    
    /* Small gap in line behind numbers (optional effect via opaque bg on number wrapper, but pure transparent requested, so line runs behind) */
}