:root {
    --ce-primary: #0778AD;
    --ce-secondary: #014A6C;
    --ce-accent: #83ABBE;
    --ce-highlight: #CE6B05;
    --ce-ink: #0f172a;
    --ce-muted: #475467;
    --ce-bg: #f8fafc;
    --ce-surface: #ffffff;
    --ce-border: #e4e7ec;
    --ce-shadow: 0 20px 40px rgba(2, 8, 23, 0.08);
    --ce-radius: 22px;
    --ce-container: min(1280px, calc(100vw - 2rem));
    --ce-content: min(760px, calc(100vw - 2rem));
    --ce-hero: linear-gradient(135deg, #123f73, #2d77b4 62%, #cda349);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--ce-ink);
    background: var(--ce-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ce-secondary); }

.ce-container { width: var(--ce-container); margin-inline: auto; }
.ce-section { padding: clamp(3.5rem, 5vw, 5.5rem) 0; }
.home .ce-section { padding: clamp(2rem, 3.2vw, 3rem) 0; }
.ce-section--alt { background: linear-gradient(180deg, #fff, #f5f8fb); }
.ce-site-main { min-height: 50vh; }
.ce-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    font-size: .83rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: rgba(255,255,255,.14);
    color: inherit;
    backdrop-filter: blur(10px);
}
.ce-kicker::before {
    content: "";
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ce-primary), var(--ce-accent));
    flex: 0 0 auto;
}

h1, h2, h3, h4 {
    margin: 0 0 .85rem;
    line-height: 1.14;
    letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.3rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; color: var(--ce-muted); }

.ce-button-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.ce-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 50px;
    padding: .95rem 1.35rem;
    border-radius: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ce-primary), color-mix(in srgb, var(--ce-primary) 82%, var(--ce-highlight)));
    color: #fff;
    box-shadow: 0 16px 30px rgba(255, 64, 0, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}
.ce-button:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 20px 40px rgba(255, 64, 0, .28); }
.ce-button--small { min-height: 44px; padding: .8rem 1.1rem; border-radius: 14px; }
.ce-button--ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
.ce-button--on-dark { color: #fff; }
.ce-text-link {
    display: inline-flex;
    gap: .4rem;
    align-items: center;
    font-weight: 700;
    color: var(--ce-secondary);
}
.ce-text-link::after { content: "→"; }

.ce-topbar {
    background: #0d1726;
    color: rgba(255,255,255,.82);
    font-size: .92rem;
}
.ce-topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem 0;
}
.ce-topbar p { margin: 0; color: inherit; }
.ce-topbar a { color: #fff; }

.ce-site-header {
    position: sticky;
    top: 0;
    z-index: 99;
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(228,231,236,.8);
}
.ce-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.25rem;
    min-height: 86px;
}
.ce-branding {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 230px;
}
.ce-logo-wrap img { max-height: 56px; width: auto; }
.ce-site-title { font-size: 1.45rem; font-weight: 800; }
.ce-site-tagline { font-size: .92rem; margin: .1rem 0 0; }
.ce-main-nav {
    min-width: 0;
}
.ce-main-nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: .45rem;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ce-main-nav li {
    min-width: 0;
}
.ce-main-nav a {
    font-weight: 650;
    color: var(--ce-ink);
    font-size: clamp(.78rem, .92vw, .98rem);
    white-space: nowrap;
}
.ce-main-nav .current-menu-item > a,
.ce-main-nav a:hover { color: var(--ce-primary); }
.ce-main-nav .menu-item-has-children { position: relative; }
.ce-main-nav .sub-menu {
    position: absolute;
    top: calc(100% + .9rem);
    left: 0;
    min-width: 230px;
    padding: .8rem;
    background: #fff;
    border: 1px solid var(--ce-border);
    border-radius: 16px;
    box-shadow: var(--ce-shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
}
.ce-main-nav .sub-menu li { width: 100%; }
.ce-main-nav .sub-menu a { display: block; padding: .55rem .7rem; border-radius: 10px; }
.ce-main-nav .sub-menu a:hover { background: #f7fafc; }
.ce-menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: .4rem;
    border-radius: 12px;
}
.ce-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ce-ink);
    margin: 6px 0;
}

