.elementor-929 .elementor-element.elementor-element-92fee56{--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 - עיצוב למאמר "איך לשפר דירוג אשראי (BDI) תוך 90 יום?"
* ZIX פיננסים - 2025
*/

/* Reset והגדרות בסיס */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* קונטיינר ראשי */
.article-container {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid #eaeaea;
}

/* כותרות */
h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
    text-align: center;
}

h2 {
    color: #2980b9;
    font-size: 1.9rem;
    margin-top: 45px;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid #ecf0f1;
    position: relative;
}

h2:before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100px;
    height: 3px;
    background-color: #3498db;
}

h3 {
    color: #16a085;
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* תקציר מנהלים */
.abstract {
    background: linear-gradient(135deg, #f1f8ff 0%, #e3f2fd 100%);
    padding: 25px 30px;
    border-right: 6px solid #3498db;
    margin: 25px 0 35px;
    border-radius: 10px;
    font-size: 1.15rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.abstract h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-top: 0;
    border-bottom: none;
}

.abstract h2:before {
    display: none;
}

/* תשובות ישירות */
.direct-answer {
    background-color: #f9fdf7;
    padding: 20px 25px;
    margin: 20px 0 25px;
    border-right: 5px solid #27ae60;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.1);
    line-height: 1.6;
}

/* בלוקי מידע */
.info-block {
    margin: 18px 0;
    padding: 18px 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border-right: 4px solid #a5d8ff;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 45px;
}

.info-block:before {
    content: "•";
    color: #3498db;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 15px;
}

.info-block:hover {
    background-color: #edf7ff;
    transform: translateX(-5px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
}

/* פסקאות */
p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* טבלאות */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

th {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    color: white;
    font-weight: 600;
    padding: 18px 15px;
    text-align: right;
    font-size: 1.05rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

td {
    padding: 16px 15px;
    text-align: right;
    border-bottom: 1px solid #eaeaea;
    font-size: 1.05rem;
}

tr {
    transition: background-color 0.2s ease;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

tr:hover {
    background-color: #e8f4fc;
}

/* עיצוב לתא הראשון בכל שורה */
td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* אזור שאלות נפוצות */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    margin-top: 50px;
    border-radius: 12px;
    border: 1px solid #dae0e5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 2rem;
    border-bottom: none;
}

.faq-section h2:before {
    display: none;
}

/* שאלות ב-FAQ */
.faq-question {
    font-weight: 700;
    color: #2c3e50;
    margin-top: 20px;
    cursor: pointer;
    padding: 18px 20px;
    background-color: #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.15rem;
    border-right: 4px solid #3498db;
    position: relative;
    padding-right: 50px;
}

.faq-question:after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #3498db;
}

.faq-question:hover {
    background-color: #d5e8f0;
    padding-right: 55px;
}

.faq-question.active:after {
    transform: translateY(-50%) rotate(180deg);
}

/* תשובות ב-FAQ */
.faq-answer {
    padding: 20px 25px;
    background-color: white;
    margin-bottom: 15px;
    border-radius: 8px;
    border-right: 4px solid #74b9ff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
    display: none;
}

/* תאריך פרסום */
.publish-date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1rem;
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

/* הדגשות ועיצובים נוספים */
em {
    color: #7f8c8d;
    font-size: 0.95rem;
}

strong {
    color: #2c3e50;
    font-weight: 700;
}

/* עיצוב רספונסיבי */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 16px;
    }
    
    .article-container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.9rem;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-top: 35px;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .direct-answer, .abstract, .info-block {
        padding: 15px;
    }
    
    table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
    }
    
    th, td {
        padding: 12px 10px;
        min-width: 150px;
    }
    
    .faq-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .abstract h2 {
        font-size: 1.5rem;
    }
}

/* אנימציות עדינות */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.article-container {
    animation: fadeIn 0.5s ease-out;
}

/* עיצוב לינקים (אם יישארו במאמר) */
a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dotted #3498db;
    transition: all 0.2s ease;
}

a:hover {
    color: #2980b9;
    border-bottom: 1px solid #2980b9;
}/* End custom CSS */