/* ==============================================
   training.css – עיצוב אזור ההכשרות (ציר הזמן)
   פריטי ציר הזמן, נקודות, תוכן ותגיות
   ============================================== */


/* ==============================================
   7. ציר הזמן האקדמי (Timeline)
   ============================================== */

/* פריט בציר הזמן – בסיסי (מובייל) */
.timeline-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding-inline-start: 3.5rem;
}

/* בדסקטופ: פריטים מתחלפים בין שני צדי הקו המרכזי */
@media (min-width: 768px) {
    .timeline-item {
        padding-inline-start: 0;
        width: 50%;
    }

    /* פריטים אי-זוגיים – צד שמאל */
    .timeline-item:nth-child(odd) {
        margin-inline-start: auto;
        padding-inline-start: 3rem;
    }

    /* פריטים זוגיים – צד ימין, הפוך */
    .timeline-item:nth-child(even) {
        padding-inline-end: 3rem;
        flex-direction: row-reverse;
        text-align: end;
    }
}

/* נקודה עגולה על הציר עם גרדיאנט ירוק */
.timeline-dot {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #78aa88, #437254);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Assistant', 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px -4px rgba(55, 92, 69, 0.4);
    z-index: 1;
    flex-shrink: 0;
}

/* מיקום הנקודות בדסקטופ לפי זוגיות */
@media (min-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-dot {
        inset-inline-start: -1.5rem;
    }
    .timeline-item:nth-child(even) .timeline-dot {
        inset-inline-end: -1.5rem;
        inset-inline-start: auto;
    }
}

/* כרטיס תוכן ציר הזמן */
.timeline-content {
    background-color: #ffffff;
    border: 1px solid #e4efe7;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px -2px rgba(55, 92, 69, 0.06);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* הרמה קלה בעת hover */
.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(55, 92, 69, 0.2);
}

/* תגית סוג ההכשרה */
.timeline-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #437254;
    background-color: #e4efe7;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

/* תגית "בהווה" עם גרדיאנט זהב */
.timeline-tag.highlight {
    color: #273d30;
    background: linear-gradient(90deg, #ead4a5, #f3e8cc);
}

/* כותרת ההכשרה */
.timeline-title {
    font-family: 'Assistant', 'Heebo', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #273d30;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

/* תיאור ההכשרה */
.timeline-desc {
    color: #394842;
    line-height: 1.6;
    font-size: 0.95rem;
}