.ce-hero {
    background: var(--ce-hero);
    color: #fff;
    padding: clamp(3.4rem, 6vw, 5.8rem) 0 clamp(3.5rem, 5vw, 5rem);
}
.ce-hero-grid {
    display: grid;
    grid-template-columns: minmax(260px, .32fr) minmax(0, .68fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: stretch;
}
.ce-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ce-hero-copy p { color: rgba(255,255,255,.84); }
.ce-hero-intro { max-width: 62ch; font-size: 1.1rem; }

.ce-slider {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 560px;
    box-shadow: 0 28px 70px rgba(2,8,23,.28);
    background: rgba(255,255,255,.08);
}
.ce-slider-track { position: relative; min-height: 560px; }
.ce-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
    background-image: var(--slide-image);
    background-size: cover;
    background-position: center;
}
.ce-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.ce-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,12,21,.18), rgba(7,12,21,.72));
}
.ce-slide-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
}
.ce-slide-step {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.78);
}
.ce-slide-content p { color: rgba(255,255,255,.87); }
.ce-slider-controls {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.ce-slider-prev,
.ce-slider-next {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 0;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
}
.ce-slider-dots { display: flex; gap: .45rem; }
.ce-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
}
.ce-dot.is-active { background: #fff; width: 34px; }

.ce-split-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--ce-shadow);
}
.ce-intro-card {
    align-items: center;
}
.ce-intro-copy {
    max-width: 62ch;
}
.ce-intro-copy p:last-child {
    margin-bottom: 0;
}
.ce-intro-media-wrap {
    min-width: 0;
}
.ce-intro-media {
    overflow: hidden;
    border-radius: 24px;
    min-height: 320px;
    background: linear-gradient(135deg, #eef4ff, #fff0ea);
    box-shadow: 0 18px 40px rgba(2, 8, 23, 0.10);
}
.ce-intro-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.ce-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.ce-stat-card,
.ce-summary-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f7fafc);
    border: 1px solid var(--ce-border);
}
.ce-stat-card strong,
.ce-summary-card strong {
    display: block;
    margin-bottom: .35rem;
    font-size: 1rem;
}
.ce-summary-card span,
.ce-summary-card a { color: var(--ce-muted); }

.ce-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.ce-card-grid {
    display: grid;
    gap: 1.35rem;
}
.ce-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ce-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(228,231,236,.9);
    box-shadow: var(--ce-shadow);
    display: flex;
    flex-direction: column;
}
.ce-card-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: block;
    background: linear-gradient(135deg, #eef4ff, #fff0ea);
}
.ce-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.ce-card:hover .ce-card-media img { transform: scale(1.04); }
.ce-card-body {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    height: 100%;
}
.ce-card-body p { margin-bottom: 0; }
.ce-badge {
    width: fit-content;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(0,89,178,.08);
    color: var(--ce-secondary);
    font-size: .84rem;
    font-weight: 700;
}
.ce-badge--accent {
    background: rgba(133,178,0,.12);
    color: color-mix(in srgb, var(--ce-accent) 82%, black);
}
.ce-event-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .35rem;
    color: var(--ce-muted);
}

.ce-cta-band {
    background: linear-gradient(135deg, #0d1627, color-mix(in srgb, var(--ce-secondary) 88%, black), color-mix(in srgb, var(--ce-primary) 38%, black));
    color: #fff;
}
.ce-cta-band p { color: rgba(255,255,255,.82); }
.ce-cta-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem 2rem;
    align-items: center;
}

.ce-entry-hero,
.ce-landing-hero {
    position: relative;
    background-image: var(--entry-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}
.ce-entry-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,12,21,.20), rgba(7,12,21,.75));
}
.ce-entry-hero-inner,
.ce-landing-hero-inner {
    position: relative;
    z-index: 1;
    padding: clamp(4rem, 7vw, 6rem) 0;
}
.ce-entry-summary {
    max-width: 65ch;
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
}
.ce-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,.84);
}

.ce-content-shell {
    width: min(980px, calc(100vw - 2rem));
    margin: -2.5rem auto 0;
    position: relative;
    z-index: 2;
}
.ce-content-shell--wide { width: var(--ce-container); margin-top: -2.5rem; }
.ce-content-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--ce-shadow);
    padding: clamp(1.25rem, 2vw, 1.75rem);
    border: 1px solid rgba(228,231,236,.9);
}
.ce-content-card--wide { padding: clamp(1.2rem, 2vw, 2rem); }
.ce-article-footer { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--ce-border); }
.ce-tag-wrap { display: flex; gap: .6rem; flex-wrap: wrap; }

.entry-content {
    font-size: 1.02rem;
}
.entry-content > * {
    max-width: var(--ce-content);
    margin-left: auto;
    margin-right: auto;
}
.entry-content > .alignwide,
.entry-content > .wp-block-cover.alignwide,
.entry-content > .wp-block-group.alignwide {
    max-width: min(1120px, calc(100vw - 2rem));
}
.entry-content > .alignfull {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.entry-content img,
.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object { max-width: 100%; }
.entry-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}
.entry-content table td,
.entry-content table th {
    padding: .85rem 1rem;
    border: 1px solid var(--ce-border);
}
.entry-content blockquote {
    border-left: 4px solid var(--ce-primary);
    padding: 1rem 1.2rem;
    background: linear-gradient(180deg, #fff5f1, #fff);
    border-radius: 18px;
    color: #253244;
}
.entry-content ul,
.entry-content ol { padding-left: 1.2rem; }
.entry-content .wp-block-button__link {
    border-radius: 16px;
}
.entry-content pre,
.entry-content code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.ce-event-summary-strip { padding-top: 1.5rem; }
.ce-event-summary-grid,
.ce-landing-hero-inner {
    display: grid;
    gap: 1rem;
}
.ce-event-summary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ce-landing-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    align-items: center;
}
.ce-landing-copy p { color: rgba(255,255,255,.84); }
.ce-landing-aside {
    display: grid;
    gap: 1rem;
}
.ce-landing-aside .ce-summary-card {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
}

