.elementor-3604 .elementor-element.elementor-element-4481c01c{--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 - UFU Cornerstone Article 2026 */
/* עיצוב נקי, RTL, מותאם לנייד */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;600;700&display=swap');

:root {
    --primary-color: #0A2540;      /* Navy - סמכותי */
    --secondary-color: #00A87E;    /* ירוק פיננסי */
    --text-color: #1E2A3A;
    --bg-light: #F8FAFC;
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    direction: rtl;
    padding: 20px 0 60px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* טיפוגרפיה */
h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 10px;
    border-right: 5px solid var(--secondary-color);
    padding-right: 20px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 15px;
    color: var(--primary-color);
    padding-bottom: 8px;
    border-bottom: 2px solid #E2E8F0;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 10px;
}

p {
    margin-bottom: 1.2rem;
    max-width: 75ch; /* נוחות קריאה */
}

/* Byline */
.byline {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #CBD5E1;
}

.byline strong {
    color: var(--primary-color);
}

/* Abstract Box */
.abstract-box {
    background-color: var(--bg-light);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: var(--box-shadow);
    font-weight: 500;
}

.closing {
    background-color: #F1F5F9;
    border-right: 4px solid var(--secondary-color);
}

/* Key Takeaways */
.takeaways {
    background-color: #FFFBEB;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 1px solid #FDE68A;
}

.takeaways h2 {
    margin-top: 0;
    border-bottom: none;
    font-size: 1.5rem;
}

.takeaways ul {
    list-style-type: none;
}

.takeaways li {
    margin-bottom: 12px;
    padding-right: 25px;
    position: relative;
}

.takeaways li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    right: 0;
    font-size: 1.3rem;
}

/* Direct Answer (תשובה ישירה) */
.direct-answer {
    background-color: #F0FDF4;
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid #BBF7D0;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Case Study Box */
.case-study {
    background-color: #EFF6FF;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 1px solid #BFDBFE;
}

.case-study h3 {
    margin-top: 0;
    color: #1E3A8A;
}

/* Experience Note */
.experience-note {
    background-color: #FFF;
    padding: 15px 20px;
    border-right: 6px solid var(--secondary-color);
    font-style: italic;
    box-shadow: var(--box-shadow);
}

/* טבלת השוואה */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-table caption {
    font-weight: 600;
    margin-bottom: 10px;
    text-align: right;
    color: var(--primary-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 15px 12px;
    text-align: right;
}

.comparison-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #E2E8F0;
    background-color: white;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: #F8FAFC;
}

.source-note {
    font-size: 0.9rem;
    color: #64748B;
    text-align: left;
}

/* Summary Box */
.summary-box {
    background: linear-gradient(145deg, #F1F5F9 0%, #FFFFFF 100%);
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
    border: 1px solid #CBD5E1;
}

/* FAQ Section */
.faq {
    margin: 50px 0 30px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.faq h2 {
    margin-top: 0;
    border-bottom: none;
}

details {
    background-color: white;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    border: 1px solid #E2E8F0;
    transition: all 0.2s ease;
}

details:hover {
    border-color: var(--secondary-color);
}

summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "▼";
    font-size: 0.8rem;
    margin-right: 10px;
    color: var(--secondary-color);
    transition: transform 0.2s;
}

details[open] summary::after {
    transform: rotate(180deg);
}

details p {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #CBD5E1;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #E2E8F0;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    color: #64748B;
}

/* Utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* רספונסיביות */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 1.9rem;
        padding-right: 10px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .abstract-box, .takeaways, .faq {
        padding: 20px 15px;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 10px 5px;
    }
}/* End custom CSS */