.elementor-985 .elementor-element.elementor-element-42abe1e{--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-985 .elementor-element.elementor-element-e777ba4{font-family:"Noto Sans Hebrew", Sans-serif;}/* Start custom CSS *//* עיצוב כללי למאמר פיננסי - ZIX פיננסים */
:root {
    --primary-color: #0056b3; /* כחול עסקי */
    --secondary-color: #28a745; /* ירוק פיננסי */
    --accent-color: #ff6b35; /* כתום להדגשות */
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --medium-text: #495057;
    --light-text: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: #fff;
    direction: rtl;
    text-align: right;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.financial-article {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 40px;
}

/* כותרות */
h1, h2, h3, h4 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 1.5em;
    margin-bottom: 0.7em;
    line-height: 1.3;
}

.main-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-top: 0.3em;
    margin-bottom: 0.5em;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 15px;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    border-right: 4px solid var(--accent-color);
    padding-right: 15px;
    margin-top: 2em;
}

h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 1.8em;
}

/* שאלה ככותרת */
.question-heading {
    color: var(--primary-color);
    border-right: 4px solid var(--secondary-color);
    padding-right: 15px;
    background-color: rgba(248, 249, 250, 0.5);
    padding: 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-top: 2.5em;
}

/* כותרת עליונה */
.article-header {
    margin-bottom: 30px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.breadcrumb a {
    color: var(--medium-text);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.meta-info {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 10px;
}

/* תקציר */
.abstract-box {
    background-color: var(--light-bg);
    border-right: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-bottom: 30px;
}

.abstract-box h2 {
    border: none;
    padding-right: 0;
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.abstract-box p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* תוכן עניינים */
.article-toc {
    background-color: #f0f7ff;
    border: 1px solid #cce5ff;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 35px;
}

.article-toc h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.article-toc ul {
    list-style-type: none;
    padding-right: 20px;
}

.article-toc li {
    margin-bottom: 10px;
    position: relative;
}

.article-toc li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

.article-toc a {
    color: var(--medium-text);
    text-decoration: none;
    transition: color 0.2s;
}

.article-toc a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* תשובה ישירה */
.direct-answer {
    background-color: #e8f4ff;
    border-right: 3px solid var(--primary-color);
    padding: 18px;
    margin: 20px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.direct-answer p {
    font-weight: 500;
    color: var(--dark-text);
    font-size: 1.05rem;
    margin: 0;
}

/* תוכן מפורט */
.detailed-content {
    margin-bottom: 30px;
}

.detailed-content p {
    margin-bottom: 1.2em;
    text-align: justify;
    hyphens: auto;
}

.detailed-content strong {
    color: var(--dark-text);
}

/* טבלה */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

thead {
    background-color: var(--primary-color);
    color: white;
}

th {
    padding: 15px 12px;
    text-align: right;
    font-weight: 600;
    border-bottom: 3px solid var(--accent-color);
}

td {
    padding: 12px;
    text-align: right;
    border: 1px solid var(--border-color);
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #e9ecef;
    transition: background-color 0.2s;
}

/* FAQ */
.faq-section {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

.faq-section h2 {
    border: none;
    padding-right: 0;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question:before {
    content: "Q:";
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.faq-answer {
    padding-right: 30px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* כותרת תחתונה */
.article-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid var(--light-bg);
}

.disclaimer {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.disclaimer h3 {
    color: #856404;
    margin-top: 0;
}

.disclaimer p {
    color: #856404;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.article-meta {
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

/* קישורים */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #004085;
}

/* הדגשות */
strong {
    color: var(--dark-text);
}

/* עיצוב רספונסיבי */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .financial-article {
        padding: 20px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 5px;
    }
    
    table {
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 8px 6px;
    }
    
    .direct-answer, .abstract-box, .article-toc, .faq-section {
        padding: 15px;
    }
}/* End custom CSS */