.ce-site-footer {
    background: #0d1726;
    color: rgba(255,255,255,.82);
}
.ce-site-footer p,
.ce-site-footer a { color: inherit; }
.ce-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .95fr .85fr;
    gap: 2rem;
    padding: 3rem 0;
}
.ce-footer-title { font-size: 1.6rem; color: #fff; }
.ce-site-footer h3 { color: #fff; margin-bottom: .75rem; }
.ce-site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .55rem;
}
.ce-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}
.ce-footer-bottom-inner {
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}
.ce-footer-bottom p { margin: 0; }

.ce-pagination {
    margin-top: 1.5rem;
}
.ce-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
}
.ce-pagination .page-numbers {
    padding: .65rem .9rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ce-border);
}
.ce-pagination .current { background: var(--ce-primary); color: #fff; border-color: var(--ce-primary); }

.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

@media (max-width: 1024px) {
    .ce-header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }
    .ce-main-nav {
        grid-column: 1 / -1;
        display: none;
    }
    .ce-main-nav.is-open { display: block; padding-bottom: 1rem; }
    .ce-main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: .3rem;
        padding: .75rem;
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--ce-shadow);
    }
    .ce-main-nav .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 .8rem;
        min-width: 0;
    }
    .ce-menu-toggle { display: inline-block; }
    .ce-header-cta { display: none; }
    .ce-hero-grid,
    .ce-split-card,
    .ce-cta-band-inner,
    .ce-footer-grid,
    .ce-landing-hero-inner { grid-template-columns: 1fr; }
    .ce-card-grid--three,
    .ce-event-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .ce-topbar-inner,
    .ce-footer-bottom-inner,
    .ce-section-heading {
        flex-direction: column;
        align-items: flex-start;
    }
    .ce-card-grid--three,
    .ce-stat-grid,
    .ce-event-summary-grid { grid-template-columns: 1fr; }
    .ce-slider,
    .ce-slider-track { min-height: 420px; }
    .ce-intro-media,
    .ce-intro-image { min-height: 240px; }
    .ce-slide-content { padding: 1.35rem; }
    .ce-header-inner { min-height: 74px; }
    .ce-content-shell { margin-top: -1.5rem; }
}


.ce-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}
.ce-metric-card {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #eef4ff);
    border: 1px solid var(--ce-border);
    box-shadow: var(--ce-shadow);
}
.ce-metric-value {
    display: block;
    font-size: clamp(2rem, 6vw, 3.6rem);
    line-height: 1;
    margin-bottom: .5rem;
}
.ce-metric-label {
    display: block;
    color: var(--ce-muted);
    font-weight: 700;
    letter-spacing: .02em;
}
.ce-testimonial-card blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}
.ce-testimonial-name {
    display: block;
    margin-top: .4rem;
}
.ce-testimonials-shortcode > *:first-child {
    margin-top: 0;
}
.ce-card--feature-only {
    max-width: 520px;
}
.ce-training-page .entry-content > ul:first-child,
.ce-training-page .entry-content > ol:first-child,
.ce-training-page .entry-content > nav:first-child,
.ce-training-page .entry-content > .wp-block-list:first-child {
    display: none;
}
@media (max-width: 680px) {
    .ce-metrics-grid {
        grid-template-columns: 1fr;
    }
}


