.elementor-4860 .elementor-element.elementor-element-43a3da7{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );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 );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS *//* styles.css - עיצוב בסיסי בלבד שלא יתערב בעיצוב האתר הקיים */
/* יש להוסיף קלאסים אלו רק לאלמנטים של המאמר */

/* ===== סגנונות כלליים למאמר ===== */
.dcn-pillar-article {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== כותרות ===== */
.dcn-h1 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.dcn-h2 {
    color: #34495e;
    margin-top: 40px;
    border-right: 4px solid #3498db;
    padding-right: 15px;
    font-size: 1.8rem;
}

.dcn-h3 {
    color: #2c3e50;
    margin-top: 25px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* ===== תשובה מהירה ===== */
.dcn-quick-answer {
    background-color: #f8f9fa;
    border-right: 4px solid #2ecc71;
    padding: 25px;
    margin: 25px 0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.dcn-quick-answer-title {
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ===== פסקאות וטקסט ===== */
.dcn-paragraph {
    margin-bottom: 20px;
    text-align: justify;
}

.dcn-strong {
    color: #2980b9;
    font-weight: 600;
}

/* ===== תקציר מנהלים ===== */
.dcn-executive-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.dcn-executive-summary-hebrew,
.dcn-executive-summary-english {
    margin-bottom: 30px;
}

.dcn-executive-summary h3 {
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

/* ===== טבלה השוואתית ===== */
.dcn-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
}

.dcn-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.dcn-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: right;
    border: 1px solid #2980b9;
}

.dcn-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: right;
}

.dcn-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.dcn-table tr:hover {
    background-color: #e8f4fc;
}

/* ===== רשימות ===== */
.dcn-ul, .dcn-ol {
    margin-right: 20px;
    margin-bottom: 20px;
}

.dcn-li {
    margin-bottom: 10px;
    padding-right: 10px;
}

.dcn-ul li::marker {
    color: #3498db;
}

.dcn-ol {
    counter-reset: item;
}

.dcn-ol li {
    counter-increment: item;
    margin-bottom: 15px;
}

.dcn-ol li::before {
    content: counter(item) ". ";
    color: #3498db;
    font-weight: bold;
    margin-left: 5px;
}

/* ===== Case Study ===== */
.dcn-case-study {
    background-color: #fff8e1;
    border: 1px solid #ffd54f;
    border-right: 4px solid #ff9800;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.dcn-case-study-title {
    color: #f57c00;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== FAQ ===== */
.dcn-faq-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
}

.dcn-faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.dcn-faq-item:last-child {
    border-bottom: none;
}

.dcn-faq-question {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dcn-faq-answer {
    color: #555;
    padding-right: 30px;
}

/* ===== הדגשות ושוליים ===== */
.dcn-note {
    background-color: #e8f4fc;
    border-right: 4px solid #3498db;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-style: italic;
}

.dcn-warning {
    background-color: #ffeaa7;
    border-right: 4px solid #fdcb6e;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.dcn-source {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .dcn-pillar-article {
        padding: 15px;
    }
    
    .dcn-h1 {
        font-size: 2rem;
    }
    
    .dcn-h2 {
        font-size: 1.5rem;
    }
    
    .dcn-table-container {
        margin: 15px -15px;
        border-radius: 0;
    }
}

/* ===== אנימציות עדינות ===== */
.dcn-faq-item,
.dcn-table tr {
    transition: background-color 0.3s ease;
}

/* ===== טיפוגרפיה מיוחדת ===== */
.dcn-statistic {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    display: inline-block;
    margin: 0 5px;
}

.dcn-key-term {
    background-color: #e8f4fc;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* ===== סגנונות לתוכן בעברית ===== */
[dir="rtl"] .dcn-pillar-article {
    text-align: right;
}

[dir="rtl"] .dcn-table th,
[dir="rtl"] .dcn-table td {
    text-align: right;
}

/* ===== פריטים ויזואליים ===== */
.dcn-visual-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.dcn-visual-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #3498db;
}/* End custom CSS */