.stw-wrapper {
    position: relative;
    width: 100%;
    direction: rtl;
}

.stw-items {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 28px;
}

/* קו — right מחושב כך שיעבור במרכז הנקודה (11px = מחצית 22px) */
.stw-line-wrap {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 1;
}

.stw-line-track {
    width: 2px;
    height: 100%;
    background-color: #d9d9d9;
    position: relative;
}

.stw-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: #c8962e;
    will-change: height;
}

.stw-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

/* נקודה — קטנה, מלאה, ללא border חיצוני */
.stw-dot-wrap {
    position: absolute;
    right: -22px;     /* (2px קו / 2) + (10px / 2) - מרכז */
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c8962e;
    z-index: 2;
}

.stw-dot {
    display: none; 
}

.stw-card {
    background-color: #f7f7f4;
    border-radius: 6px;
    padding: 14px 18px;
    width: 100%;
    text-align: right;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.stw-title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 6px 0;
    color: #c8962e;
}

.stw-desc {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.6;
}


.stw-card {
    position: relative;
}

.stw-card::after {
    content: '';
    position: absolute;
    top: 16px;
    right: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #f7f7f4;
    z-index: 3;
}

.stw-card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: -11px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 10px solid rgba(0,0,0,0.06);
    z-index: 1;
}