:root {
    --ce-primary: #ff4000;
    --ce-secondary: #0059b2;
    --ce-accent: #85b200;
    --ce-highlight: #940094;
    --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, #0c2c54, #ff4000 60%, #940094);
}

* { 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;
}
