.elementor-1156 .elementor-element.elementor-element-62e5f40{--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-1156 .elementor-element.elementor-element-e168b11{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* styles.css - עיצוב למאמר ZIX על הלוואות עסקים בפריפריה */

/* איפוס ועיצוב בסיסי */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
}

/* עיצוב כותרת */
.article-header {
    border-bottom: 3px solid #2c5aa0;
    padding-bottom: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.publish-date {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

/* עיצוב תקציר מנהלים */
.executive-summary {
    background-color: #f0f7ff;
    border-right: 4px solid #2c5aa0;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
}

.executive-summary h2 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d1e3ff;
}

.executive-summary p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* עיצוב חלקי תוכן */
.content-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-right: 15px;
    position: relative;
}

.content-section h2::before {
    content: "?";
    position: absolute;
    right: -5px;
    top: -5px;
    background-color: #2c5aa0;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.direct-answer {
    background-color: #f8f9fa;
    border: 1px solid #d1e3ff;
    border-right: 4px solid #4a90e2;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
}

.direct-answer p {
    color: #1a365d;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

/* עיצוב טבלה */
.comparison-table {
    margin: 60px 0;
    overflow-x: auto;
}

.comparison-table h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

thead {
    background-color: #2c5aa0;
    color: white;
}

thead th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
}

tbody tr {
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.3s ease;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #e8f4ff;
}

tbody td {
    padding: 16px 15px;
    text-align: center;
    border-left: 1px solid #eaeaea;
}

tbody td:first-child {
    font-weight: 600;
    color: #1a365d;
    text-align: right;
    border-left: none;
}

/* עיצוב שאלות נפוצות */
.faq-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
}

.faq-section h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #d1e3ff;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #ccc;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-right: 25px;
    position: relative;
}

.faq-item h3::before {
    content: "Q";
    position: absolute;
    right: 0;
    top: 0;
    background-color: #4a90e2;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.faq-item p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    padding-right: 10px;
}

/* עיצוב רספונסיבי */
@media (max-width: 768px) {
    .article-container {
        padding: 20px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-section {
        padding: 25px;
    }
    
    .comparison-table {
        margin: 30px -20px;
        padding: 0 20px;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    thead th, tbody td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .article-container {
        padding: 15px;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    .direct-answer {
        padding: 15px;
    }
    
    .faq-section {
        padding: 20px 15px;
    }
}

/* עיצוב קל לקריאה וסריקה */
h2, h3 {
    line-height: 1.4;
}

p, td {
    line-height: 1.7;
}

strong {
    color: #1a365d;
    font-weight: 700;
}

/* אנימציות עדינות */
.content-section, .faq-item, .direct-answer {
    transition: all 0.3s ease;
}

/* הדגשת מונחים מקצועיים */
.terminology {
    background-color: #fff8e1;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    color: #d35400;
    border: 1px solid #ffeaa7;
}/* End custom CSS */