.ce-article-body {
    --ce-ink: #13202f;
    --ce-text: #263241;
    --ce-muted: #5f6e7e;
    --ce-line: #d9e1e7;
    --ce-paper: #ffffff;
    --ce-wash: #f4f7f8;
    --ce-teal: #117a83;
    --ce-teal-soft: #e6f3f3;
    --ce-blue: #1a5fba;
    --ce-blue-soft: #eef4ff;
    --ce-amber: #b87419;
    --ce-amber-soft: #fff4df;
    --ce-red: #a5463b;
    --ce-red-soft: #fff7f6;
    --ce-radius: 8px;
    --ce-shadow: 0 16px 42px rgba(19, 32, 47, 0.08);

    background: var(--ce-paper);
    border: 1px solid var(--ce-line);
    border-radius: var(--ce-radius);
    box-shadow: var(--ce-shadow);
    padding: 34px;
    color: var(--ce-text);
}

/* =========================
Article Typography
========================= */

.ce-article-body h2 {
    color: var(--ce-ink);
    font-size: 1.5rem;
    line-height: 1.25;
    margin: 42px 0 14px;
    padding-top: 30px;
    border-top: 1px solid var(--ce-line);
}

.ce-article-body h2:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.ce-article-body h3 {
    color: var(--ce-ink);
    font-size: 1.04rem;
    margin: 24px 0 7px;
}

.ce-article-body h4 {
    color: var(--ce-ink);
    font-size: 0.98rem;
    margin: 18px 0 7px;
}

.ce-article-body p {
    margin: 0 0 17px;
    line-height: 1.7;
}

.ce-article-body a {
    color: var(--ce-blue);
    text-decoration: none;
}

.ce-article-body a:hover {
    text-decoration: underline;
}

/* =========================
Breadcrumb
========================= */

.ce-breadcrumb {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.4;
}

.ce-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ce-breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #5f6e7e;
    font-weight: 500;
}

.ce-breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #a8b2bd;
    font-size: 15px;
    line-height: 1;
}

.ce-breadcrumb a {
    color: #1a5fba;
    text-decoration: none;
    transition: color 0.15s ease;
}

.ce-breadcrumb a:hover {
    color: #117a83;
    text-decoration: underline;
}

.ce-breadcrumb [aria-current="page"] {
    color: #13202f;
    font-weight: 700;
}

/* =========================
Key Takeaways
========================= */

.ce-key-takeaways {
    background: #eef4ff;
    border-left: 4px solid #1a5fba;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.ce-key-takeaways ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ce-key-takeaways li {
    position: relative;
    padding: 5px 0 5px 22px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ce-key-takeaways li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #1a5fba;
    font-weight: 700;
}

/* =========================
   Tables
========================= */

.ce-article-body .ce-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--ce-line);
    border-radius: var(--ce-radius);
    margin: 22px 0 28px;
    background: #fff;
    box-sizing: border-box;
}

.ce-article-body .ce-table-wrap table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    table-layout: auto;
    background: #fff;
}

.ce-article-body .ce-table-wrap th,
.ce-article-body .ce-table-wrap td {
    text-align: left;
    vertical-align: top;
    padding: 13px 15px;
    border: 1px solid var(--ce-line);
    font-size: 14px;
    line-height: 1.45;
}

