/* עיצוב הכותרת ויישור האלמנטים */
.title-line .elementor-heading-title {
    display: inline-flex; /* משתמשים ב-inline-flex כדי שהאלמנט יתכווץ לגודל של עצמו */
    align-items: center;
    gap: 0px; /* המרחק בין התמונות לטקסט */
}

/* הגדרות בסיס לשני הצדדים */
.title-line .elementor-heading-title::before,
.title-line .elementor-heading-title::after {
    content: "";
    width: 100px; /* תגדיר כאן את הרוחב הקבוע שאתה רוצה עבור הקווים בדסקטופ */
    height: 4px;  /* הגובה שהגדרת */
    flex-shrink: 0; /* מונע מהקווים להתכווץ אם הטקסט ארוך */
    background-repeat: no-repeat;
    background-size: contain; 
}

/* צד שמאל */
.title-line .elementor-heading-title::before {
    background-image: url('https://hclramle.vps4044.vangus.link/wp-content/uploads/2026/05/tline-right.svg');
    background-position: center;
}

/* צד ימין */
.title-line .elementor-heading-title::after {
    background-image: url('https://hclramle.vps4044.vangus.link/wp-content/uploads/2026/05/tline-left.svg');
    background-position: center;
}

/* טיפול במובייל - העלמת הקווים כדי שלא יפריעו לשורות */
@media (max-width: 767px) {
    .title-line .elementor-heading-title {
        display: block; 
    }
    .title-line .elementor-heading-title::before,
    .title-line .elementor-heading-title::after {
        display: none; 
    }
}



body:not(.elementor-editor-active) .mihraz-body{display:none;}

































