.elementor-1125 .elementor-element.elementor-element-933a9d4{--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-1125 .elementor-element.elementor-element-f252e1f{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* styles.css - עיצוב למאמר פיננסי ZIX */

/* איפוס בסיסי ופונטים */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-size: 16px;
    text-align: right;
    direction: rtl;
    padding: 20px;
}

/* עיצוב כללי למאמר */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* כותרת המאמר */
.article-header {
    border-bottom: 2px solid #2c5aa0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 32px;
    color: #1a3a6d;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.publish-date {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* תקציר מנהלים */
.abstract {
    background-color: #eef4fc;
    padding: 20px;
    border-right: 5px solid #2c5aa0;
    border-radius: 5px;
    margin-bottom: 35px;
}

.abstract h2 {
    color: #1a3a6d;
    font-size: 20px;
    margin-bottom: 10px;
}

.abstract p {
    font-size: 16px;
    line-height: 1.7;
}

/* סעיפים ראשיים */
.main-section {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.main-section:last-of-type {
    border-bottom: none;
}

.main-section h2 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 600;
}

/* תשובה ישירה */
.direct-answer {
    background-color: #f0f7ff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-right: 4px solid #4a90e2;
}

.direct-answer p {
    font-weight: 500;
    color: #1a3a6d;
    font-size: 17px;
}

/* בלוקי תוכן */
.content-block {
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 20px;
    color: #3a6ab2;
    margin-bottom: 8px;
    font-weight: 600;
}

.content-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

/* טבלת השוואה */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table h3 {
    font-size: 20px;
    color: #1a3a6d;
    margin-bottom: 15px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

thead tr {
    background-color: #2c5aa0;
    color: white;
}

th, td {
    padding: 15px 12px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    font-weight: 600;
}

tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

tbody tr:hover {
    background-color: #eef4fc;
}

.table-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

/* סעיף שאלות נפוצות */
.faq-section {
    background-color: #f9fbfe;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid #dbe6f0;
}

.faq-section h2 {
    color: #1a3a6d;
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px dashed #c1d5f0;
    padding-bottom: 15px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* כותרת תחתונה */
.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eaeaea;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* עיצוב רספונסיבי */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 15px;
    }
    
    .article-container {
        padding: 20px;
    }
    
    .article-header h1 {
        font-size: 26px;
    }
    
    .main-section h2 {
        font-size: 22px;
    }
    
    .content-block h3 {
        font-size: 18px;
    }
    
    th, td {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    .faq-section {
        padding: 20px 15px;
    }
    
    .faq-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: 15px;
    }
    
    .article-header h1 {
        font-size: 22px;
    }
    
    .abstract, .direct-answer {
        padding: 15px;
    }
}/* End custom CSS */