.ce-article-body .ce-table-wrap th {
    background: #eef3f5;
    color: var(--ce-ink);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ce-article-body .ce-table-wrap td {
    color: var(--ce-text);
}

.ce-article-body .ce-table-wrap thead th {
    text-align: center;
}

.ce-article-body .ce-table-wrap thead tr:first-child th {
    background: #e5edf0;
}

.ce-article-body .ce-table-wrap thead tr:nth-child(2) th {
    background: #f3f7f8;
    font-size: 11px;
}

/* First body column */
.ce-article-body .ce-table-wrap tbody td:first-child,
.ce-article-body .ce-table-wrap tbody th:first-child {
    font-weight: 750;
    color: var(--ce-ink);
    white-space: nowrap;
}

/* Rowspan / colspan handling */
.ce-article-body .ce-table-wrap th[rowspan],
.ce-article-body .ce-table-wrap td[rowspan] {
    vertical-align: middle;
}

.ce-article-body .ce-table-wrap th[colspan],
.ce-article-body .ce-table-wrap td[colspan] {
    text-align: center;
}

/* Highlight strong values cleanly */
.ce-article-body .ce-table-wrap strong {
    color: var(--ce-ink);
    font-weight: 750;
}

/* Plain tables that are not wrapped in .ce-table-wrap */
.ce-article-body > table,
.ce-article-body :not(.ce-table-wrap) > table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    border: 1px solid var(--ce-line);
    border-radius: var(--ce-radius);
    margin: 22px 0 28px;
    background: #fff;
    box-sizing: border-box;
}

.ce-article-body > table th,
.ce-article-body :not(.ce-table-wrap) > table th,
.ce-article-body > table td,
.ce-article-body :not(.ce-table-wrap) > table td {
    min-width: 140px;
}

/* =========================
Note Cards
========================= */

.ce-article-body .ce-note-card {
    margin: 20px 0 28px;
    padding: 18px 22px;
    border-radius: 0 var(--ce-radius) var(--ce-radius) 0;
    line-height: 1.65;
}

.ce-article-body .ce-note-card p:last-child {
    margin-bottom: 0;
}

.ce-article-body .ce-note-card strong {
    color: var(--ce-ink);
}

.ce-article-body .ce-note-warning {
    background: var(--ce-amber-soft);
    border-left: 4px solid var(--ce-amber);
    color: #5f4322;
}

.ce-article-body .ce-note-info {
    background: var(--ce-blue-soft);
    border-left: 4px solid var(--ce-blue);
    color: var(--ce-text);
}

.ce-article-body .ce-note-risk {
    background: var(--ce-red-soft);
    border-left: 4px solid var(--ce-red);
    color: #5b3430;
}

.ce-article-body .ce-note-tip {
    background: var(--ce-teal-soft);
    border-left: 4px solid var(--ce-teal);
    color: var(--ce-text);
}

/* =========================
Tables
========================= */

.ce-article-body .ce-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--ce-line);
    border-radius: var(--ce-radius);
    margin: 22px 0 28px;
    background: #fff;
}

.ce-article-body table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.ce-article-body th,
.ce-article-body td {
    text-align: left;
    vertical-align: top;
    padding: 13px 15px;
    border-bottom: 1px solid var(--ce-line);
}

.ce-article-body th {
    background: #eef3f5;
    color: var(--ce-ink);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ce-article-body td {
    font-size: 14px;
    color: var(--ce-text);
}

.ce-article-body tr:last-child td {
    border-bottom: 0;
}

.ce-article-body td:first-child {
    font-weight: 750;
    color: var(--ce-ink);
}

/* Plain tables without .ce-table-wrap */
.ce-article-body>table,
.ce-article-body :not(.ce-table-wrap)>table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--ce-line);
    border-radius: var(--ce-radius);
    margin: 22px 0 28px;
    background: #fff;
}

.ce-article-body>table th,
.ce-article-body :not(.ce-table-wrap)>table th,
.ce-article-body>table td,
.ce-article-body :not(.ce-table-wrap)>table td {
    min-width: 180px;
}

/* =========================
Article Lists
========================= */

.ce-article-body ul,
.ce-article-body ol {
    margin: 16px 0 24px;
    padding: 0;
    list-style: none;
}

.ce-article-body li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 28px;
    line-height: 1.65;
    color: var(--ce-text);
}

.ce-article-body ul>li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--ce-blue);
    box-shadow: 0 0 0 4px var(--ce-blue-soft);
}

.ce-article-body ol {
    counter-reset: ce-list-counter;
}

.ce-article-body ol>li {
    counter-increment: ce-list-counter;
    padding-left: 36px;
}

