.elementor-964 .elementor-element.elementor-element-ebbe0d5{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-964 .elementor-element.elementor-element-f249fbe{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* עיצוב מאמר פיננסי ל-ZIX - 2026 */
:root {
    --primary-color: #0056b3;
    --secondary-color: #28a745;
    --accent-color: #ff6b35;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
    --font-primary: 'Rubik', 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

.financial-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
}

/* כותרת המאמר */
.article-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* תוכן ראשי */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

/* תקציר מנהלים */
.executive-summary {
    background-color: var(--light-gray);
    border-right: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    width: 100%;
}

.summary-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* תוכן מרכזי */
.main-content {
    flex: 1;
    min-width: 300px;
}

.content-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-of-type {
    border-bottom: none;
}

.question-h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.question-h3 {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 10px;
    border-right: 3px solid var(--accent-color);
}

.direct-answer {
    background-color: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.content-block {
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-block:last-child {
    margin-bottom: 0;
}

/* טבלת השוואה */
.comparison-section {
    margin: 40px 0;
}

.comparison-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.table-container {
    overflow-x: auto;
    margin: 0 -10px;
    padding: 0 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #004494;
}

.comparison-table td {
    padding: 12px 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

.comparison-table tbody tr:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

/* שאלות נפוצות */
.faq-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
}

.faq-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-gray);
    padding: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    padding: 15px;
    line-height: 1.7;
    background-color: white;
}

/* סרגל צד */
.sidebar {
    flex: 0 0 300px;
}

.sidebar-box {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-color);
    font-weight: 600;
}

.terms-list {
    list-style-type: none;
}

.terms-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
    line-height: 1.6;
}

.terms-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    font-style: italic;
}

.related-list {
    list-style-type: none;
}

.related-list li {
    margin-bottom: 12px;
}

.related-list a {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.related-list a:hover {
    color: #003d82;
    padding-right: 8px;
}

/* כותרת תחתונה */
.article-footer {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 3px solid var(--primary-color);
}

.footer-note {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.update-info {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* עיצוב רספונסיבי */
@media (max-width: 1100px) {
    .financial-article {
        padding: 15px;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .sidebar {
        flex: 0 0 250px;
    }
}

@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .main-content, .sidebar {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .financial-article {
        padding: 12px;
    }
    
    .main-title {
        font-size: 1.7rem;
    }
    
    .question-h2, .comparison-title, .faq-title {
        font-size: 1.4rem;
    }
    
    .question-h3 {
        font-size: 1.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .direct-answer, .content-block, .faq-answer, .sidebar-box {
        padding: 12px;
    }
    
    .executive-summary {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .financial-article {
        padding: 10px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .question-h2, .comparison-title, .faq-title {
        font-size: 1.3rem;
    }
    
    .question-h3 {
        font-size: 1.1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .article-meta {
        font-size: 0.8rem;
    }
}

/* הדגשת מונחים חשובים */
strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* מניעת פריצת טקסט */
p, li, td, th {
    word-break: break-word;
}

/* עדין hover אפקטים */
a:hover {
    text-decoration: underline;
}/* End custom CSS */