.elementor-187 .elementor-element.elementor-element-89ff606{--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 - עיצוב מותאם למאמר לוקאלי */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background-color: #f9fafc;
    color: #1e2b3a;
    line-height: 1.6;
    padding: 30px 15px;
    direction: rtl;
}

.local-article {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 20, 50, 0.15);
    padding: 40px 45px;
}

/* כותרת ראשית */
.article-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003366;
    border-right: 6px solid #ffaa00;
    padding-right: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.author-date {
    color: #5f6b7a;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e7ef;
    padding-bottom: 15px;
}

/* בלוק תשובה מקומית ישירה */
.local-answer-block {
    background-color: #eef5ff;
    border-radius: 18px;
    padding: 25px 30px;
    margin: 25px 0;
    border-right: 4px solid #003366;
    font-size: 1.1rem;
}

.local-answer-block p {
    margin-bottom: 0;
}

.local-answer-block strong {
    color: #003366;
    font-size: 1.2rem;
}

/* כותרות משנה H2 */
h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #003366;
    margin: 40px 0 20px 0;
    position: relative;
    padding-bottom: 8px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to left, #ffaa00, #ffdd88);
    border-radius: 3px;
}

/* פסקאות */
p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

/* רשימות */
ul {
    margin: 20px 0 20px 20px;
}

li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* טבלת השוואה */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table th {
    background-color: #003366;
    color: white;
    font-weight: 600;
    padding: 15px 12px;
    text-align: center;
}

.comparison-table td {
    border: 1px solid #d4deec;
    padding: 14px 12px;
    background-color: white;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    background-color: #f4f8ff;
}

/* בלוק קריאה לפעולה */
.cta-block {
    background: linear-gradient(145deg, #002855, #003d7a);
    color: white;
    padding: 35px 30px;
    border-radius: 30px;
    margin: 45px 0;
    text-align: center;
    box-shadow: 0 15px 25px rgba(0,40,80,0.3);
}

.cta-block p {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.cta-block strong {
    color: #ffcc66;
    font-size: 1.4rem;
}

.cta-block a {
    color: white;
    background-color: #ffaa00;
    padding: 10px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    border: 2px solid #ffaa00;
    transition: 0.3s;
}

.cta-block a:hover {
    background-color: transparent;
    color: #ffaa00;
}

/* שאלות נפוצות */
.faq-section {
    background-color: #f2f6fd;
    border-radius: 24px;
    padding: 25px 30px;
    margin: 35px 0;
}

.faq-section p {
    margin-bottom: 20px;
    border-bottom: 1px dashed #bcc9db;
    padding-bottom: 15px;
}

.faq-section p:last-child {
    border-bottom: none;
}

.faq-section strong {
    color: #003366;
}

/* רספונסיביות */
@media (max-width: 650px) {
    .local-article {
        padding: 25px 20px;
    }
    .article-header h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .cta-block p {
        font-size: 1rem;
    }
    .comparison-table th, .comparison-table td {
        padding: 8px 6px;
        font-size: 0.9rem;
    }
}/* End custom CSS */