.ce-article-body ol>li::before {
    content: counter(ce-list-counter);
    position: absolute;
    left: 0;
    top: 0.22em;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--ce-blue-soft);
    color: var(--ce-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 22px;
    text-align: center;
}

.ce-article-body li ul,
.ce-article-body li ol {
    margin: 10px 0 0;
}

.ce-article-body li li {
    margin-bottom: 7px;
}

/* Colored list variants */

.ce-article-body .ce-list-info,
.ce-article-body .ce-list-tip,
.ce-article-body .ce-list-warning,
.ce-article-body .ce-list-risk {
    margin: 18px 0 26px;
    padding: 18px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--ce-blue);
    background: var(--ce-blue-soft);
}

.ce-article-body .ce-list-info li:last-child,
.ce-article-body .ce-list-tip li:last-child,
.ce-article-body .ce-list-warning li:last-child,
.ce-article-body .ce-list-risk li:last-child {
    margin-bottom: 0;
}

.ce-article-body .ce-list-info {
    background: var(--ce-blue-soft);
    border-left-color: var(--ce-blue);
}

.ce-article-body .ce-list-tip {
    background: var(--ce-teal-soft);
    border-left-color: var(--ce-teal);
}

.ce-article-body .ce-list-warning {
    background: var(--ce-amber-soft);
    border-left-color: var(--ce-amber);
}

.ce-article-body .ce-list-risk {
    background: var(--ce-red-soft);
    border-left-color: var(--ce-red);
}

.ce-article-body .ce-list-info>li::before {
    background: var(--ce-blue);
    box-shadow: 0 0 0 4px rgba(26, 95, 186, 0.12);
}

.ce-article-body .ce-list-tip>li::before {
    background: var(--ce-teal);
    box-shadow: 0 0 0 4px rgba(17, 122, 131, 0.12);
}

.ce-article-body .ce-list-warning>li::before {
    background: var(--ce-amber);
    box-shadow: 0 0 0 4px rgba(184, 116, 25, 0.13);
}

.ce-article-body .ce-list-risk>li::before {
    background: var(--ce-red);
    box-shadow: 0 0 0 4px rgba(165, 70, 59, 0.12);
}

.ce-article-body ol.ce-list-info>li::before {
    background: #dceaff;
    color: var(--ce-blue);
    box-shadow: none;
}

.ce-article-body ol.ce-list-tip>li::before {
    background: #d4eeee;
    color: var(--ce-teal);
    box-shadow: none;
}

.ce-article-body ol.ce-list-warning>li::before {
    background: #ffe8bd;
    color: var(--ce-amber);
    box-shadow: none;
}

.ce-article-body ol.ce-list-risk>li::before {
    background: #ffe1df;
    color: var(--ce-red);
    box-shadow: none;
}

/* =========================
Content Images
========================= */

.ce-article-body .ce-content-image {
    margin: 28px 0 32px !important;
    padding: 0;
    border: 1px solid var(--ce-line);
    border-radius: var(--ce-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(19, 32, 47, 0.06);
}

.ce-article-body .ce-content-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.ce-article-body .ce-content-image figcaption {
    display: block;
    margin: 0;
    padding: 12px 16px;
    background: #f9fbfc;
    border-top: 1px solid var(--ce-line);
    color: var(--ce-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.ce-article-body img.ce-lightbox-trigger {
    cursor: zoom-in;
}

.ce-article-body img.ce-lightbox-trigger:focus-visible {
    outline: 2px solid #117a83;
    outline-offset: 3px;
}

body.ce-lightbox-open {
    overflow: hidden;
}

.ce-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgb(0 0 0 / 75%);
}

.ce-lightbox[hidden] {
    display: none;
}

.ce-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.ce-lightbox__close:hover,
.ce-lightbox__close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.ce-lightbox__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(1200px, 100%);
    max-height: calc(100vh - 48px);
}

.ce-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.ce-lightbox__caption {
    margin: 14px 0 0;
    max-width: 760px;
    color: #f3f7fa;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

/* =========================
Related Content
========================= */

.ce-learning-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 4px;
}

.ce-learning-item {
    border: 1px solid #d9e1e7;
    border-top: 3px solid #117a83;
    border-radius: 8px;
    padding: 16px;
    background: #f9fbfc;
    min-height: 118px;
}

.ce-learning-item strong {
    display: block;
    color: #13202f;
    margin-bottom: 7px;
    line-height: 1.35;
}

.ce-learning-item strong a {
    color: inherit;
    text-decoration: none;
}

.ce-learning-item strong a:hover {
    color: #117a83;
}

.ce-learning-item span {
    color: #5f6e7e;
    font-size: 13px;
    line-height: 1.5;
    display: block;
}

/* =========================
FAQ
========================= */

.ce-faq-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ce-faq-card .ce-faq-item {
    background: #ffffff;
    border: 1px solid #e6e8ee;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(19, 32, 47, 0.04);
    overflow: hidden;
}

.ce-faq-card .ce-faq-item[open] {
    box-shadow: 0 12px 30px rgba(19, 32, 47, 0.07);
}

.ce-faq-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #111111;
}

