.elementor-1548 .elementor-element.elementor-element-944aef8{--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 *//* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 2rem 2rem 3rem 2rem;
}

/* Typography */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: #0f172a;
    border-right: 4px solid #0d9488;
    padding-right: 1rem;
}

.author-byline {
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.author-byline strong {
    color: #0f172a;
    font-weight: 600;
}

.badge {
    background: #e6f7f5;
    color: #0d6d64;
    padding: 0.2rem 0.6rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Cards */
.abstract-card, .takeaways-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2edf2;
}

.abstract-card h3, .takeaways-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.abstract-card p, .takeaways-card ul {
    font-size: 0.95rem;
    color: #1e293b;
}

.takeaways-card ul {
    list-style: none;
    padding-right: 0;
}

.takeaways-card li {
    margin-bottom: 0.5rem;
    padding-right: 1.2rem;
    position: relative;
}

.takeaways-card li::before {
    content: "✓";
    color: #0d9488;
    position: absolute;
    right: 0;
    font-weight: bold;
}

/* Headings */
h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 1.8rem 0 0.5rem 0;
    color: #0f172a;
}

h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.5rem 0 0.25rem 0;
    color: #1e293b;
}

.direct-answer {
    background: #eef9ff;
    border-right: 4px solid #0d9488;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0 1rem 0;
    font-weight: 500;
    border-radius: 12px;
    font-size: 0.95rem;
}

p, li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #2d3a4b;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

th {
    background: #1e293b;
    color: white;
    padding: 12px 16px;
    text-align: right;
    font-weight: 600;
}

td {
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    background-color: #ffffff;
}

tr:last-child td {
    border-bottom: none;
}

caption {
    caption-side: top;
    text-align: right;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

/* Highlights & case study */
.stat-highlight {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-right: 4px solid #0d9488;
}

.case-study {
    background: #fef9e6;
    padding: 1.25rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    border: 1px solid #ffe6b3;
}

/* Footer */
footer {
    margin-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #5b6e8c;
}

/* FAQ */
.faq-item {
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 1rem;
}

.faq-question {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 680px) {
    .container {
        padding: 1.25rem;
    }
    h1 {
        font-size: 1.7rem;
    }
    h2 {
        font-size: 1.35rem;
    }
    th, td {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}/* End custom CSS */