.ce-main-nav .menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
    gap: .25rem;
    flex-wrap: nowrap;
}
.ce-main-nav .menu-item-has-children > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.ce-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--ce-ink);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.ce-submenu-toggle:hover,
.ce-submenu-toggle:focus-visible {
    background: rgba(255, 64, 0, 0.14);
    outline: none;
}
.ce-main-nav .sub-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(.4rem);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.ce-main-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.ce-main-nav .sub-menu .menu-item-has-children {
    width: 100%;
    justify-content: space-between;
}
.ce-card-media img,
.ce-entry-hero,
.ce-landing-hero {
    image-rendering: auto;
}
.ce-card-body,
.entry-content,
.entry-content > *,
.ce-summary-card,
.ce-stat-card,
.ce-site-title,
.ce-footer-grid,
.ce-footer-bottom-inner {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.entry-content {
    max-width: 100%;
}
.entry-content > :where(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, table, pre, figure, .wp-block-group, .wp-block-columns, .wp-block-cover, .wp-block-media-text, .wp-block-image, .wp-block-embed, .wp-block-table, .wp-block-list, .wp-block-heading, .wp-block-paragraph, .wp-block-quote, .wp-block-buttons) {
    width: 100%;
    max-width: min(100%, var(--ce-content));
}
.entry-content iframe,
.entry-content video,
.entry-content canvas,
.entry-content table,
.entry-content img,
.entry-content svg,
.entry-content .wp-block-image img {
    max-width: 100%;
    height: auto;
}
.ce-elementor-entry {
    width: var(--ce-container);
    margin: 0 auto;
    padding: clamp(1.25rem, 2vw, 2rem) 0 clamp(2rem, 4vw, 3rem);
}
.ce-elementor-entry > .elementor,
.ce-elementor-entry .elementor-section,
.ce-elementor-entry .elementor-widget-wrap {
    max-width: 100%;
}
.ce-enrol-form-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ce-border);
}
.ce-enrol-form-inner {
    padding: clamp(1.2rem, 2vw, 1.75rem);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--ce-border);
}
.ce-enrol-form-body {
    margin-top: 1rem;
}
.ce-enrol-form-body form {
    display: grid;
    gap: .9rem;
}
.ce-enrol-form-body input,
.ce-enrol-form-body select,
.ce-enrol-form-body textarea {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    padding: .8rem .95rem;
    border-radius: 14px;
    border: 1px solid var(--ce-border);
    background: #fff;
}
.ce-enrol-form-body textarea {
    min-height: 140px;
}
.ce-enrol-form-body input[type="submit"],
.ce-enrol-form-body button,
.ce-enrol-form-body .wpcf7-submit {
    width: auto;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--ce-primary), color-mix(in srgb, var(--ce-primary) 82%, var(--ce-highlight)));
    box-shadow: 0 16px 30px rgba(255, 64, 0, .22);
}
.ce-dot {
    border: 0;
    cursor: pointer;
}
.ce-dot:focus-visible,
.ce-slider-prev:focus-visible,
.ce-slider-next:focus-visible,
.ce-menu-toggle:focus-visible,
.ce-button:focus-visible,
.ce-main-nav a:focus-visible,
.ce-submenu-toggle:focus-visible {
    outline: 3px solid rgba(255, 64, 0, .28);
    outline-offset: 3px;
}
.ce-post-meta,
.posted-on,
.entry-date,
time.entry-date,
.wp-block-post-date {
    display: none !important;
}
@media (max-width: 1024px) {
    body.ce-menu-open {
        overflow: hidden;
    }
    .ce-main-nav .menu-item-has-children {
        align-items: stretch;
        flex-wrap: wrap;
    }
    .ce-main-nav .menu-item-has-children > a {
        flex: 1 1 auto;
        min-width: 0;
    }
    .ce-main-nav .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        width: 100%;
        margin: .15rem 0 0;
        box-shadow: none;
        border: 0;
        padding: .15rem 0 0 .85rem;
        border-left: 2px solid rgba(15, 23, 42, 0.08);
        background: transparent;
    }
    .ce-main-nav .menu-item-has-children.submenu-open > .sub-menu {
        display: grid;
    }
    .ce-main-nav .sub-menu a {
        padding-left: 0;
    }
    .ce-main-nav ul {
        gap: .5rem;
    }
    .ce-topbar-inner {
        align-items: flex-start;
    }
    .ce-section-heading > .ce-button {
        width: auto;
    }
}
@media (max-width: 680px) {
    .ce-section-heading > .ce-button {
        width: 100%;
    }
}
@media (max-width: 680px) {
    .ce-topbar {
        font-size: .86rem;
    }
    .ce-content-card,
    .ce-card-body,
    .ce-split-card,
    .ce-metric-card,
    .ce-enrol-form-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .ce-hero {
        padding-top: 2.8rem;
    }
}


