.elementor-25543 .elementor-element.elementor-element-2e49c4e7{--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 );}.elementor-25543 .elementor-element.elementor-element-4b84c80b{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-30022610 *//* Custom CSS for Window Renovation Article - Style 2 */

/* Target the text editor widget content */
/* This is a common class Elementor uses for text blocks */
.elementor-widget-text-editor .elementor-widget-container {
    line-height: 1.7; /* Slightly more spacious lines */
    color: #555; /* Softer text color */
    font-family: 'Arial', sans-serif; /* Example: use a common sans-serif font */
}

/* Style for H2 headings within the text editor */
.elementor-widget-text-editor h2 {
    font-size: 2em; /* Relative font size */
    color: #1a73e8; /* Google Blue or similar */
    margin-top: 40px; /* More space above sections */
    margin-bottom: 20px;
    position: relative; /* Needed for the pseudo-element line */
    padding-bottom: 10px; /* Space for the underline */
}

/* Add a dynamic underline effect to H2 */
.elementor-widget-text-editor h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px; /* Length of the underline */
    background-color: #1a73e8;
    /* Optional: Add a transition for hover effects later if needed */
}


/* Style for H3 subheadings within the text editor */
.elementor-widget-text-editor h3 {
    font-size: 1.5em; /* Relative font size */
    color: #3c4043; /* Darker grey */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #1a73e8; /* Add a colored bar on the left */
    padding-left: 10px; /* Space between bar and text */
}

/* Style for paragraphs within the text editor */
.elementor-widget-text-editor p {
    font-size: 1rem; /* Base font size */
    margin-bottom: 1em; /* Space between paragraphs */
    line-height: 1.7; /* Match container line height */
}

/* Style for strong/bold text */
.elementor-widget-text-editor strong {
    color: #3c4043; /* Make bold text stand out subtly */
    font-weight: bold;
}

/* Style for potential lists (ul/li) within the text editor */
/* Uncomment and adjust if you use lists */
/*
.elementor-widget-text-editor ul {
    margin-bottom: 1em;
    padding-left: 2em;
}

.elementor-widget-text-editor ul li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.elementor-widget-text-editor ul li::before {
    content: "\2022"; /* Bullet point */
    color: #1a73e8; /* Color of the bullet */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
*/


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .elementor-widget-text-editor h2 {
        font-size: 1.8em;
        margin-top: 30px;
    }

    .elementor-widget-text-editor h3 {
        font-size: 1.3em;
        margin-top: 25px;
    }

    .elementor-widget-text-editor p {
        font-size: 0.95rem;
    }
}/* End custom CSS */