.ce-faq-card summary::-webkit-details-marker {
    display: none;
}

.ce-faq-card .ce-faq-answer {
    padding: 0 28px 24px;
    color: #666666;
    font-size: 16px;
    line-height: 1.65;
}

.ce-faq-card .ce-faq-answer p {
    margin: 0;
}

.ce-faq-question {
    flex: 1;
}

.ce-faq-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.ce-faq-icon svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ce-faq-icon-opened {
    display: none;
}

.ce-faq-icon-closed {
    display: inline-flex;
}

.ce-faq-item[open] .ce-faq-icon-opened {
    display: inline-flex;
}

.ce-faq-item[open] .ce-faq-icon-closed {
    display: none;
}

/* =========================
CTA
========================= */

.ce-cta-box {
    background: linear-gradient(135deg, #0e1e35 0%, #16365a 100%);
    color: #ffffff;
    border-radius: 8px;
    padding: 42px 36px;
    margin: 48px 0 32px;
    text-align: center;
    box-shadow: 0 18px 38px rgba(14, 30, 53, 0.18);
}

.ce-cta-box h2 {
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1.25;
    margin: 0 0 14px;
    padding: 0;
    border: 0;
}

.ce-cta-box p {
    max-width: 560px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.65;
}

.ce-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f9ca60;
    color: #06172b;
    min-width: 280px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ce-cta-btn:hover {
    background: #ffd878;
    color: #06172b;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(249, 202, 96, 0.22);
}

/* =========================
Hero Meta
========================= */

.ce-hero-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ce-hero-author-review,
.ce-hero-date-box {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 0;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.ce-hero-author-item,
.ce-hero-date-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.ce-hero-author-label,
.ce-hero-date-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-right: 4px;
}

.ce-hero-author-name,
.ce-hero-date-value {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.ce-hero-author-name:hover {
    color: #f9ca60;
    text-decoration: underline;
}

.ce-hero-author-divider,
.ce-hero-date-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.16);
    flex: 0 0 auto;
}

/* =========================
Responsive
========================= */

@media (max-width: 820px) {
    .ce-article-body {
        padding: 24px;
    }
}

@media (max-width: 760px) {

    .ce-learning-grid,
    .ce-article-body .ce-card-grid {
        grid-template-columns: 1fr;
    }

    .ce-article-body table {
        min-width: 620px;
    }

    .ce-article-body>table,
    .ce-article-body :not(.ce-table-wrap)>table {
        min-width: 0;
    }

    .ce-hero-meta-row {
        display: grid;
        gap: 10px;
    }

    .ce-hero-author-review,
    .ce-hero-date-box {
        width: fit-content;
        max-width: 100%;
        flex-wrap: wrap;
        white-space: normal;
    }
}