.ce-button--secondary {
    background: #fff;
    color: var(--ce-ink);
    box-shadow: inset 0 0 0 1px var(--ce-border);
}
.ce-button--secondary:hover {
    color: var(--ce-primary);
    box-shadow: inset 0 0 0 1px rgba(255, 64, 0, .3), 0 16px 30px rgba(15, 23, 42, .08);
}
.ce-metrics-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ce-shortcode-panel {
    padding: clamp(1.1rem, 2vw, 1.6rem);
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(228,231,236,.9);
    box-shadow: var(--ce-shadow);
    overflow: visible;
}
.ce-shortcode-panel > *:first-child {
    margin-top: 0;
}
.ce-shortcode-panel > *:last-child {
    margin-bottom: 0;
}
.ce-shortcode-panel,
.ce-shortcode-panel * {
    max-width: 100%;
}
@media (max-width: 1280px) {
    .ce-header-cta {
        display: none;
    }
    .ce-branding {
        max-width: 200px;
    }
    .ce-main-nav a {
        font-size: .82rem;
    }
}
@media (max-width: 900px) {
    .ce-metrics-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.ce-content-card--directory {
    overflow: visible;
}
.ce-entry-content--wide {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
}
.ce-entry-content--wide > * {
    max-width: 100%;
}
.ce-shortcode-scroller {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}
.ce-shortcode-scroller table,
.ce-entry-content--wide table {
    display: table;
    width: max-content;
    min-width: 100%;
}
.ce-shortcode-scroller .wp-block-table,
.ce-entry-content--wide .wp-block-table {
    overflow-x: auto;
}
.ce-shortcode-scroller [class*="table"],
.ce-shortcode-scroller [id*="table"],
.ce-entry-content--wide [class*="table"],
.ce-entry-content--wide [id*="table"] {
    max-width: 100%;
}
.ce-shortcode-panel--events .ce-shortcode-scroller,
.ce-content-card--directory .ce-shortcode-scroller {
    padding-bottom: .35rem;
}
.ce-shortcode-panel--events .ce-shortcode-scroller > *,
.ce-content-card--directory .entry-content > * {
    max-width: 100%;
}
.ce-shortcode-panel--events a,
.ce-entry-content--wide a {
    word-break: normal;
}
@media (max-width: 680px) {
    .ce-shortcode-panel {
        padding-left: .9rem;
        padding-right: .9rem;
    }
}

.home .ce-section-heading {
    margin-bottom: 1.1rem;
}
.home .ce-cta-band {
    margin-top: .25rem;
}


/* v1.7.0 navigation and hero refinements */
.ce-header-inner {
    gap: .9rem 1rem;
}
.ce-branding {
    max-width: 210px;
}
.ce-main-nav {
    min-width: 0;
    overflow: visible;
}
.ce-main-nav > ul.menu {
    width: 100%;
    justify-content: flex-end;
    gap: .15rem;
}
.ce-main-nav > ul.menu > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: .45rem .5rem;
    border-radius: 12px;
}
.ce-main-nav > ul.menu > li > a:hover,
.ce-main-nav > ul.menu > .current-menu-item > a,
.ce-main-nav > ul.menu > .current-menu-ancestor > a {
    background: rgba(255, 64, 0, 0.08);
}
.ce-main-nav .menu-item-has-children {
    gap: .12rem;
}
.ce-main-nav .sub-menu {
    top: calc(100% + .55rem);
    min-width: 240px;
    gap: .15rem;
    z-index: 20;
}
.ce-main-nav .sub-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
}
.ce-submenu-toggle {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}
.ce-hero--slider-only {
    padding: clamp(1.1rem, 2vw, 1.5rem) 0 clamp(2rem, 4vw, 2.8rem);
}
.ce-slider--hero {
    min-height: clamp(420px, 62vw, 700px);
}
.ce-slider--hero .ce-slider-track {
    min-height: inherit;
}
.ce-slider--hero .ce-slide-content {
    max-width: min(720px, 100%);
    padding: clamp(1.75rem, 4vw, 3rem);
}
.ce-slider--hero .ce-slide-content h1 {
    margin-bottom: .9rem;
    color: #fff;
}
.ce-slider--hero .ce-slide-content p {
    max-width: 60ch;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
}
.ce-slide-step {
    display: none !important;
}
@media (max-width: 1180px) {
    .ce-branding {
        max-width: 180px;
    }
    .ce-main-nav a {
        font-size: clamp(.74rem, .92vw, .93rem);
    }
    .ce-main-nav > ul.menu > li > a {
        padding-inline: .38rem;
    }
}
@media (max-width: 1024px) {
    .ce-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: .85rem;
        padding: .5rem 0;
    }
    .ce-branding {
        max-width: min(240px, 72vw);
    }
    .ce-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        background: rgba(15, 23, 42, 0.04);
        box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
    }
    .ce-main-nav {
        grid-column: 1 / -1;
        width: 100%;
    }
    .ce-main-nav.is-open {
        display: block;
        padding-bottom: .5rem;
    }
    .ce-main-nav ul {
        gap: .35rem;
    }
    .ce-main-nav > ul.menu {
        justify-content: stretch;
        padding: .85rem;
        border-radius: 20px;
    }
    .ce-main-nav > ul.menu > li > a {
        width: 100%;
        padding: .78rem .9rem;
        border-radius: 14px;
        background: #f8fafc;
    }
    .ce-main-nav .menu-item-has-children {
        gap: .35rem;
    }
    .ce-submenu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
    .ce-main-nav .sub-menu {
        margin-top: .35rem;
        padding-top: .25rem;
        padding-left: .95rem;
    }
    .ce-main-nav .sub-menu a {
        min-height: 40px;
    }
    .ce-slider--hero {
        min-height: clamp(360px, 72vw, 560px);
    }
}
@media (max-width: 680px) {
    .ce-topbar-inner {
        gap: .4rem;
    }
    .ce-slider--hero {
        min-height: 380px;
        border-radius: 22px;
    }
    .ce-slider--hero .ce-slide-content {
        padding: 1.25rem;
    }
    .ce-slider-controls {
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
    }
    .ce-slider-dots {
        gap: .3rem;
    }
    .ce-dot {
        width: 10px;
        height: 10px;
    }
    .ce-dot.is-active {
        width: 26px;
    }
}


/* DU&T adaptation */
:root {
    --ce-primary: #0778AD;
    --ce-secondary: #014A6C;
    --ce-accent: #83ABBE;
    --ce-highlight: #CE6B05;
    --ce-ink: #0d2740;
    --ce-muted: #53677b;
    --ce-bg: #f4f8fb;
    --ce-surface: #ffffff;
    --ce-border: #d5e0e8;
    --ce-shadow: 0 24px 60px rgba(11, 37, 65, 0.1);
    --ce-radius: 20px;
    --ce-container: min(1180px, calc(100vw - 2rem));
}

