.zt-9bfc881b-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.zt-9bfc881b-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* Adjust top and bottom to stop at the middle of the first and last badge roughly. 
       We use padding of the wrapper + half the badge height approx. */
    top: 60px; 
    bottom: 60px;
    width: 2px;
    background-color: #6C4CF1; /* fallback */
    z-index: 1;
}

.zt-9bfc881b-item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.zt-9bfc881b-item:last-child {
    margin-bottom: 0;
}

.zt-9bfc881b-content-wrap,
.zt-9bfc881b-spacer {
    width: 50%;
}

.zt-9bfc881b-badge-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.zt-9bfc881b-badge {
    background-color: #6C4CF1; /* fallback */
    color: #FFFFFF;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    text-align: center;
}

.zt-9bfc881b-card {
    background-color: #FFFFFF; /* fallback */
    border: 1px solid #EEEEEE; /* fallback */
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.zt-9bfc881b-card:hover {
    transform: translateY(-5px);
}

.zt-9bfc881b-left .zt-9bfc881b-content-wrap {
    padding-right: 60px;
}

.zt-9bfc881b-left .zt-9bfc881b-spacer {
    display: block;
}

.zt-9bfc881b-right {
    flex-direction: row-reverse;
}

.zt-9bfc881b-right .zt-9bfc881b-content-wrap {
    padding-left: 60px;
}

.zt-9bfc881b-card-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

.zt-9bfc881b-card-desc {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .zt-9bfc881b-line {
        left: 20px;
        transform: none;
        top: 60px;
        bottom: 60px;
    }
    
    .zt-9bfc881b-item,
    .zt-9bfc881b-right {
        flex-direction: column;
        align-items: flex-start;
    }

    .zt-9bfc881b-content-wrap,
    .zt-9bfc881b-spacer {
        width: 100%;
    }

    .zt-9bfc881b-spacer {
        display: none;
    }

    .zt-9bfc881b-badge-wrap {
        position: static;
        transform: none;
        margin-bottom: 20px;
        margin-left: 20px;
    }

    .zt-9bfc881b-left .zt-9bfc881b-content-wrap,
    .zt-9bfc881b-right .zt-9bfc881b-content-wrap {
        padding-left: 50px;
        padding-right: 0;
    }
    
    .zt-9bfc881b-badge {
        transform: translateX(-50%);
    }
}