.elementor-1368 .elementor-element.elementor-element-3a268b0{--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 );}/* Start custom CSS *//* style.css - עיצוב מאמר פיננסי ZIX */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #0a3d62; /* כחול עמוק */
    --secondary-color: #3c6382; /* כחול בהיר יותר */
    --accent-color: #e67e22; /* כתום - להדגשות */
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --font-main: 'Heebo', sans-serif;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #f4f7fc;
    direction: rtl;
    text-align: right;
}

.article-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* טיפוגרפיה */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

h2.article-h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.3rem;
    margin-top: 2rem;
}

h3.section-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

/* תקצירים */
.key-takeaways, .conclusion-takeaways {
    background-color: var(--light-bg);
    border-right: 6px solid var(--accent-color);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.key-takeaways h2, .conclusion-takeaways h2 {
    margin-top: 0;
    border-bottom: none;
}

/* תשובה ישירה */
.direct-answer {
    background-color: #eef2f7;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-weight: 500;
    margin: 20px 0;
}

.direct-answer strong {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* טבלה */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 12px 10px;
    text-align: center;
}

.comparison-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: right;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

.comparison-table tr:hover {
    background-color: #e9ecef;
}

/* תיבות מיוחדות */
.personal-experience, .testing-results, .internal-links, .references, .faq-section {
    background-color: var(--light-bg);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.personal-experience {
    border-right: 6px solid #27ae60; /* ירוק */
}

.testing-results {
    border-right: 6px solid #e74c3c; /* אדום */
}

.testing-results ul {
    padding-right: 20px;
    margin-top: 10px;
}

.testing-results li {
    margin-bottom: 8px;
}

.internal-links ul {
    padding-right: 20px;
}

.internal-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.internal-links a:hover {
    text-decoration: underline;
}

/* Author Byline */
.author-byline {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    font-size: 1.1rem;
}

.author-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.author-credentials {
    color: var(--text-muted);
    background-color: #eef2f7;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.publish-date {
    color: var(--text-muted);
    margin-right: auto;
    font-size: 0.95rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 15px;
}

.faq-question {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.faq-answer {
    margin-right: 20px;
    color: var(--text-dark);
}

/* References */
.references a {
    color: var(--accent-color);
    word-break: break-word;
}

/* רספונסיביות */
@media (max-width: 768px) {
    .article-container {
        padding: 20px;
        margin: 20px;
    }

    h2.article-h2 {
        font-size: 1.5rem;
    }

    .author-byline {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .publish-date {
        margin-right: 0;
    }

    .comparison-table {
        font-size: 0.8rem;
    }
}/* End custom CSS */