body { color: var(--ce-ink); background: var(--ce-bg); }
a:hover { color: var(--ce-primary); }
p { color: var(--ce-muted); }
.ce-section--tight { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.ce-section-heading--stacked p { max-width: 62ch; }
.ce-topbar {
    background: linear-gradient(90deg, color-mix(in srgb, var(--ce-primary) 96%, black), var(--ce-secondary));
    color: rgba(255,255,255,.9);
}
.ce-topbar-inner { align-items: center; }
.ce-topbar p { font-size: .92rem; }
.ce-topbar a { text-decoration: underline; text-underline-offset: 3px; }

.ce-site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(1,74,108,.10);
}
.ce-header-inner {
    min-height: 92px;
    grid-template-columns: minmax(220px, 1.2fr) minmax(0, 2fr) auto;
    gap: .8rem 1rem;
}
.ce-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
}
.ce-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: radial-gradient(circle at 32% 28%, color-mix(in srgb, #fff 28%, var(--ce-primary)), var(--ce-primary) 58%, var(--ce-secondary));
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .03em;
    box-shadow: 0 14px 30px rgba(1,74,108,.22), inset -4px -4px 0 rgba(206,107,5,.85);
}
.ce-brand-text { display: flex; flex-direction: column; min-width: 0; }
.ce-site-title {
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    font-weight: 800;
    line-height: 1.2;
}
.ce-site-tagline { color: var(--ce-muted); font-size: .9rem; margin: .2rem 0 0; }
.ce-logo-wrap img { max-height: 68px; }
.ce-main-nav ul { gap: .2rem; justify-content: flex-start; }
.ce-main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: .35rem .72rem;
    border-radius: 999px;
    font-size: .9rem;
}
.ce-main-nav .current-menu-item > a,
.ce-main-nav a:hover {
    background: rgba(7,120,173,.08);
    color: var(--ce-primary);
}
.ce-main-nav .sub-menu {
    padding: .75rem;
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(15,39,64,.14);
}
.ce-main-nav .sub-menu a {
    border-radius: 12px;
    white-space: normal;
    line-height: 1.35;
}
.ce-header-cta .ce-button { min-width: 150px; }

.ce-button {
    background: linear-gradient(135deg, var(--ce-primary), var(--ce-secondary));
    box-shadow: 0 16px 30px rgba(1,74,108,.22);
}
.ce-button:hover { box-shadow: 0 20px 42px rgba(1,74,108,.28); }
.ce-button--secondary {
    background: #fff;
    color: var(--ce-primary);
    box-shadow: inset 0 0 0 1px rgba(1,74,108,.14);
}
.ce-button--secondary:hover { color: var(--ce-primary); background: #fff; }
.ce-button--ghost {
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}

.ce-hero.ce-iscb-hero { padding-top: 1.5rem; background: transparent; color: #fff; }
.ce-slider--hero {
    min-height: 620px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.1);
    background: #0f2740;
}
.ce-slider-track { min-height: 620px; }
.ce-slide-overlay {
    background: linear-gradient(180deg, rgba(4,16,33,.18), rgba(7,25,45,.78));
}
.ce-slide-content {
    padding: clamp(2rem, 4vw, 3rem);
    max-width: 680px;
}
.ce-slide-content h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    margin-bottom: 1rem;
}
.ce-slide-content p {
    color: rgba(255,255,255,.88);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 48ch;
}
.ce-slide-step { margin-bottom: .8rem; color: rgba(255,255,255,.72); }
.ce-slider-controls {
    bottom: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.ce-slider-prev,
.ce-slider-next,
.ce-dot {
    border: 0;
    background: rgba(255,255,255,.16);
    color: #fff;
}
.ce-slider-prev,
.ce-slider-next {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 1.25rem;
}
.ce-slider-dots { display: flex; gap: .55rem; }
.ce-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    padding: 0;
}
.ce-dot.is-active { background: #fff; }

.ce-intro-card--iscb {
    background: #fff;
    border: 1px solid var(--ce-border);
    border-radius: 28px;
    box-shadow: var(--ce-shadow);
}
.ce-intro-card--iscb .ce-intro-copy { padding: clamp(1.8rem, 3vw, 2.5rem); }
.ce-intro-card--iscb .ce-intro-media { min-height: 100%; }
.ce-intro-card--iscb .ce-intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ce-kicker {
    background: rgba(7,120,173,.08);
    color: var(--ce-primary);
}
.ce-kicker::before {
    background: linear-gradient(135deg, var(--ce-primary), var(--ce-highlight));
}

.ce-iscb-grid {
    display: grid;
    gap: 1.2rem;
}
.ce-iscb-grid--services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ce-iscb-grid--accreditation {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ce-iscb-card,
.ce-card,
.ce-content-card,
.ce-side-card,
.ce-metric-card {
    background: #fff;
    border: 1px solid var(--ce-border);
    box-shadow: var(--ce-shadow);
}
.ce-iscb-card {
    border-radius: 22px;
    overflow: hidden;
}
.ce-iscb-card-body { padding: 1.5rem; }
.ce-iscb-card h3 { margin-bottom: .75rem; }
.ce-iscb-card p { margin-bottom: 1rem; }
.ce-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(45,119,180,.1);
    color: var(--ce-primary);
    font-weight: 700;
    font-size: .8rem;
    margin-bottom: .9rem;
}
.ce-card { border-radius: 22px; overflow: hidden; }
.ce-card-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.ce-card-body { padding: 1.4rem; }
.ce-card-body h3 { margin-bottom: .7rem; }

.ce-cta-band--iscb {
    background: linear-gradient(135deg, var(--ce-primary), color-mix(in srgb, var(--ce-secondary) 82%, #08111f));
    color: #fff;
}
.ce-cta-band--iscb p { color: rgba(255,255,255,.82); }

.ce-content-shell--iscb {
    padding: 2.5rem 0 4rem;
}
.ce-singular-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.4rem;
    align-items: start;
}
.ce-content-card--article,
.ce-side-card {
    border-radius: 22px;
}
.ce-content-card--article {
    padding: clamp(1.25rem, 2vw, 2rem);
}
.ce-side-panel {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 112px;
}
.ce-side-card {
    padding: 1.35rem;
}
.ce-side-card h2,
.ce-side-card h3 { margin-bottom: .85rem; }
.ce-side-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .65rem;
}
.ce-side-links a {
    display: block;
    padding: .8rem .95rem;
    border-radius: 14px;
    background: rgba(7,120,173,.05);
    font-weight: 600;
}
.ce-side-links a:hover { background: rgba(7,120,173,.09); }
.ce-button-row--stacked {
    flex-direction: column;
    align-items: stretch;
}
.ce-button-row--stacked .ce-button { width: 100%; }
.ce-entry-hero--iscb {
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background-image: var(--entry-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}
.ce-entry-hero--iscb .ce-entry-hero-overlay {
    background: linear-gradient(180deg, rgba(5,19,35,.18), rgba(5,19,35,.82));
}
.ce-entry-hero-inner {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 4vw, 3rem) 0;
}
.ce-entry-summary { color: rgba(255,255,255,.84); max-width: 56ch; }
.ce-entry-content--page,
.ce-entry-content--post {
    font-size: 1.03rem;
}
.ce-entry-content--page > *:last-child,
.ce-entry-content--post > *:last-child { margin-bottom: 0; }

.ce-site-footer {
    background: #0f2740;
    color: rgba(255,255,255,.88);
}
.ce-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 1.5rem;
    padding: 3rem 0 2rem;
}
.ce-site-footer p,
.ce-site-footer a { color: rgba(255,255,255,.8); }
.ce-site-footer a:hover { color: #fff; }
.ce-site-footer .menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.ce-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}
.ce-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 1.4rem;
}

