.elementor-27493 .elementor-element.elementor-element-9d150f0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-27493 .elementor-element.elementor-element-3ece8ad > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-3ece8ad */.custom-post {
    max-width: 1200px;
    margin: 0; /* Left and right margin 0px */
    padding: 0; /* Left and right padding 0px */
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrollbar on the main container */
}

/* Header Styling */
.custom-post header {
    background-color: #005b96;
    color: white;
    padding: 20px 20px;
    border-radius: 8px; /* Corner round */
    margin-bottom: 20px;
}

.custom-post header h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2em;
    font-weight: 700;
}

.custom-post header p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Content Structure and Headings */
.custom-post section {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #ffffff;
}

.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    border-bottom: 2px solid #e2f0fb;
    padding-bottom: 5px;
    margin-top: 0;
    font-weight: 600;
}
.custom-post h2 { font-size: 1.8em; }
.custom-post h3 { font-size: 1.4em; }
.custom-post h4 { 
    font-size: 1.2em; 
    border-bottom: 1px solid #e2f0fb; /* Lighter border for sub-headings */
}

/* Table of Contents */
.custom-post .toc {
    border: 1px solid #005b96;
    background-color: #f0f8ff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.custom-post .toc h3 {
    border-bottom: 1px solid #005b96;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.custom-post .toc ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.custom-post .toc ul li {
    width: 100%; /* Default mobile view */
    margin-bottom: 5px;
}
.custom-post .toc ul li a {
    color: #003f63;
    text-decoration: none;
}
.custom-post .toc ul li a:hover {
    text-decoration: underline;
}
@media (min-width: 768px) {
    .custom-post .toc ul li {
        width: 50%; /* Tablet/Desktop 2-column view */
    }
}

/* Responsive Table Styling */
.custom-post .responsive-table {
    overflow-x: auto; /* Ensures scrollbar only appears if table is wider than container */
    margin: 15px 0;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* Ensures text wraps naturally */
    min-width: 600px; /* Minimum width for readability, relies on overflow-x for safety */
}

.custom-post th, .custom-post td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    word-wrap: break-word; /* Wrap long text naturally */
}

.custom-post th {
    background-color: #e2f0fb; /* Table headers color */
    color: #003f63;
    font-weight: bold;
}
.custom-post tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* List Styling for Research Areas */
.custom-post .research-areas-list {
    list-style-type: disc;
    padding-left: 25px;
}
.custom-post .research-areas-list li {
    margin-bottom: 5px;
}


/* Important Notes Box */
.custom-post .important {
    background-color: #fff3cd; /* Notes box color */
    border-left: 5px solid #ffca2c; /* Border-left color */
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}
.custom-post .important h4 {
    color: #856404; /* Darker text for note heading */
    margin-top: 0;
    border-bottom: none;
}

/* Button Styling */
.custom-post .cta-button {
    text-align: center;
    margin: 30px 0;
}
.custom-post .cta-button a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #005b96;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.custom-post .cta-button a:hover {
    background-color: #003f63;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .custom-post header h1 {
        font-size: 1.5em;
    }
    .custom-post section {
        padding: 15px;
    }
    .custom-post h2 { font-size: 1.5em; }
    .custom-post h3 { font-size: 1.2em; }
    .custom-post table {
        min-width: 100%; /* On very small screens, rely on responsive-table */
    }
}/* End custom CSS */