.elementor-1493 .elementor-element.elementor-element-ffbcadf{--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 and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.cornerstone-article {
    padding: 2rem;
}

/* Typography */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a2b3e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0f3b4f;
    margin: 1.8rem 0 1rem 0;
    border-right: 4px solid #2c7da0;
    padding-right: 1rem;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e4a6b;
    margin: 1.2rem 0 0.6rem 0;
}

p, li {
    font-size: 1rem;
    color: #2c3e4e;
    margin-bottom: 1rem;
}

/* Author byline */
.author-byline {
    background: #f0f4f8;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    display: inline-block;
    margin: 1rem 0 1.5rem 0;
    font-size: 0.9rem;
    color: #2c5a7a;
}

.author-byline a {
    color: #1f6392;
    text-decoration: none;
    font-weight: 500;
}

.author-byline a:hover {
    text-decoration: underline;
}

/* Abstract & Key Takeaways */
.abstract, .key-takeaways {
    background: #f9fbfd;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid #e2edf2;
}

.abstract h2, .key-takeaways h2 {
    margin-top: 0;
    border-right: none;
    padding-right: 0;
    font-size: 1.4rem;
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
}

.key-takeaways li {
    margin-bottom: 0.75rem;
    padding-right: 1.5rem;
    position: relative;
}

.key-takeaways li::before {
    content: "✓";
    color: #2c7da0;
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* Sections */
.faq-section, .case-study, .comparison-table, .summary, .abstract-closing, .faq-people-also-ask {
    margin-bottom: 2rem;
}

/* Direct answer styling (bold first paragraph) */
.faq-section p:first-of-type, .case-study p:first-of-type {
    font-weight: 500;
    background: #fef7e0;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border-right: 3px solid #f4b942;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

th, td {
    border: 1px solid #dce5ec;
    padding: 0.75rem;
    text-align: right;
    vertical-align: top;
}

th {
    background-color: #eef3f7;
    font-weight: 600;
    color: #0a2b3e;
}

tr:nth-child(even) {
    background-color: #fafcfd;
}

.table-source {
    font-size: 0.8rem;
    color: #6c86a3;
    margin-top: 0.5rem;
    text-align: left;
}

/* Case study */
.case-study {
    background: #fef9ef;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #fbe6b0;
}

.case-study h2 {
    margin-top: 0;
    color: #b46f0b;
    border-right-color: #f4b942;
}

/* Summary */
.summary {
    background: #eef3fa;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #cbdde8;
}

/* FAQ items */
.faq-people-also-ask .faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2edf2;
    padding-bottom: 1rem;
}

.faq-people-also-ask .faq-item:last-child {
    border-bottom: none;
}

.faq-people-also-ask h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0a2b3e;
}

/* Links */
a {
    color: #1f6392;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

a:hover {
    border-bottom-color: #1f6392;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem 0.5rem;
    }
    .cornerstone-article {
        padding: 1rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    .author-byline {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    th, td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    .abstract, .key-takeaways, .case-study, .summary {
        padding: 1rem;
    }
}/* End custom CSS */