@media (max-width: 700px) {
    .ce-faq-card {
        max-width: 100%;
        gap: 10px;
    }

    .ce-faq-card summary {
        padding: 18px 20px;
        font-size: 16px;
    }

    .ce-faq-card .ce-faq-answer {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .ce-cta-box {
        padding: 32px 22px;
    }

    .ce-cta-box h2 {
        font-size: 1.3rem;
    }

    .ce-cta-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .ce-breadcrumb {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .ce-breadcrumb ol {
        gap: 6px;
    }

    .ce-breadcrumb li:not(:last-child)::after {
        margin-left: 6px;
    }
}

@media (max-width: 480px) {

    .ce-hero-author-divider,
    .ce-hero-date-divider {
        display: none;
    }

    .ce-hero-author-item,
    .ce-hero-date-item {
        width: 100%;
    }
}


/* =========================
   Elementor / Theme Overrides
   Must stay at bottom
========================= */

/* Article card container */
.elementor .e-con.ce-article-body,
.elementor article.ce-article-body {
  --ce-ink: #13202f;
  --ce-text: #263241;
  --ce-muted: #5f6e7e;
  --ce-line: #d9e1e7;
  --ce-paper: #ffffff;
  --ce-wash: #f4f7f8;
  --ce-teal: #117a83;
  --ce-teal-soft: #e6f3f3;
  --ce-blue: #1a5fba;
  --ce-blue-soft: #eef4ff;
  --ce-amber: #b87419;
  --ce-amber-soft: #fff4df;
  --ce-red: #a5463b;
  --ce-red-soft: #fff7f6;
  --ce-radius: 8px;
  --ce-shadow: 0 16px 42px rgba(19, 32, 47, 0.08);

  --padding-top: 34px !important;
  --padding-right: 34px !important;
  --padding-bottom: 34px !important;
  --padding-left: 34px !important;

  --padding-block-start: 34px !important;
  --padding-inline-end: 34px !important;
  --padding-block-end: 34px !important;
  --padding-inline-start: 34px !important;

  padding: 34px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid #d9e1e7 !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 42px rgba(19, 32, 47, 0.08) !important;
  color: #263241;
  box-sizing: border-box;
  overflow: hidden;
}

/* Key takeaways box */
.elementor .ce-key-takeaways {
  background: #eef4ff !important;
  border-left: 4px solid #1a5fba !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 20px 24px !important;
  margin: 0 0 28px !important;
  box-sizing: border-box;
}

.elementor .ce-key-takeaways ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor .ce-key-takeaways li {
  position: relative !important;
  padding: 5px 0 5px 22px !important;
  margin: 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: #263241 !important;
  list-style: none !important;
}

.elementor .ce-key-takeaways li::before {
  content: "\2713" !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  color: #1a5fba !important;
  font-weight: 700 !important;
  background: none !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

/* =========================
   Table of Contents
========================= */

.elementor .ce-toc-nav {
  --ce-toc-max-height: calc(100vh - 140px);

  display: flex;
  flex-direction: column;
  max-height: var(--ce-toc-max-height);
  overflow: hidden;

  background: #fafbfd;
  border: 1px solid #e4e8f0;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}

/* Keep "On this page" visible */
.elementor .ce-toc-nav .ce-toc-label {
  position: sticky;
  top: 0;
  z-index: 10;
  flex: 0 0 auto;

  margin: 0;
  padding: 16px 18px 12px;
  background: #fafbfd;
  border-bottom: 1px solid #e4e8f0;
}

.elementor .ce-toc-nav .ce-toc-label .elementor-widget-container {
  margin: 0;
}

/* Scroll only the links */
.elementor .ce-toc-nav > .elementor-widget-shortcode {
  flex: 1 1 auto;
  min-height: 0;
  padding: 10px 18px 16px;

  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color: #b7c2d0 transparent;
}

.elementor .ce-toc-nav > .elementor-widget-shortcode::-webkit-scrollbar {
  width: 6px;
}

.elementor .ce-toc-nav > .elementor-widget-shortcode::-webkit-scrollbar-track {
  background: transparent;
}

.elementor .ce-toc-nav > .elementor-widget-shortcode::-webkit-scrollbar-thumb {
  background: #b7c2d0;
  border-radius: 20px;
}

.elementor .ce-toc-nav > .elementor-widget-shortcode::-webkit-scrollbar-thumb:hover {
  background: #8f9daf;
}

/* Reset TOC list */
.elementor .ce-toc-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.elementor .ce-toc-nav li {
  position: static;
  padding: 0;
  margin: 0;
  list-style: none;
}

.elementor .ce-toc-nav li::before {
  content: none;
  display: none;
}

/* TOC links */
.elementor .ce-toc-nav .ce-toc-link {
  display: block;
  padding: 6px 8px;

  color: #444;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;

  border-left: 2px solid transparent;
  border-radius: 4px;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.elementor .ce-toc-nav .ce-toc-link:hover,
.elementor .ce-toc-nav .ce-toc-link.active,
.elementor .ce-toc-nav .ce-toc-link[aria-current="true"] {
  color: #1a5fba;
  background: #eef4ff;
  border-left-color: #1a5fba;
}

.elementor .ce-toc-nav .ce-toc-link.active,
.elementor .ce-toc-nav .ce-toc-link[aria-current="true"] {
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

.ce-article-body h2,
.ce-article-body h3,
.ce-article-body h4 {
  scroll-margin-top: 120px;
}

/* =========================
   Mobile TOC (inline + sticky bar + sheet)
========================= */

.ce-toc-mobile {
  display: none;
  margin: 0;
}

.ce-toc-mobile-inline {
  margin: 0 0 16px;
  background: #fafbfd;
  border: 1px solid #e4e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.ce-toc-mobile-inline-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  margin: 0;

  color: #444;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;

  background: transparent;
  border: 0;
  cursor: pointer;

  transition: background 0.15s ease;
}

.ce-toc-mobile-inline-trigger:hover,
.ce-toc-mobile-inline-trigger:focus-visible {
  background: #eef4ff;
  outline: none;
}

.ce-toc-mobile-inline-trigger:focus-visible {
  box-shadow: inset 0 0 0 2px #1a5fba;
}

.ce-toc-mobile-inline-label {
  flex: 1 1 auto;
}

.ce-toc-mobile-inline-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.ce-toc-mobile-bar {
  position: fixed;
  top: var(--ce-header-offset, 0);
  left: 0;
  right: 0;
  z-index: 999;

  margin: 0;
  padding: 0 calc(24px + env(safe-area-inset-right, 0px)) 0 calc(24px + env(safe-area-inset-left, 0px));

  background: #fafbfd;
  border-bottom: 1px solid #e4e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
}

.ce-toc-mobile-bar[hidden] {
  display: none;
}

.ce-toc-mobile-is-sticky .ce-toc-mobile-inline {
  visibility: hidden;
  pointer-events: none;
}

.ce-toc-mobile-bar-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  margin: 0;

  color: #1a5fba;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;

  background: transparent;
  border: 0;
  cursor: pointer;

  transition: background 0.15s ease;
}

.ce-toc-mobile-bar-trigger:hover,
.ce-toc-mobile-bar-trigger:focus-visible {
  background: #eef4ff;
  outline: none;
}

.ce-toc-mobile-bar-trigger:focus-visible {
  box-shadow: inset 0 0 0 2px #1a5fba;
}

.ce-toc-mobile-bar-label {
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ce-toc-mobile-bar-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.ce-toc-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483600;

  background: rgb(0 0 0 / 75%);
}

.ce-toc-mobile-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483601;

  display: flex;
  flex-direction: column;
  max-height: 70vh;

  background: #fafbfd;
  border-top: 1px solid #e4e8f0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);

  transform: translateY(0);
  transition: transform 0.25s ease;
}

.ce-toc-mobile-sheet[hidden],
.ce-toc-mobile-overlay[hidden] {
  display: none;
}

.ce-toc-mobile-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  flex: 0 0 auto;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #e4e8f0;
}

.ce-toc-mobile-sheet-header h2 {
  margin: 0;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.ce-toc-mobile-sheet-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  padding: 0;
  margin: -8px -8px -8px 0;

  color: #444;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;

  transition: background 0.15s ease;
}

.ce-toc-mobile-sheet-close:hover,
.ce-toc-mobile-sheet-close:focus-visible {
  background: #eef4ff;
  outline: none;
}

.ce-toc-mobile-sheet-close:focus-visible {
  box-shadow: inset 0 0 0 2px #1a5fba;
}

.ce-toc-mobile-sheet-nav {
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.ce-toc-mobile-sheet-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ce-toc-mobile-sheet-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ce-toc-mobile-sheet-nav li::before {
  content: none;
  display: none;
}

.ce-toc-mobile-sheet-nav .ce-toc-link {
  display: block;
  min-height: 44px;
  padding: 10px 12px;

  color: #444;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;

  border-left: 2px solid transparent;
  border-radius: 4px;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.ce-toc-mobile-sheet-nav .ce-toc-link:hover,
.ce-toc-mobile-sheet-nav .ce-toc-link.active,
.ce-toc-mobile-sheet-nav .ce-toc-link[aria-current="true"] {
  color: #1a5fba;
  background: #eef4ff;
  border-left-color: #1a5fba;
}

.ce-toc-mobile-sheet-nav .ce-toc-link.active,
.ce-toc-mobile-sheet-nav .ce-toc-link[aria-current="true"] {
  font-weight: 700;
}

html.ce-toc-sheet-open,
body.ce-toc-sheet-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.ce-toc-sheet-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .ce-toc-mobile-sheet {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 767px) {
  .elementor .ce-toc-nav {
    display: none !important;
  }

  .ce-toc-mobile {
    display: block;
  }

  .ce-article-body h2,
  .ce-article-body h3,
  .ce-article-body h4 {
    scroll-margin-top: var(--ce-header-offset, 0px);
  }

  body.ce-toc-mobile-sticky-active .ce-article-body h2,
  body.ce-toc-mobile-sticky-active .ce-article-body h3,
  body.ce-toc-mobile-sticky-active .ce-article-body h4 {
    scroll-margin-top: calc(var(--ce-header-offset, 0px) + 48px);
  }
}

@media (max-width: 820px) {
  .elementor .e-con.ce-article-body,
  .elementor article.ce-article-body {
    --padding-top: 24px !important;
    --padding-right: 24px !important;
    --padding-bottom: 24px !important;
    --padding-left: 24px !important;

    --padding-block-start: 24px !important;
    --padding-inline-end: 24px !important;
    --padding-block-end: 24px !important;
    --padding-inline-start: 24px !important;

    padding: 24px !important;
  }
}


/* =========================
Buttons
========================= */

.ce-article-body .ce-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;
    min-width: 0;
    padding: 9px 16px;

    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 6px;

    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;

    box-shadow: 0 6px 14px rgba(19, 32, 47, 0.12);
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ce-article-body .ce-btn:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.ce-article-body .ce-btn:focus-visible {
    outline: 3px solid var(--ce-blue-soft);
    outline-offset: 3px;
}

/* Blue */
.ce-article-body .ce-btn--blue {
    background: var(--ce-blue);
    border-color: var(--ce-blue);
}

.ce-article-body .ce-btn--blue:hover {
    background: #154f9c;
    border-color: #154f9c;
    box-shadow: 0 8px 18px rgba(26, 95, 186, 0.16);
}

/* Green */
.ce-article-body .ce-btn--green {
    background: #217346;
    border-color: #217346;
}

.ce-article-body .ce-btn--green:hover {
    background: #1a5c38;
    border-color: #1a5c38;
    box-shadow: 0 8px 18px rgba(33, 115, 70, 0.16);
}

/* Red */
.ce-article-body .ce-btn--red {
    background: var(--ce-red);
    border-color: var(--ce-red);
}

.ce-article-body .ce-btn--red:hover {
    background: #8f3a31;
    border-color: #8f3a31;
    box-shadow: 0 8px 18px rgba(165, 70, 59, 0.16);
}