.ce-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.ce-metric-card {
    padding: 1.4rem;
    border-radius: 22px;
    text-align: center;
}
.ce-metric-card strong {
    display: block;
    font-size: clamp(1.45rem, 2vw, 2.05rem);
    line-height: 1.1;
    margin-bottom: .35rem;
    color: var(--ce-primary);
}
.ce-metric-card span {
    color: var(--ce-muted);
    font-weight: 600;
}
.ce-iscb-grid--courses {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.ce-dut-testimonials {
    background: linear-gradient(180deg, #fff, #f7fbfd);
}
.ce-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}
.ce-testimonial-card {
    background: #fff;
    border: 1px solid var(--ce-border);
    border-radius: 22px;
    box-shadow: var(--ce-shadow);
    padding: 1.6rem;
    position: relative;
}
.ce-quote-mark {
    display: inline-flex;
    font-size: 3rem;
    line-height: 1;
    color: var(--ce-highlight);
    margin-bottom: .6rem;
}
.ce-testimonial-card p {
    margin-bottom: 1rem;
}
.ce-testimonial-card strong {
    display: block;
    margin-bottom: .2rem;
}
.ce-testimonial-card span {
    color: var(--ce-muted);
    font-size: .95rem;
}

@media (max-width: 1100px) {
    .ce-header-inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
    }
    .ce-main-nav {
        order: 4;
        grid-column: 1 / -1;
    }
    .ce-iscb-grid--services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ce-iscb-grid--accreditation { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ce-iscb-grid--courses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ce-metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ce-testimonial-grid { grid-template-columns: 1fr; }
    .ce-singular-grid { grid-template-columns: 1fr; }
    .ce-side-panel { position: static; }
}

@media (max-width: 1024px) {
    .ce-menu-toggle { display: block; justify-self: end; }
    .ce-main-nav {
        display: none;
        width: 100%;
        padding-bottom: .8rem;
    }
    .ce-main-nav.is-open { display: block; }
    .ce-main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: .35rem;
    }
    .ce-main-nav .sub-menu {
        position: static;
        display: none;
        margin-top: .45rem;
        box-shadow: none;
    }
    .ce-main-nav .submenu-open > .sub-menu { display: flex; }
    .ce-header-cta { display: none; }
}

@media (max-width: 760px) {
    .ce-topbar-inner,
    .ce-footer-bottom-inner { flex-direction: column; }
    .ce-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .ce-brand-mark {
        width: 52px;
        height: 52px;
        border-radius: 999px;
        font-size: .95rem;
    }
    .ce-brand-lockup { gap: .65rem; }
    .ce-slider--hero,
    .ce-slider-track { min-height: 520px; }
    .ce-slide-content h1 { max-width: none; }
    .ce-iscb-grid--services,
    .ce-iscb-grid--accreditation,
    .ce-iscb-grid--courses,
    .ce-metrics-grid,
    .ce-testimonial-grid,
    .ce-footer-grid { grid-template-columns: 1fr; }
}


