.elementor-28891 .elementor-element.elementor-element-b14e55d{--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 );}/* Start custom CSS for text-editor, class: .elementor-element-3ded35c */.custom-post {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Added a light background to emphasize the white cards */
    background-color: #f4f7f9;
}

.custom-post h1, .custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    margin-top: 0.5em; /* Reduced margin top */
    margin-bottom: 0.5em;
    padding-left: 0px; /* Reset padding, as the card div will provide it */
}

.custom-post h2 {
    font-size: 1.7em;
    border-bottom: 2px solid #e2f0fb;
    padding-bottom: 5px;
}

/* MODIFIED: Removed border-left (the color on the left side) and reset padding-left */
.custom-post h3 {
    font-size: 1.4em;
    /* border-left removed */
    padding-left: 0; 
}

.custom-post h4 {
    font-size: 1.2em;
    font-weight: bold;
}

.custom-post .header-banner {
    background-color: #005b96;
    color: white;
    padding: 25px 20px;
    border-radius: 0; /* Full width top banner */
    margin-bottom: 0;
    text-align: center;
}

.custom-post .header-banner h1 {
    color: white;
    margin: 0;
    font-size: 2em;
}

/* New Card Style */
.custom-post .card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto; /* Center cards and add vertical margin */
    max-width: 900px; /* Constraint card width for better reading */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Content element styling inside the card - use 0 padding for elements, card provides the space */
.custom-post .card p,
.custom-post .card ul,
.custom-post .card ol,
.custom-post .card .responsive-table,
.custom-post .card .important {
    margin-bottom: 1em;
    padding-left: 0;
    padding-right: 0;
}

.custom-post .card ul, .custom-post .card ol {
    margin-left: 20px;
}

.custom-post .card li {
    margin-bottom: 0.5em;
}

.custom-post .responsive-table {
    overflow-x: auto;
    margin: 15px 0;
    padding: 0;
}

.custom-post table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin: 0;
}

.custom-post th, .custom-post td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 15px 0; /* Remove side margin to align with card padding */
    border-radius: 4px;
    font-weight: bold;
}

.custom-post .toc {
    border: none; /* Removed default TOC border/bg */
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.custom-post .toc h3 {
    margin-top: 0;
    border: none;
    padding-left: 0;
}

.custom-post .toc ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.custom-post .toc a {
    color: #005b96;
    text-decoration: none;
}

.custom-post .toc a:hover {
    text-decoration: underline;
}

.custom-post .button {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    padding: 10px 20px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.custom-post .button:hover {
    background-color: #003f63;
}

.custom-post .footer-links {
    text-align: center;
    margin-top: 0;
    padding: 15px 0;
    border-top: none;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .custom-post .header-banner h1 {
        font-size: 1.5em;
    }
    .custom-post h2 {
        font-size: 1.5em;
    }
    .custom-post h3 {
        font-size: 1.2em;
    }
    .custom-post .button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .custom-post .card {
        margin: 10px auto;
        padding: 15px;
    }
}/* End custom CSS */