.elementor-1260 .elementor-element.elementor-element-750e8fbe{--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 */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.financial-article {
    max-width: 1000px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0,20,50,0.15);
    padding: 2.5rem;
    margin: 0 auto;
}

/* תקציר מנהלים */
.abstract {
    background-color: #eef3fc;
    border-right: 6px solid #1e4a7a;
    padding: 1.5rem 2rem;
    border-radius: 0 20px 20px 0;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    color: #0a1c2f;
    font-weight: 400;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* כותרות */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #0b2b4a;
    border-bottom: 2px solid #dde3ed;
    padding-bottom: 1rem;
}

h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 2.2rem 0 1rem 0;
    color: #153b60;
    position: relative;
    padding-right: 1rem;
}

h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.4rem;
    height: 70%;
    width: 5px;
    background-color: #2c7cb0;
    border-radius: 8px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.5rem 0 0.8rem 0;
    color: #1f4a72;
}

/* תשובות ישירות */
.short-answer {
    background-color: #f9fcff;
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    border: 1px solid #cbd6e6;
    margin-bottom: 1.8rem;
    font-weight: 400;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.short-answer strong {
    color: #003b6f;
    font-weight: 600;
}

/* פסקאות */
p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #1e2f40;
}

/* טבלה */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.98rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table caption {
    text-align: right;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2a4b74;
    font-size: 1.1rem;
}

.comparison-table th {
    background-color: #1f3a5f;
    color: white;
    font-weight: 500;
    padding: 1rem 1.2rem;
    text-align: right;
}

.comparison-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #e0e6f0;
    background-color: white;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover td {
    background-color: #f2f8ff;
}

/* רשימות */
ul {
    margin: 1.2rem 0 1.8rem 1.5rem;
    padding-right: 1rem;
}

li {
    margin-bottom: 0.6rem;
    font-size: 1.03rem;
}

/* FAQ */
.faq-section {
    background-color: #f6f9fe;
    border-radius: 28px;
    padding: 2rem 2rem 1.5rem 2rem;
    margin: 2.5rem 0 1.5rem;
}

.faq-item {
    border-bottom: 1px solid #cddcf2;
    padding: 1rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #113855;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3::before {
    content: "❓";
    font-size: 1.2rem;
    opacity: 0.8;
}

.faq-item p {
    margin-right: 1.8rem;
    margin-bottom: 0.4rem;
    color: #25415c;
}

/* footer */
.article-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed #b2c7de;
    font-size: 0.95rem;
    color: #3f556b;
}

/* רספונסיביות */
@media (max-width: 700px) {
    .financial-article {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .abstract {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}/* End custom CSS */