/* v1.9.1 responsive, navigation, media and enquiry updates */
.ce-main-nav .menu-item-has-children {
    display: block;
}
.ce-main-nav .menu-item-has-children > a {
    width: auto;
    padding-right: .72rem;
}
.ce-submenu-toggle {
    display: none !important;
}
.ce-main-nav .menu-item-has-children:hover > .sub-menu,
.ce-main-nav .menu-item-has-children:focus-within > .sub-menu,
.ce-main-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.ce-main-nav .sub-menu {
    z-index: 30;
}
.ce-main-nav .sub-menu .menu-item-has-children > a {
    width: 100%;
}
.ce-topbar p,
.ce-site-title,
.ce-site-tagline,
.ce-card-body h3,
.ce-card-body p,
.ce-entry-summary,
.entry-content,
.entry-content > * {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.ce-content-image,
.entry-content img,
.ce-card-media img,
.ce-intro-image,
.ce-logo-wrap img {
    max-width: 100%;
    height: auto;
}
.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object {
    width: 100%;
    max-width: 100%;
    border: 0;
}
.entry-content iframe {
    aspect-ratio: 16 / 9;
    min-height: 260px;
}
.entry-content .wp-block-image,
.entry-content figure,
.entry-content .alignwide,
.entry-content .alignfull {
    width: 100%;
}
.entry-content table,
.ce-entry-content--wide table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.ce-load-more-link {
    margin: 1.25rem 0 1.75rem;
}
.ce-load-more-link .ce-button {
    width: auto;
}
.ce-enrol-form-section {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid var(--ce-border);
}
.ce-enrol-form-inner {
    padding: clamp(1.25rem, 2.5vw, 2rem);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f7fbfd);
    border: 1px solid var(--ce-border);
    box-shadow: var(--ce-shadow);
}
.ce-enrol-form-body form,
.ce-enrol-form-body .wpcf7-form {
    display: grid;
    gap: .9rem;
}
.ce-enrol-form-body input:not([type="submit"]),
.ce-enrol-form-body select,
.ce-enrol-form-body textarea {
    width: 100%;
    max-width: 100%;
}
.ce-enrol-form-body textarea {
    min-height: 140px;
}
.ce-enrol-form-body .wpcf7-submit {
    width: 100%;
    min-height: 50px;
}
@media (min-width: 761px) {
    .ce-enrol-form-body .wpcf7-submit {
        width: auto;
        min-width: 220px;
    }
}
@media (max-width: 1200px) {
    .ce-header-inner {
        gap: .9rem;
    }
    .ce-branding {
        max-width: 260px;
    }
    .ce-main-nav a {
        font-size: .88rem;
        padding: .35rem .6rem;
    }
}
@media (max-width: 1024px) {
    .ce-site-header {
        position: sticky;
    }
    .ce-main-nav {
        background: transparent;
    }
    .ce-main-nav > ul.menu {
        padding-top: .45rem;
    }
    .ce-main-nav .menu-item-has-children > a {
        width: 100%;
        padding-right: .9rem;
    }
    .ce-main-nav .sub-menu {
        position: static;
        min-width: 0;
        margin-top: .35rem;
        padding: .45rem 0 .25rem .95rem;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
    }
    .ce-main-nav .menu-item-has-children:hover > .sub-menu,
    .ce-main-nav .menu-item-has-children:focus-within > .sub-menu {
        display: none;
    }
    .ce-main-nav .menu-item-has-children.submenu-open > .sub-menu {
        display: flex;
    }
    .ce-main-nav .sub-menu a {
        background: #ffffff;
    }
    .ce-singular-grid {
        gap: 1rem;
    }
}
@media (max-width: 760px) {
    .ce-container {
        width: min(100vw - 1rem, 100%);
    }
    .ce-topbar {
        display: none;
    }
    .ce-site-header {
        backdrop-filter: none;
    }
    .ce-header-inner {
        min-height: 72px;
        padding: .45rem 0;
    }
    .ce-branding {
        max-width: 70vw;
    }
    .ce-logo-wrap img {
        max-height: 54px;
    }
    .ce-site-title {
        font-size: 1rem;
    }
    .ce-site-tagline {
        font-size: .82rem;
    }
    .ce-main-nav > ul.menu > li > a {
        width: 100%;
        border-radius: 14px;
        background: #f8fafc;
    }
    .ce-hero,
    .ce-section,
    .home .ce-section {
        padding-left: 0;
        padding-right: 0;
    }
    .ce-slider--hero,
    .ce-slider-track {
        min-height: clamp(360px, 100vw, 500px);
    }
    .ce-slide-content {
        padding: 1.2rem;
    }
    .ce-slide-content h1 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
        max-width: none;
    }
    .ce-slide-content p {
        font-size: .98rem;
    }
    .ce-slider-controls {
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
    }
    .ce-intro-card--iscb .ce-intro-copy,
    .ce-content-card--article,
    .ce-side-card,
    .ce-enrol-form-inner {
        padding: 1rem;
    }
    .ce-entry-hero-inner {
        padding: 1.5rem 0;
    }
    .ce-entry-content--page,
    .ce-entry-content--post {
        font-size: 1rem;
    }
    .entry-content iframe {
        min-height: 200px;
    }
}
