.elementor-1378 .elementor-element.elementor-element-22313e7a{--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 *//* 
 * עיצוב למאמר: הלוואות בצקים עם שליח
 * גרסת CSS נפרדת - תואמת לעיצוב האתר הקיים
 * מניעת התנגשויות ע"י שימוש במחלקות ספציפיות
 */

/* משתנים גלובליים תואמי אתר */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --border-color: #ddd;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

/* איפוס והגדרות בסיס */
.article-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.article-container {
    font-family: 'Segoe UI', 'Heebo', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    direction: rtl;
    text-align: right;
}

/* כותרת המאמר */
.article-header {
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.meta-info {
    display: flex;
    gap: 25px;
    color: #666;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.meta-info span {
    display: flex;
    align-items: center;
}

.meta-info span::before {
    content: "•";
    margin-left: 5px;
    color: var(--secondary-color);
}

.meta-info span:first-child::before {
    display: none;
}

/* סיכום מנהלים */
.executive-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-right: 4px solid var(--secondary-color);
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px var(--shadow-light);
}

.executive-summary h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.summary-content {
    font-size: 1.1rem;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.conclusion {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    border-right: 3px solid var(--success-color);
    font-weight: 600;
}

/* סעיפי תוכן כלליים */
.content-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.content-section h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.content-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.content-section p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* רשימות והגדרות */
.definition-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.definition-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.definition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-light);
}

.data-highlight {
    background-color: #e8f4fc;
    border-right: 4px solid var(--secondary-color);
    padding: 25px;
    margin: 25px 0;
    border-radius: 6px;
}

.data-highlight ul {
    list-style-position: inside;
    margin-top: 15px;
}

.data-highlight li {
    margin-bottom: 8px;
    padding-right: 10px;
}

/* טבלת השוואה */
.comparison-table-container {
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: 0 5px 15px var(--shadow-light);
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table caption {
    caption-side: top;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 15px;
    background-color: var(--light-color);
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 18px 15px;
    text-align: right;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tbody tr:hover {
    background-color: #f0f7ff;
}

.comparison-table td {
    padding: 16px 15px;
    border: 1px solid var(--border-color);
    vertical-align: top;
}

.comparison-table td strong {
    color: var(--accent-color);
}

.analysis-note {
    background-color: #fffde7;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
    border-right: 4px solid var(--warning-color);
    font-style: italic;
}

/* גרפים ותרשימים */
.chart-container {
    background-color: white;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.chart-container h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mermaid {
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ציטוט רגולטורי */
.regulation-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-right: 4px solid var(--primary-color);
    padding: 25px;
    margin: 25px 0;
    font-style: italic;
    position: relative;
}

.regulation-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    right: 20px;
    top: 10px;
    opacity: 0.3;
}

.regulation-quote cite {
    display: block;
    text-align: left;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

/* נתונים בלעדיים */
.exclusive-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.data-point {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px var(--shadow-light);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.data-point:hover {
    transform: translateY(-5px);
}

.data-point h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* מקרה בוחן */
.case-study {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.process-list {
    list-style-type: none;
    counter-reset: step-counter;
    margin: 25px 0;
}

.process-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-right: 60px;
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.process-list li::before {
    content: counter(step-counter);
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.result-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow-light);
}

.result-item h4 {
    color: var(--success-color);
    margin-bottom: 10px;
}

.key-lessons {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border-right: 4px solid var(--success-color);
}

.key-lessons ul {
    list-style-position: inside;
    margin-top: 15px;
}

.key-lessons li {
    margin-bottom: 10px;
    padding-right: 10px;
}

/* שאלות נפוצות */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.faq-question {
    background-color: var(--light-color);
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* סיכום ומסקנות */
.conclusion-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.strategic-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.recommendation {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.recommendation h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.final-statement {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 40px;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
}

/* כותרת תחתונה */
.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid var(--border-color);
}

.sources {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sources h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sources ul {
    list-style-position: inside;
}

.sources li {
    margin-bottom: 10px;
    padding-right: 10px;
}

.sources a {
    color: var(--secondary-color);
    text-decoration: none;
}

.sources a:hover {
    text-decoration: underline;
}

.author-credentials {
    background-color: #e8f4fc;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.author-credentials h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.disclaimer {
    background-color: #ffebee;
    padding: 20px;
    border-radius: 8px;
    border-right: 4px solid var(--danger-color);
    font-size: 0.95rem;
}

/* קישורים חיצוניים */
.external-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-right: 20px;
}

.external-link::after {
    content: "↗";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.9em;
}

.external-link:hover {
    text-decoration: underline;
}

/* אנימציות עדינות */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.article-container {
    animation: fadeIn 0.5s ease-out;
}

/* התאמות למובייל */
@media (max-width: 768px) {
    .article-container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .definition-list,
    .exclusive-data,
    .results-grid,
    .strategic-recommendations {
        grid-template-columns: 1fr;
    }
    
    .executive-summary,
    .content-section,
    .chart-container,
    .case-study {
        padding: 20px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .process-list li {
        padding-right: 50px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.7rem;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
    
    .chart-container {
        padding: 15px;
    }
}

/* הדפסה */
@media print {
    .article-container {
        max-width: 100%;
        padding: 0;
    }
    
    .faq-question::after,
    .external-link::after {
        display: none;
    }
    
    .article-footer {
        page-break-before: always;
    }
    
    .chart-container {
        page-break-inside: avoid;
    }
}/* End custom CSS */