.elementor-953 .elementor-element.elementor-element-5014fd4{--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-953 .elementor-element.elementor-element-32abfbf{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* zix-article.css - עיצוב מאמר פיננסי ל-ZIX */

/* משתנים ותצורה כללית */
:root {
    --primary-color: #1a5f7a;
    --secondary-color: #57a6c7;
    --accent-color: #ff6b35;
    --light-color: #f8f9fa;
    --dark-color: #2d3748;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* איפוס וסגנונות בסיס */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f7fa;
    direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* עיצוב המיכל הראשי */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    margin-top: 20px;
    margin-bottom: 40px;
}

/* כותרת המאמר */
.article-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--gray-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.main-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* תיבת תקציר */
.abstract-box {
    background-color: #f0f8ff;
    border-right: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.abstract-box h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.abstract-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* תוכן עניינים */
.toc {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2.5rem;
    border: 1px solid var(--light-gray);
}

.toc h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc ul {
    list-style-type: none;
    padding-right: 1rem;
    margin-top: 1rem;
}

.toc li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-right: 1.5rem;
}

.toc li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* סעיפי התוכן */
.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed var(--light-gray);
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.direct-answer {
    background-color: #f8f9fa;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    margin: 1.2rem 0;
    border-right: 3px solid var(--accent-color);
}

.direct-answer p {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
}

.detailed-content {
    margin-top: 1.5rem;
}

.detailed-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.detailed-content ul, .detailed-content ol {
    padding-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.detailed-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* תיבות מידע מיוחדות */
.warning-box, .info-box {
    padding: 1.2rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.warning-box {
    background-color: #fff8f0;
    border-right: 4px solid #ffa500;
}

.info-box {
    background-color: #f0f9ff;
    border-right: 4px solid var(--secondary-color);
}

.warning-box h4, .info-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.warning-box h4 {
    color: #d35400;
}

.info-box h4 {
    color: var(--primary-color);
}

/* טבלה */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 0 0 1px var(--light-gray);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

thead {
    background-color: var(--primary-color);
    color: white;
}

th, td {
    padding: 1rem;
    text-align: right;
    border-bottom: 1px solid var(--light-gray);
}

th {
    font-weight: 600;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #e9f7fe;
}

/* שאלות נפוצות */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--light-color);
    border: none;
    text-align: right;
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-answer {
    padding: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1.2rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* סיכום */
.conclusion {
    background-color: #f0f8f0;
    padding: 1.8rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    border-right: 4px solid #4caf50;
}

.conclusion h3 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.conclusion p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* כותרת תחתונה */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Rubik', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.footer-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* הדגשות מיוחדות */
.highlight-term {
    background-color: #fffacd;
    padding: 2px 4px;
    border-radius: 3px;
}

/* עיצוב רספונסיבי */
@media (max-width: 768px) {
    .article-container {
        padding: 15px;
        margin-top: 10px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    th, td {
        padding: 0.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .abstract-box, .toc, .direct-answer, .warning-box, .info-box {
        padding: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    th, td {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}/* End custom CSS */