/*
 * Global English 2026 redesign - shared design-system stylesheet.
 * Loaded sitewide via pageData() (lib/functions.php) so any page can use it.
 *
 * Every selector here is scoped under .ge-page (or is itself a .ge-*
 * prefixed class) so nothing collides with the legacy Bootstrap-based
 * CSS still used elsewhere on the site.
 */
:root{
  --ge-blue:#0b4f8a; --ge-blue-dark:#083a66; --ge-tint:#e3eef8;
  --ge-orange:#e8762c; --ge-orange-dark:#cf6420; --ge-gold:#f0a500;
  /* Functional "action" orange for text/buttons that must pass WCAG AA 4.5:1
     on white (buy buttons, price text). --ge-orange/-dark stay for large
     decorative/hero use only. #b0530f = 5.1:1 on #fff; hover #8f480d. */
  --ge-action:#b0530f; --ge-action-dark:#8f480d;
  /* Sticky-header height: .ge-siteheader is sticky at top:0/z-index:500 and
     measures 81px, so every other sticky element must offset by this or it
     pins UNDERNEATH the header and disappears on scroll. */
  --ge-header-h:81px;
  --ge-green:#1d8a4e; --ge-green-tint:#e6f5ec;
  --ge-ink:#20303f; --ge-slate:#4a5b6b; --ge-grey:#5c6b7a;
  --ge-mist:#f2f6fa; --ge-line:#d8e2ec;
  --ge-radius:14px; --ge-maxw:1240px;
  --ge-font:'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}

.ge-skip{position:absolute;left:-9999px;top:0;background:var(--ge-blue);color:#fff;padding:10px 18px;z-index:1000;font-family:var(--ge-font);text-decoration:none}
.ge-skip:focus{left:0}
.ge-wrap{max-width:var(--ge-maxw);margin:0 auto;padding:0 20px;box-sizing:border-box}

/* ---------- Shared buttons ---------- */
.ge-btn{display:inline-block;text-decoration:none;font-family:var(--ge-font);font-weight:800;font-size:16px;border-radius:10px;padding:14px 26px;transition:background .15s ease,transform .1s ease;border:none;cursor:pointer;box-sizing:border-box}
.ge-btn:active{transform:scale(.98)}
/* Compound with .ge-btn so these always beat the generic `.ge-page a`
   link-color rule below, regardless of source order (they share the
   same specificity otherwise, since both add exactly one class+element
   worth of weight - see: buy_now-style buttons rendering invisible/wrong
   color when this was `.ge-btn-primary` alone). */
.ge-btn.ge-btn-primary{background:var(--ge-action);color:#fff}
.ge-btn.ge-btn-primary:hover{background:var(--ge-action-dark)}
a.ge-btn,a.ge-btn:hover{text-decoration:none!important} /* beat app.css header a:hover underline */
.ge-page .ge-form button.ge-btn{width:auto} /* beat app.css form button{width:100%} at <=768px */
.ge-btn.ge-btn-blue{background:var(--ge-blue);color:#fff}
.ge-btn.ge-btn-blue:hover{background:var(--ge-blue-dark)}
.ge-btn.ge-btn-ghost{background:transparent;color:var(--ge-blue);border:2px solid var(--ge-blue)}
.ge-btn.ge-btn-ghost:hover{background:var(--ge-tint)}
.ge-btn.ge-btn-green{background:var(--ge-green);color:#fff}
.ge-btn.ge-btn-green:hover{background:#166e3d}
.ge-btn.ge-btn-sm{padding:9px 18px;font-size:14px;border-radius:8px}
.ge-btn.ge-btn-block{display:block;width:100%;text-align:center}
.ge-btn:focus-visible,.ge-topbar a:focus-visible,.ge-nav a:focus-visible,.ge-navtoggle:focus-visible,.ge-footer a:focus-visible,.ge-header-compare:focus-visible,.ge-skip:focus-visible{outline:3px solid var(--ge-gold);outline-offset:2px}

/* ---------- Top bar + header ---------- */
.ge-topbar{background:var(--ge-blue-dark);color:#fff;font-size:13.5px;font-family:var(--ge-font)}
.ge-topbar .ge-wrap{display:flex;justify-content:space-between;align-items:center;gap:16px;padding-top:8px;padding-bottom:8px}
.ge-topbar a{color:#fff;text-decoration:none}
.ge-topbar a:hover{text-decoration:underline}
.ge-topbar .ge-contact{display:flex;gap:20px;flex-wrap:wrap;align-items:center}
.ge-siteheader{background:#fff;border-bottom:1px solid var(--ge-line);position:sticky;top:0;z-index:500;font-family:var(--ge-font)}
.ge-siteheader .ge-wrap{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:12px;padding-bottom:12px}
.ge-siteheader .ge-logo img{height:52px;width:auto}
.ge-nav ul{list-style:none;display:flex;gap:4px;flex-wrap:wrap;margin:0;padding:0}
.ge-nav a{display:block;text-decoration:none;font-size:15px;font-weight:600;color:var(--ge-ink);padding:8px 12px;border-radius:8px}
.ge-nav a:hover,.ge-nav a[aria-current]{background:var(--ge-tint);color:var(--ge-blue-dark)}
.ge-nav a.ge-nav-cta{background:var(--ge-action);color:#fff}
.ge-nav a.ge-nav-cta:hover{background:var(--ge-action-dark)}
.ge-header-actions{display:none;align-items:center;gap:8px;flex:none}
.ge-header-compare{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 12px;border-radius:8px;text-decoration:none;font-weight:700;font-size:14px;background:var(--ge-action);color:#fff}
.ge-header-compare:hover{background:var(--ge-action-dark);color:#fff}
/* Course/bundle money pages: Enrol is the action. Keep Compare reachable
   without it being the loudest header control. */
.ge-header-compare.ge-header-compare--quiet{background:transparent;color:var(--ge-blue);border:2px solid var(--ge-blue);font-weight:600}
.ge-header-compare.ge-header-compare--quiet:hover{background:var(--ge-tint);color:var(--ge-blue-dark)}
.ge-navtoggle{display:none;background:none;border:2px solid var(--ge-blue);border-radius:8px;color:var(--ge-blue);font-family:var(--ge-font);font-weight:700;padding:8px 14px;min-height:44px;cursor:pointer}
.ge-nav .ge-nav-account{display:none}

/* Promo strip under the site header. Lives outside .ge-page so it is a
   standalone ge-* block (not Bootstrap .sales-banner / .container / .row). */
.ge-salesstrip{background:var(--ge-blue-dark) center/cover no-repeat;color:#fff;font-family:var(--ge-font);position:relative}
.ge-salesstrip:before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,58,102,.88) 0%,rgba(8,58,102,.55) 70%,rgba(8,58,102,.28) 100%)}
.ge-salesstrip-inner{position:relative;max-width:var(--ge-maxw);margin:0 auto;padding:16px 20px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.ge-salesstrip-title{margin:0;font-size:20px;font-weight:800;line-height:1.25;letter-spacing:-.01em}
.ge-salesstrip-title span{display:block;font-size:14px;font-weight:500;color:#dbe9f6;margin-top:4px}
.ge-salesstrip-cta{margin:0;display:flex;flex-direction:column;align-items:flex-start;gap:6px}
.ge-salesstrip-cta small{font-size:12px;color:#dbe9f6}
@media (max-width:700px){
  .ge-salesstrip-inner{padding:14px 16px}
  .ge-salesstrip-title{font-size:17px}
}
.ge-nav li.ge-has-sub{position:relative}
.ge-nav .ge-submenu{list-style:none;margin:0;padding:0;display:none;flex-direction:column;position:absolute;top:100%;left:0;background:#fff;border:1px solid var(--ge-line);border-radius:10px;box-shadow:0 12px 28px rgba(11,79,138,.14);min-width:230px;z-index:50;gap:0}
.ge-nav li.ge-has-sub:hover .ge-submenu,.ge-nav li.ge-has-sub:focus-within .ge-submenu{display:flex}
.ge-nav .ge-submenu a{padding:11px 16px;border-radius:0;white-space:nowrap;font-weight:500}
.ge-nav .ge-submenu li:first-child a{border-radius:9px 9px 0 0}
.ge-nav .ge-submenu li:last-child a{border-radius:0 0 9px 9px}
@media (max-width:1200px){
  .ge-topbar{display:none}
  .ge-header-actions{display:flex}
  .ge-navtoggle{display:block}
  .ge-nav{display:none;position:absolute;left:0;right:0;top:100%;background:#fff;border-bottom:1px solid var(--ge-line);box-shadow:0 12px 24px rgba(11,79,138,.12)}
  .ge-nav.ge-open{display:block;max-height:calc(100dvh - var(--ge-header-h,81px));overflow-y:auto;-webkit-overflow-scrolling:touch}
  body.ge-nav-lock{overflow:hidden}
  .ge-nav .ge-nav-cta{display:none}
  .ge-nav ul{flex-direction:column;padding:12px 20px}
  .ge-nav li.ge-has-sub{position:static}
  .ge-nav .ge-submenu{display:flex;position:static;box-shadow:none;border:none;border-left:2px solid var(--ge-line);margin:2px 0 6px 14px;min-width:0}
  .ge-nav .ge-submenu a{padding:8px 12px}
  .ge-nav .ge-nav-account{display:list-item;order:-1}
  .ge-nav .ge-nav-account a{background:var(--ge-tint);color:var(--ge-blue-dark);font-weight:800}
}

/* ---------- Footer ---------- */
.ge-footer{background:var(--ge-blue-dark);color:#c8dcee;font-size:14px;padding:56px 0 32px;font-family:var(--ge-font)}
.ge-footer h2{color:#fff;font-size:15px;letter-spacing:.06em;text-transform:uppercase;margin:0 0 16px}
.ge-footer a{color:#c8dcee;text-decoration:none}
.ge-footer a:hover{color:#fff;text-decoration:underline}
.ge-footer .ge-fcols{display:grid;grid-template-columns:repeat(4,1fr);gap:36px}
.ge-footer .ge-fcols ul{list-style:none;margin:0;padding:0}
.ge-footer .ge-fcols li{padding:0}
.ge-footer .ge-fcols a{display:inline-flex;align-items:center;min-height:44px}
.ge-footer .ge-trustbox-row{margin-top:36px;max-width:420px}
.ge-footer .ge-fbottom{border-top:1px solid rgba(255,255,255,.15);margin-top:44px;padding-top:24px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.ge-footer .ge-fbottom p{margin:0}
.ge-footer .ge-socials{display:flex;gap:14px}
.ge-footer .ge-socials a{display:flex;width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.12);align-items:center;justify-content:center}
.ge-footer .ge-socials a:hover{background:rgba(255,255,255,.24)}
@media (max-width:900px){.ge-footer .ge-fcols{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.ge-footer .ge-fcols{grid-template-columns:1fr}}

/* ---------- Shared page shell (any redesigned content page) ---------- */
.ge-page{font-family:var(--ge-font);color:var(--ge-ink);line-height:1.6;background:#fff}
.ge-page img{max-width:100%;height:auto;display:block}
.ge-page a{color:var(--ge-blue)}
.ge-page .ge-center{text-align:center}
.ge-page .ge-center .ge-sub{margin-left:auto;margin-right:auto}
/* Go Overseas review widget script sets a fixed 350px iframe width via inline
   style, which can be wider than the content column on narrow phones - contain
   any overflow to the widget itself rather than letting it push out the page. */
.ge-reviews{overflow-x:hidden}
.ge-reviews .go-overseas-review-widget-component{max-width:100%;overflow-x:auto;display:flex;justify-content:center}
.ge-page h2{line-height:1.2;color:var(--ge-blue-dark);font-size:clamp(26px,3.2vw,36px);font-weight:800;margin:0}
.ge-page h3{line-height:1.2;color:var(--ge-blue-dark);margin:0}
/* Legacy .unit__header--* bars (nl_signup.php, country_guide.php etc) carry
   their own background + text color from app.css, but the bare ".ge-page h3"
   rule above has higher specificity and was silently overriding their text
   back to dark blue on a dark blue/orange bar. Restore the real colors. */
.ge-page .unit__header--blue{color:#fff}
.ge-page .unit__header--orange{color:#fff}
.ge-page .unit__header--orange-pale{color:#e2701a}
.ge-page .unit__header--grey{color:#e2701a}
.ge-page .ge-sub{max-width:680px;font-size:16.5px;color:var(--ge-slate);margin-top:12px}
.ge-page .ge-eyebrow{display:inline-block;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--ge-blue);background:var(--ge-tint);border:1px solid #c6dcf0;border-radius:999px;padding:6px 14px;margin-bottom:14px}
.ge-page section{padding:64px 0}
.ge-page section.ge-tight{padding:44px 0}
.ge-page section.ge-alt{background:var(--ge-mist)}

/* ---------- FAQ accordion (shared component) ---------- */
.ge-page .ge-faq{max-width:820px;margin:36px auto 0}
.ge-page .ge-faq details{background:#fff;border:1px solid var(--ge-line);border-radius:12px;margin-bottom:12px;overflow:hidden}
.ge-page .ge-faq summary{cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;padding:18px 22px;font-size:16.5px;font-weight:700;color:var(--ge-blue-dark)}
.ge-page .ge-faq summary::-webkit-details-marker{display:none}
.ge-page .ge-faq summary::after{content:"+";font-size:24px;font-weight:400;color:var(--ge-action);flex:none;transition:transform .15s ease}
.ge-page .ge-faq details[open] summary::after{transform:rotate(45deg)}
.ge-page .ge-faq .ge-a{padding:0 22px 20px;font-size:15.5px;color:var(--ge-slate)}
.ge-page .ge-faq .ge-a p{margin:0}

/* ge-faq-item: the FAQ markup used by blog posts + AEO pages (the shape
   ge_faqpage_jsonld() parses: <details class="ge-faq-item"><summary>Q</summary>
   answer</details>). Styled to match the .ge-faq cards above. Answers are
   sometimes bare text (older posts) and sometimes <p>-wrapped, so the card
   pads its content and the summary bleeds back to full width. */
.ge-page .ge-faq-item{background:#fff;border:1px solid var(--ge-line);border-radius:12px;margin-bottom:12px;padding:0 22px;overflow:hidden;color:var(--ge-slate);font-size:15.5px;line-height:1.6}
.ge-page .ge-faq-item summary{margin:0 -22px;padding:18px 22px;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;font-size:16.5px;font-weight:700;color:var(--ge-blue-dark)}
.ge-page .ge-faq-item summary::-webkit-details-marker{display:none}
.ge-page .ge-faq-item summary::after{content:"+";font-size:24px;font-weight:400;color:var(--ge-action);flex:none;transition:transform .15s ease}
.ge-page .ge-faq-item[open] summary{margin-bottom:14px}
.ge-page .ge-faq-item[open] summary::after{transform:rotate(45deg)}
.ge-page .ge-faq-item[open]{padding-bottom:20px}
.ge-page .ge-faq-item p{margin:0 0 10px}
.ge-page .ge-faq-item > :last-child{margin-bottom:0}

/* ---------- Final CTA banner (shared component) ---------- */
.ge-page .ge-finalcta{background:linear-gradient(135deg,var(--ge-orange) 0%,#f08b48 100%);color:#fff;text-align:center;padding:72px 0}
.ge-page .ge-finalcta h2{color:#fff}
.ge-page .ge-finalcta p{max-width:560px;margin:14px auto 30px;color:#fff3e8;font-size:17px}
.ge-page .ge-finalcta .ge-btn{background:#fff;color:var(--ge-action)}
.ge-page .ge-finalcta .ge-btn:hover{background:#fff6ef}
.ge-page .ge-finalcta .ge-note{font-size:13.5px;color:#ffe6d1;margin-top:16px}

@media (prefers-reduced-motion:reduce){
  .ge-btn,.ge-nav a,.ge-page *{transition:none!important;scroll-behavior:auto!important}
}

/* ---------- Shared: breadcrumbs + page hero (any content page) ---------- */
/* Breadcrumb text darkened from --ge-grey (#5c6b7a, ~3.1:1 on white - fails WCAG
   AA) to a slate that clears 4.5:1; links carry an underline so they're
   distinguishable without relying on colour alone. */
.ge-page .ge-breadcrumbs{font-size:13.5px;color:#5a6b7a;padding:14px 0}
.ge-page .ge-breadcrumbs a{color:var(--ge-blue);text-decoration:underline}
.ge-page .ge-breadcrumbs a:hover{text-decoration:underline}
.ge-page .ge-pagehero{background:linear-gradient(135deg,var(--ge-blue-dark) 0%,var(--ge-blue) 70%);color:#fff;padding:52px 0 48px}
.ge-page .ge-pagehero h1{color:#fff;font-size:clamp(28px,3.8vw,42px);line-height:1.12;font-weight:800;max-width:760px;margin:0}
.ge-page .ge-pagehero .ge-hero-h1-short{display:none}
.ge-page .ge-pagehero .ge-hero-sub-mark{display:none}
/* Links inside the dark hero: .ge-page a paints them --ge-blue, i.e. dark blue on
   the dark-blue hero gradient (~1.1:1 - invisible). /internships/ "Register your
   interest" is one of these and is a primary conversion path. */
.ge-page .ge-pagehero a{color:#fff;text-decoration:underline;text-underline-offset:2px}
.ge-page .ge-pagehero a:hover{color:var(--ge-gold)}
.ge-page .ge-pagehero p{color:#dbe9f6;font-size:17px;max-width:700px;margin-top:14px}
.ge-page .ge-pagehero .ge-minitrust{display:flex;gap:24px;flex-wrap:wrap;margin-top:22px;font-size:14px;color:#c8dcee;list-style:none;padding:0}
.ge-page .ge-pagehero .ge-minitrust b{color:var(--ge-gold)}
.ge-page .ge-pagehero .ge-promofeats{max-width:700px;margin-top:6px}
.ge-page .ge-pagehero .ge-promofeats p{margin:14px 0 6px;font-size:13px;font-weight:700;letter-spacing:.08em;color:#c8dcee}
.ge-page .ge-pagehero .ge-promofeats p:first-child{margin-top:0}
.ge-page .ge-pagehero .ge-promofeats ul{margin:0 0 4px;padding-left:20px;list-style:disc}
.ge-page .ge-pagehero .ge-promofeats li{margin-bottom:5px;line-height:1.4;font-size:15px;color:#eaf3fb}
.ge-page .ge-pagehero .ge-promofeats li p{margin:0;display:inline;font-size:inherit;font-weight:400;letter-spacing:normal;color:inherit}
.ge-page .ge-pagehero .ge-promofeats strong{color:#fff}
.ge-page .ge-pagehero .ge-promofeats u{text-decoration:none}

/* ---------- Shared: prose content pages (about/accreditation/whychoose/etc) ---------- */
.ge-page .ge-content-grid{display:grid;grid-template-columns:2fr 1fr;gap:44px;align-items:start}
@media (max-width:900px){.ge-page .ge-content-grid{grid-template-columns:1fr}}
.ge-page .ge-content-grid.ge-content-grid--split{grid-template-columns:1fr 1fr}
@media (max-width:700px){.ge-page .ge-content-grid.ge-content-grid--split{grid-template-columns:1fr}}
.ge-page .ge-prose h2{font-size:24px;margin:32px 0 12px}
.ge-page .ge-prose h2:first-child{margin-top:0}
.ge-page .ge-prose h3{font-size:18px;margin:22px 0 8px}
.ge-page .ge-prose p{font-size:15.5px;color:var(--ge-slate);margin-bottom:14px;line-height:1.65}
.ge-page .ge-prose ul{margin:0 0 14px 22px;color:var(--ge-slate);font-size:15.5px;line-height:1.65}
.ge-page .ge-prose li{margin-bottom:6px}
.ge-page .ge-prose img{border-radius:var(--ge-radius);margin-bottom:20px}
.ge-aside-card,.ge-page .ge-aside-card{background:#fff;border:1px solid var(--ge-line);border-radius:var(--ge-radius);padding:22px;margin-bottom:22px}
.ge-aside-card h2,.ge-aside-card h3,.ge-page .ge-aside-card h3{font-size:16px;color:var(--ge-blue-dark);margin-bottom:10px}
.ge-aside-card p,.ge-page .ge-aside-card p{font-size:14px;color:var(--ge-slate);margin-bottom:12px}
.ge-aside-card.ge-aside-accent,.ge-page .ge-aside-card.ge-aside-accent{background:var(--ge-blue-dark);color:#fff;border:none}
.ge-aside-card.ge-aside-accent h2,.ge-aside-card.ge-aside-accent h3,.ge-page .ge-aside-card.ge-aside-accent h3{color:#fff}
.ge-aside-card.ge-aside-accent p,.ge-page .ge-aside-card.ge-aside-accent p{color:#c8dcee}
.ge-aside-card.ge-aside-accent a,.ge-page .ge-aside-card.ge-aside-accent a{color:#fff;text-decoration:underline}
.ge-page .ge-stories{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:40px}
.ge-page .ge-story{background:#fff;border:1px solid var(--ge-line);border-radius:var(--ge-radius);overflow:hidden;text-decoration:none;color:var(--ge-ink);transition:transform .18s ease,box-shadow .18s ease;display:block}
.ge-page .ge-story:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(11,79,138,.14)}
.ge-page .ge-story img{aspect-ratio:4/3;object-fit:cover;width:100%}
.ge-page .ge-story .ge-body{padding:18px}
.ge-page .ge-story h2,.ge-page .ge-story h3{font-size:16px;margin-bottom:6px}
.ge-page .ge-story p{font-size:14px;color:var(--ge-slate);margin:0}
.ge-page .ge-story .ge-tag{display:inline-block;font-size:11.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--ge-action);margin-bottom:8px}
@media (max-width:900px){.ge-page .ge-stories{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.ge-page .ge-stories{grid-template-columns:1fr}}
.ge-guesthead{background:var(--ge-blue);color:#fff;padding:env(safe-area-inset-top) 0 0}
.ge-guesthead-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:12px;padding:14px 20px}
.ge-guesthead-logo img{height:40px;width:auto;display:block}
.ge-guesthead-nav{margin-left:auto;display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.ge-guesthead-nav a{color:#fff;text-decoration:none;font-weight:700;font-size:13px;border:1.5px solid rgba(255,255,255,.55);border-radius:999px;padding:7px 14px;line-height:1;min-height:44px;display:inline-flex;align-items:center}
.ge-page .ge-factstrip{display:flex;gap:28px;flex-wrap:wrap;margin:28px 0;padding:22px 0;border-top:1px solid var(--ge-line);border-bottom:1px solid var(--ge-line)}
.ge-page .ge-factstrip .ge-fact b{display:block;font-size:22px;font-weight:800;color:var(--ge-blue-dark)}
.ge-page .ge-factstrip .ge-fact span{font-size:12.5px;color:var(--ge-grey);text-transform:uppercase;letter-spacing:.04em}

/* ---------- Shared: 3-up card grid (choose/feature cards) ---------- */
.ge-page .ge-choose{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:36px}
.ge-page .ge-choose .ge-card{background:#fff;border:1px solid var(--ge-line);border-radius:var(--ge-radius);padding:26px 24px;text-align:left;transition:transform .18s ease,box-shadow .18s ease}
.ge-page .ge-choose a.ge-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(11,79,138,.14)}
.ge-page .ge-choose .ge-card h3{font-size:17.5px;margin-bottom:10px;color:var(--ge-blue-dark)}
.ge-page .ge-choose .ge-card p{font-size:14.5px;color:var(--ge-slate);margin-bottom:14px}
.ge-page .ge-choose .ge-card a{font-weight:700}
@media (max-width:800px){.ge-page .ge-choose{grid-template-columns:1fr}}

/* ---------- Shared: blog grid ---------- */
.ge-page .ge-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:40px}
.ge-page .ge-post{background:#fff;border:1px solid var(--ge-line);border-radius:var(--ge-radius);overflow:hidden;text-decoration:none;color:var(--ge-ink);display:block;transition:transform .18s ease,box-shadow .18s ease}
.ge-page .ge-post:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(11,79,138,.14)}
.ge-page .ge-post img{aspect-ratio:16/9;object-fit:cover;width:100%}
.ge-page .ge-post .ge-body{padding:18px}
.ge-page .ge-post h2.ge-post-title{font-size:16.5px;margin-bottom:6px;line-height:1.35;color:var(--ge-blue-dark);font-weight:700}
.ge-page .ge-post span{font-size:14px;color:var(--ge-blue);font-weight:600}
.ge-page .ge-post p{font-size:13.5px;color:var(--ge-slate);margin:6px 0 0}
@media (max-width:900px){.ge-page .ge-blog-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.ge-page .ge-blog-grid{grid-template-columns:1fr}}

/* ---------- Shared: pagination (matches Paginator class's fixed <ul class="pagination"> output) ---------- */
.ge-page ul.pagination{display:flex;justify-content:center;gap:6px;flex-wrap:wrap;margin-top:32px;list-style:none;padding:0}
.ge-page ul.pagination li{display:inline-flex}
.ge-page ul.pagination a,.ge-page ul.pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:44px;min-height:44px;padding:0 10px;border-radius:8px;font-size:14px;font-weight:600;text-decoration:none;color:var(--ge-blue);border:1px solid var(--ge-line)}
.ge-page ul.pagination a:hover{background:var(--ge-tint)}
.ge-page ul.pagination li.active a{background:var(--ge-blue);color:#fff;border-color:var(--ge-blue)}
.ge-page ul.pagination li.disabled span{color:var(--ge-grey);background:var(--ge-mist)}

/* ---------- Shared: simple forms (contact, etc) ---------- */
.ge-page .ge-form .ge-form-group{margin-bottom:18px}
.ge-page .ge-form label{display:block;font-size:14px;font-weight:700;color:var(--ge-blue-dark);margin-bottom:6px}
.ge-page .ge-form input[type="text"],
.ge-page .ge-form input[type="email"],
.ge-page .ge-form input[type="password"],
.ge-page .ge-form input[type="search"],
.ge-page .ge-form select,
.ge-page .ge-form textarea{width:100%;font-family:var(--ge-font);font-size:16px;padding:11px 14px;border:1px solid var(--ge-line);border-radius:8px;box-sizing:border-box;color:var(--ge-ink)}
.ge-page .ge-form input:focus,
.ge-page .ge-form select:focus,
.ge-page .ge-form textarea:focus{outline:3px solid var(--ge-gold);outline-offset:1px;border-color:var(--ge-blue)}
.ge-page .ge-form .ge-form-group.ge-has-error input,
.ge-page .ge-form .ge-form-group.ge-has-error textarea{border-color:#c0392b}
.ge-page .ge-form .ge-error-text{display:block;font-size:13px;color:#c0392b;margin-top:6px}
.ge-page .ge-form .ge-form-note{font-size:13.5px;color:var(--ge-slate)}
.ge-page .ge-form .ge-form-note a{color:var(--ge-blue)}
.ge-page .ge-form input[type="file"]{width:100%;font-size:14px;padding:9px 0;color:var(--ge-slate)}
.ge-page .ge-form .ge-checkrow{display:flex;align-items:center;gap:8px;font-size:14.5px;color:var(--ge-slate);font-weight:400}
.ge-page .ge-form .ge-checkrow input{width:auto}

/* ---------- Shared: country/destination template (Travel & Teach) ---------- */
.ge-page .ge-country-hero{border-radius:var(--ge-radius);overflow:hidden;margin-bottom:26px}
.ge-page .ge-country-hero img{width:100%;display:block;aspect-ratio:16/6;object-fit:cover}
.ge-page .ge-tabs{display:flex;gap:8px;flex-wrap:wrap;border-bottom:1px solid var(--ge-line);margin-bottom:26px;padding-bottom:0}
.ge-page .ge-tabs a{font-size:14.5px;font-weight:700;color:var(--ge-slate);text-decoration:none;padding:10px 4px;margin-bottom:-1px;border-bottom:3px solid transparent}
.ge-page .ge-tabs a:hover{color:var(--ge-blue)}
.ge-page .ge-tabs a.ge-tab-active{color:var(--ge-blue);border-bottom-color:var(--ge-action)}
.ge-page .ge-gallery{display:grid;gap:12px;margin-bottom:22px}
.ge-page .ge-gallery a{display:block;border-radius:10px;overflow:hidden;border:1px solid var(--ge-line)}
.ge-page .ge-gallery img{width:100%;display:block;aspect-ratio:4/3;object-fit:cover;transition:transform .2s ease}
.ge-page .ge-gallery a:hover img{transform:scale(1.04)}
.ge-page .ge-linklist{display:flex;flex-direction:column;gap:8px}
.ge-page .ge-linklist-item{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:11px 14px;border:1px solid var(--ge-line);border-radius:8px;color:var(--ge-blue-dark);text-decoration:none;font-size:14px;font-weight:600;background:#fff;transition:background .12s ease,border-color .12s ease}
.ge-page .ge-linklist-item:hover{background:var(--ge-tint);border-color:var(--ge-blue)}
.ge-page .ge-linklist-item .ge-linklist-text{flex:1}
.ge-page .ge-linklist-item .ge-linklist-price{color:var(--ge-action);font-weight:700;font-size:13px;flex:none}
.ge-page .ge-linklist-item .ge-linklist-arrow{color:var(--ge-action);font-weight:800;flex:none}
.ge-page .ge-experience{border:1px solid var(--ge-line);border-radius:var(--ge-radius);padding:20px;margin-bottom:16px;display:flex;gap:16px}
.ge-page .ge-experience img{width:64px;height:64px;border-radius:50%;object-fit:cover;flex:none}
.ge-page .ge-experience h4{font-size:15.5px;margin-bottom:6px;color:var(--ge-blue-dark)}
.ge-page .ge-experience p{font-size:14.5px;color:var(--ge-slate);margin:0;white-space:pre-line}
.ge-page .ge-country-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.ge-page .ge-country-grid a{display:block;padding:14px 16px;border:1px solid var(--ge-line);border-radius:10px;font-size:14.5px;font-weight:600;color:var(--ge-blue-dark);text-decoration:none;background:#fff}
.ge-page .ge-country-grid a:hover{background:var(--ge-tint);border-color:var(--ge-blue)}
@media (max-width:900px){.ge-page .ge-country-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.ge-page .ge-country-grid{grid-template-columns:1fr}}
.ge-page .ge-searchbox{position:relative}
.ge-page .ge-searchbox input{width:100%;font-family:var(--ge-font);font-size:16px;padding:14px 16px;border:1px solid var(--ge-line);border-radius:10px;box-sizing:border-box}
.ge-page .ge-searchbox input:focus{outline:3px solid var(--ge-gold);outline-offset:1px;border-color:var(--ge-blue)}
.ge-page .typeahead.dropdown-menu{position:absolute;left:0;right:0;top:100%;margin-top:4px;background:#fff;border:1px solid var(--ge-line);border-radius:10px;list-style:none;padding:6px;box-shadow:0 12px 28px rgba(11,79,138,.14);z-index:20}
.ge-page .typeahead.dropdown-menu li a{display:block;padding:9px 12px;border-radius:6px;color:var(--ge-ink);text-decoration:none;font-size:14.5px}
.ge-page .typeahead.dropdown-menu li.active a,.ge-page .typeahead.dropdown-menu li a:hover{background:var(--ge-tint);color:var(--ge-blue-dark)}

/* ---------- Legacy sidebar widgets (country_guide.php, mostread_article.php, etc) ----------
   These partials predate the redesign and still use old .unit/.panel Bootstrap classes.
   Their dark-blue boxes set color:#fff at the container level, but the shared .ge-page a
   rule (same specificity, later in the cascade) was winning and making links unreadable
   dark-blue-on-dark-blue. Force legible colors wherever these components land inside a
   redesigned aside column, without touching the legacy stylesheet used on old pages. */
.ge-page aside .unit--blue-solid a,
.ge-page aside .unit--blue-solid a:visited{color:#fff;text-decoration:underline}
.ge-page aside .unit--blue-solid a:hover{color:#fff;opacity:.85}
/* Same trap for BUTTON elements: a .ge-btn-ghost inside the solid-blue unit is
   --ge-blue on --ge-blue = 1.00:1. The "Advertise a job" CTA in the shared
   country_guide.php sidebar was invisible on the blog index, all articles,
   country guides and job listings. */
.ge-page aside .unit--blue-solid .ge-btn.ge-btn-ghost{color:#fff;border-color:#fff;background:transparent}
.ge-page aside .unit--blue-solid .ge-btn.ge-btn-ghost:hover{background:rgba(255,255,255,.14);color:#fff}
.ge-page aside .panel-heading{color:#fff}
.ge-page aside .panel-heading .panel-title{color:#fff}

/* ---------- Legacy .unit form widgets on redesigned pages (blog sidebar search
   + newsletter signup, country-guide box). Their box/heading backgrounds and
   Bootstrap form styling lived in app.css, which the bundle-free blog head no
   longer loads - restyle with the redesign tokens. Scoped to .ge-page so legacy
   pages that still load app.css are untouched. ---------- */
.ge-page .unit{margin-bottom:22px;border-radius:var(--ge-radius);overflow:hidden}
.ge-page .unit--blue{background:#fff;border:1px solid var(--ge-line)}
.ge-page .unit--blue-solid{background:var(--ge-blue);color:#fff}
.ge-page .unit__header{margin:0;padding:14px 18px;font-size:16px;font-weight:700;line-height:1.35}
.ge-page .unit__header strong{font-weight:800}
.ge-page .unit--blue .unit__header--blue{background:var(--ge-blue);color:#fff}
.ge-page .unit--blue-solid .unit__header{color:#fff}
.ge-page .unit__header .cguide_shead{display:block;font-size:13px;font-weight:400;margin-top:4px;opacity:.9}
.ge-page .unit > :not(.unit__header){padding-left:18px;padding-right:18px}
.ge-page .unit form{padding-top:16px;padding-bottom:18px}
.ge-page .unit--blue-solid > .form-group{padding-top:16px}
.ge-page .unit--blue-solid > p{margin:10px 0}
.ge-page .unit--blue-solid > p:last-of-type{padding-bottom:16px}
.ge-page .unit .form-group{margin-bottom:14px}
.ge-page .unit form .form-group:last-child{margin-bottom:0}
.ge-page .unit .control-label{display:block;font-size:13.5px;font-weight:600;color:var(--ge-blue-dark);margin-bottom:5px}
.ge-page .unit--blue-solid .control-label{color:#fff}
.ge-page .unit .form-control{width:100%;font-family:var(--ge-font);font-size:15px;padding:10px 12px;border:1px solid var(--ge-line);border-radius:9px;box-sizing:border-box;background:#fff;color:var(--ge-ink)}
.ge-page .unit .form-control:focus{outline:3px solid var(--ge-gold);outline-offset:1px;border-color:var(--ge-blue)}
.ge-page .unit textarea.form-control{min-height:110px;resize:vertical}
.ge-page .unit .btn{display:inline-block;font-family:inherit;font-size:14.5px;font-weight:700;line-height:1.2;border:1px solid transparent;border-radius:9px;padding:11px 18px;cursor:pointer;text-decoration:none;transition:background .15s ease,border-color .15s ease}
.ge-page .unit .btn-primary{background:var(--ge-blue);color:#fff}
.ge-page .unit .btn-primary:hover{background:var(--ge-blue-dark)}
.ge-page .unit .btn-light{background:#fff;color:var(--ge-blue);border-color:var(--ge-line);margin-left:8px}
.ge-page .unit .btn-light:hover{border-color:var(--ge-blue)}
.ge-page .unit .help-block{display:block;font-size:12.5px;color:var(--ge-action);margin-top:4px}
.ge-page .unit .has-error .form-control{border-color:var(--ge-action)}
.ge-page .unit .success{list-style:none;margin:0;color:#0a7d34;font-size:14px;font-weight:600}
/* "Most Read" sidebar widget (includes/mostread_article.php) */
.ge-page .ge-mostread .ge-mostread-list{padding:6px 0 10px}
.ge-page .ge-mostread .ge-mostread-item{display:flex;gap:12px;align-items:baseline;padding:9px 18px;text-decoration:none;border-bottom:1px dashed #e6edf4}
.ge-page .ge-mostread .ge-mostread-item:last-child{border-bottom:none}
.ge-page .ge-mostread .ge-mostread-item:hover{background:var(--ge-tint)}
.ge-page .ge-mostread .ge-mostread-num{flex:none;font-size:15px;font-weight:800;color:var(--ge-action)}
.ge-page .ge-mostread .ge-mostread-title{font-size:14px;font-weight:600;line-height:1.45;color:var(--ge-blue-dark)}
.ge-page .ge-mostread .ge-mostread-item:hover .ge-mostread-title{text-decoration:underline}

/* ---------- Course detail: buy box (includes/buy_now.php) ----------
   Styled to match the .ge-coursecard pricing/CTA language. Replaces the old
   Bootstrap row/col/btn markup that died with the retired bundle. */
.ge-page .ge-buybox{background:#fff;border:1px solid var(--ge-line);border-radius:14px;padding:26px 24px;margin:26px 0;box-shadow:0 2px 6px rgba(11,79,138,.06)}
.ge-page .ge-buybox h2,.ge-page .ge-buybox h3{font-size:19px;margin:0 0 8px}
.ge-page .ge-buybox > p{font-size:15px;color:var(--ge-slate)}
.ge-page .ge-buybox .ge-currency-select{margin:2px 0 14px}
.ge-page .ge-buygrid{display:flex;gap:22px;align-items:stretch;flex-wrap:wrap}
.ge-page .ge-buyopt{flex:1 1 260px;display:flex;flex-direction:column;border:1px solid var(--ge-line);border-radius:12px;padding:20px}
.ge-page .ge-buyopt-alt{border-color:#bfe3cd;background:#f6fcf8}
.ge-page .ge-buyopt-label{align-self:flex-start;font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ge-action);margin-bottom:10px}
.ge-page .ge-buyopt-label-alt{color:var(--ge-green)}
.ge-page .ge-buyopt .ge-price-row{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;margin-bottom:4px}
.ge-page .ge-buyopt .ge-now{font-size:30px;font-weight:800;color:var(--ge-ink)}
.ge-page .ge-buyopt .ge-was{font-size:15px;color:var(--ge-slate);text-decoration:line-through}
.ge-page .ge-buyopt .ge-save{display:inline-block;align-self:flex-start;font-size:12px;font-weight:700;color:#0f6b39;background:var(--ge-green-tint);border-radius:6px;padding:3px 8px;margin-bottom:10px}
.ge-sale-note{display:block;margin-top:4px;font-size:12.5px;font-weight:600;color:var(--ge-slate);line-height:1.35}
.ge-page .ge-buyopt-desc{font-size:13.5px;color:var(--ge-slate);line-height:1.55;flex:1;margin:4px 0 16px}
.ge-page .ge-buyform{margin:0}
.ge-page .ge-buybox .ge-buy,
.ge-page #bottom-buy-now .ge-buy{display:block;width:100%;text-align:center;text-decoration:none;font-size:15.5px;font-weight:800;color:#fff;background:var(--ge-action);border:none;border-radius:10px;padding:14px 16px;cursor:pointer;font-family:inherit;transition:background .15s ease,transform .1s ease;box-sizing:border-box}
.ge-page .ge-buybox .ge-buy:hover,
.ge-page #bottom-buy-now .ge-buy:hover{background:var(--ge-action-dark)}
.ge-page .ge-buybox .ge-buy:active,
.ge-page #bottom-buy-now .ge-buy:active{transform:scale(.98)}

/* ---------- Mobile sticky buy bar (course detail) ----------
   Course detail runs to ~15,900px on a phone with the enrol card's price at
   roughly y=12,200, so price + CTA were effectively absent for most of the
   page. This pins them once the in-page buy block scrolls away. Hidden on
   desktop, where the sticky .ge-enrolcard already covers it. */
#ge-mobilebuy{position:fixed;left:0;right:0;bottom:var(--ge-cc-h,0px);z-index:9995;display:none;
  align-items:center;gap:12px;padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:#fff;border-top:1px solid var(--ge-line);
  box-shadow:0 -4px 16px rgba(10,30,50,.13);
  transform:translateY(100%);transition:transform .22s ease,bottom .22s ease}
#ge-mobilebuy.is-on{transform:none}
#ge-mobilebuy .ge-mobilebuy-price{display:flex;align-items:baseline;gap:8px;white-space:nowrap}
#ge-mobilebuy .ge-mobilebuy-price strong{font-size:20px;font-weight:800;color:var(--ge-ink);line-height:1}
#ge-mobilebuy .ge-mobilebuy-price s{font-size:13.5px;color:var(--ge-slate)}
#ge-mobilebuy .ge-mobilebuy-cta{flex:1;text-align:center;text-decoration:none;
  font-size:16px;font-weight:800;color:#fff;background:var(--ge-action);
  border-radius:10px;padding:14px 18px;min-height:48px;box-sizing:border-box;
  display:flex;align-items:center;justify-content:center}
#ge-mobilebuy .ge-mobilebuy-cta:hover{background:var(--ge-action-dark)}
#ge-mobilebuy .ge-mobilebuy-cta:focus-visible{outline:3px solid var(--ge-gold);outline-offset:2px}
@media (max-width:900px){#ge-mobilebuy{display:flex}}
@media (prefers-reduced-motion:reduce){#ge-mobilebuy{transition:none}}
.ge-page .ge-buy-or{align-self:center;font-size:13px;font-weight:700;color:var(--ge-grey);text-transform:uppercase;letter-spacing:.08em}
@media (max-width:700px){.ge-page .ge-buygrid{flex-direction:column}.ge-page .ge-buy-or{align-self:center}}

/* ---------- Course detail: content tables, cert lightbox, sample slider ----------
   Vanilla replacements for the retired jQuery bundle behaviours (fancybox,
   flexslider, Bootstrap table classes) on courses/details.php. */
.ge-page .ge-table-scroll{overflow-x:auto;margin:14px 0}
.ge-page table.ge-content-table{width:100%;border-collapse:collapse;font-size:14.5px}
.ge-page table.ge-content-table th,.ge-page table.ge-content-table td{border:1px solid var(--ge-line);padding:8px 12px;text-align:left;vertical-align:top}
.ge-page table.ge-content-table th{background:var(--ge-tint);color:var(--ge-blue-dark)}
.ge-lightbox{position:fixed;inset:0;background:rgba(8,25,40,.85);display:flex;align-items:center;justify-content:center;z-index:1000;cursor:zoom-out;padding:24px}
.ge-lightbox img{max-width:min(92vw,900px);max-height:90vh;border-radius:8px;box-shadow:0 24px 80px rgba(0,0,0,.5)}
.ge-page .ge-slider{position:relative}
.ge-page .ge-slider .slides{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;list-style:none;margin:0;padding:0;gap:12px;scrollbar-width:none}
.ge-page .ge-slider .slides::-webkit-scrollbar{display:none}
.ge-page .ge-slider .slides li{flex:0 0 100%;scroll-snap-align:center}
.ge-page .ge-slider .slides img{width:100%;height:auto;display:block}
.ge-page .ge-slider-btn{position:absolute;top:50%;transform:translateY(-50%);background:#fff;border:1px solid var(--ge-line);border-radius:50%;width:40px;height:40px;font-size:16px;line-height:1;cursor:pointer;box-shadow:0 4px 14px rgba(11,79,138,.18);color:var(--ge-blue-dark)}
.ge-page .ge-slider-btn:hover{border-color:var(--ge-blue)}
.ge-page .ge-slider-prev{left:8px}
.ge-page .ge-slider-next{right:8px}

/* ---------- Shared: book/product shop listing ---------- */
.ge-page .ge-product{display:flex;gap:20px;border:1px solid var(--ge-line);border-radius:var(--ge-radius);padding:20px;margin-bottom:18px}
.ge-page .ge-product img{width:110px;height:150px;object-fit:contain;border:1px solid var(--ge-line);border-radius:8px;flex:none;background:#fff;padding:6px;box-sizing:border-box}
.ge-page .ge-product h3{font-size:17px;margin-bottom:6px;color:var(--ge-blue-dark)}
.ge-page .ge-product .ge-product-body{font-size:14.5px;color:var(--ge-slate);line-height:1.6}
.ge-page .ge-product .ge-product-body p{margin:0 0 10px}
.ge-page .ge-product .ge-product-price{font-size:18px;font-weight:800;color:var(--ge-ink);margin:8px 0}
.ge-page .ge-product .ge-product-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
@media (max-width:560px){.ge-page .ge-product{flex-direction:column}.ge-page .ge-product img{width:100%;height:auto;aspect-ratio:3/4}}

/* ---------- Shared: generic course-category listing (specialist/spotlight categories) ---------- */
.ge-page .ge-coursegrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,300px));gap:22px;margin:22px 0;align-items:stretch;justify-content:center}
.ge-page .ge-coursecard{position:relative;background:#fff;border:1px solid var(--ge-line);border-radius:14px;display:flex;flex-direction:column;padding:30px 22px 24px;box-shadow:0 2px 6px rgba(11,79,138,.06);transition:transform .18s ease,box-shadow .18s ease}
.ge-page .ge-coursecard:hover{transform:translateY(-4px);box-shadow:0 10px 26px rgba(11,79,138,.14)}
.ge-page .ge-coursecard .ge-level{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ge-action);margin-bottom:8px}
.ge-page .ge-coursecard h3{font-size:19px;line-height:1.3;margin-bottom:4px}
.ge-page .ge-coursecard h3 a{color:var(--ge-blue-dark)}
.ge-page .ge-coursecard h3 .ge-lvl{display:block;font-size:12.5px;font-weight:700;color:var(--ge-slate);letter-spacing:.03em;margin-top:4px}
.ge-page .ge-coursecard .ge-coursecard-desc{font-size:14px;color:var(--ge-slate);line-height:1.6;margin-bottom:14px;flex:1}
.ge-page .ge-coursecard .ge-price-row{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;margin-bottom:2px;margin-top:10px}
.ge-page .ge-coursecard .ge-was{font-size:14px;color:var(--ge-slate);text-decoration:line-through}
.ge-page .ge-coursecard .ge-now{font-size:28px;font-weight:800;color:var(--ge-ink)}
.ge-page .ge-coursecard .ge-now small{font-size:12.5px;font-weight:400;color:var(--ge-grey)}
.ge-page .ge-coursecard .ge-save{display:inline-block;font-size:12px;font-weight:700;color:#0f6b39;background:var(--ge-green-tint);border-radius:6px;padding:3px 8px;margin-bottom:16px}
.ge-page .ge-coursecard .ge-feats{list-style:none;margin:0 0 22px;padding:0;flex:1}
.ge-page .ge-coursecard .ge-feats li{position:relative;padding:7px 0 7px 26px;font-size:14px;line-height:1.45;border-bottom:1px dashed #e6edf4}
.ge-page .ge-coursecard .ge-feats li:last-child{border-bottom:none}
.ge-page .ge-coursecard .ge-feats li::before{content:"";position:absolute;left:0;top:10px;width:15px;height:15px;border-radius:50%;background:var(--ge-blue);-webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.6 11.6 3.4 8.4l1.2-1.2 2 2 4.8-4.8 1.2 1.2z"/><circle cx="8" cy="8" r="7.2" fill="none" stroke="black" stroke-width="1.6"/></svg>') center/contain no-repeat;mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.6 11.6 3.4 8.4l1.2-1.2 2 2 4.8-4.8 1.2 1.2z"/><circle cx="8" cy="8" r="7.2" fill="none" stroke="black" stroke-width="1.6"/></svg>') center/contain no-repeat}
.ge-page .ge-coursecard .ge-feats li strong{color:var(--ge-blue-dark);font-weight:700}
.ge-page .ge-coursecard .ge-buyform{margin:0 0 8px}
.ge-page .ge-coursecard .ge-buy{display:block;width:100%;text-align:center;text-decoration:none;font-size:15.5px;font-weight:800;color:#fff;background:var(--ge-action);border:none;border-radius:10px;padding:14px 16px;cursor:pointer;font-family:inherit;transition:background .15s ease,transform .1s ease}
.ge-page .ge-coursecard .ge-buy:hover{background:var(--ge-action-dark)}
.ge-page .ge-coursecard .ge-buy:active{transform:scale(.98)}
.ge-page .ge-coursecard .ge-guarantee{margin-top:2px;text-align:center;font-size:12.5px;color:var(--ge-slate)}
.ge-page .ge-coursecard .ge-guarantee svg{vertical-align:-2px;margin-right:4px}
.ge-page .ge-coursecard .ge-more{margin-top:8px;text-align:center;font-size:13px}
.ge-page .ge-coursecard .ge-more a{color:var(--ge-blue);font-weight:600;text-decoration:none}
.ge-page .ge-coursecard .ge-more a:hover{text-decoration:underline}
.ge-page .ge-currency-select{display:flex;align-items:center;gap:10px;justify-content:flex-end;margin-bottom:18px;font-size:13.5px;color:var(--ge-slate)}
.ge-page .ge-currency-select select{font-family:var(--ge-font);font-size:14px;padding:7px 10px;border:1px solid var(--ge-line);border-radius:8px}

/* ---------- Shared: bottom category-nav buttons (replaces sidebar cross-links) ---------- */
.ge-page .ge-catnav{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin-top:8px}

/* ---------- All-courses directory: filter/search bar ---------- */
/* Sticky offsets: .ge-siteheader is sticky at top:0 with z-index:500 and is 81px
   tall, so anything else pinned at top:0 slides UNDER it and vanishes on scroll
   (the catalog filter/search bar did exactly that). Pin below the header
   instead. The portal solved the same clash by unsticking its header
   (student-portal.css). */
.ge-page .ge-dirbar{position:sticky;top:var(--ge-header-h,81px);z-index:30;background:#fff;border-bottom:1px solid var(--ge-line);padding:14px 0;margin-bottom:6px}
.ge-page .ge-dirbar-row{display:flex;gap:12px;align-items:center;flex-wrap:wrap}
.ge-page .ge-pills{display:flex;gap:8px;flex-wrap:wrap}
.ge-page .ge-pill{border:2px solid var(--ge-line);background:#fff;color:var(--ge-slate);font-family:inherit;font-size:13.5px;font-weight:700;border-radius:999px;padding:8px 16px;min-height:44px;cursor:pointer;transition:all .12s ease}
.ge-page .ge-pill:hover{border-color:var(--ge-blue);color:var(--ge-blue)}
.ge-page .ge-pill[aria-pressed="true"]{background:var(--ge-blue);border-color:var(--ge-blue);color:#fff}
.ge-page .ge-pill .n{opacity:.9;font-weight:600;margin-left:3px}
.ge-page .ge-dirsearch{flex:1;min-width:200px;max-width:320px;margin-left:auto;position:relative}
.ge-page .ge-dirsearch input{width:100%;font-family:inherit;font-size:16px;padding:10px 14px 10px 38px;border:2px solid var(--ge-line);border-radius:999px;color:var(--ge-ink)}
.ge-page .ge-dirsearch input:focus{outline:3px solid var(--ge-gold);outline-offset:1px;border-color:var(--ge-blue)}
.ge-page .ge-dirsearch svg{position:absolute;left:13px;top:50%;transform:translateY(-50%)}
.ge-page .ge-dir-noresults{display:none;text-align:center;color:var(--ge-slate);padding:50px 0;font-size:16px}
@media (max-width:600px){.ge-page .ge-dirbar{top:0}}
/* On a phone the .ge-dirbar filter bar (blog topics + all-courses directory) wraps
   into several rows, so a sticky bar eats most of the viewport while scrolling the
   list below. Let it scroll away with the content on mobile. (The shop's .ge-shopbar
   is intentionally left sticky - fewer, centred chips, no wrapping problem.) */
@media (max-width:600px){.ge-page .ge-dirbar{position:static}}

/* ---------- All-courses directory: dedicated card design (per mockup) ---------- */
.ge-page .ge-dirgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:28px}
@media (max-width:1000px){.ge-page .ge-dirgrid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.ge-page .ge-dirgrid{grid-template-columns:1fr}}
.ge-page .ge-dircard{display:flex;flex-direction:column;background:#fff;border:1px solid var(--ge-line);border-radius:14px;padding:24px 22px;transition:transform .18s ease,box-shadow .18s ease}
.ge-page .ge-dircard:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(11,79,138,.14)}
.ge-page .ge-dircard.ge-feat{border:2px solid var(--ge-blue)}
.ge-page .ge-dircard .ge-badges{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.ge-page .ge-dircard .ge-b{font-size:10.5px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;border-radius:999px;padding:4px 10px}
.ge-page .ge-dircard .ge-b-hrs{background:var(--ge-tint);color:var(--ge-blue)}
.ge-page .ge-dircard .ge-b-lvl{background:#fdf3e3;color:#a06a00}
.ge-page .ge-dircard .ge-b-mode{background:var(--ge-green-tint);color:var(--ge-green)}
.ge-page .ge-dircard .ge-b-live{background:#f3e8fd;color:#6b21a8}
.ge-page .ge-dircard h3{font-size:16.5px;line-height:1.35;margin-bottom:6px}
.ge-page .ge-dircard h3 a{color:var(--ge-blue-dark);text-decoration:none}
.ge-page .ge-dircard h3 a:hover{text-decoration:underline}
.ge-page .ge-dircard p.ge-d{font-size:13.5px;color:var(--ge-slate);flex:1}
.ge-page .ge-dircard .ge-price{font-size:20px;font-weight:800;margin:14px 0 12px}
.ge-page .ge-dircard .ge-price .ge-was{font-size:14px;color:var(--ge-slate);text-decoration:line-through;font-weight:600;margin-left:8px}
.ge-page .ge-dircard .ge-price .ge-save{display:inline-block;font-size:11px;font-weight:700;color:#0f6b39;background:var(--ge-green-tint);border-radius:6px;padding:2px 8px;margin-left:8px;vertical-align:2px}
.ge-page .ge-dircard .ge-price .ge-see{font-size:14px;color:var(--ge-slate);font-weight:600}
.ge-page .ge-dircard .ge-row{display:flex;gap:8px;margin-top:auto}
.ge-page .ge-dircard .ge-row .ge-btn{flex:1;text-align:center;font-size:14px;padding:11px 10px;border-radius:9px}
.ge-page .ge-dircard .ge-row .ge-btn-ghost{flex:0 0 auto}
.ge-page .ge-alert{border-radius:10px;padding:14px 18px;margin-bottom:22px;font-size:14.5px}
.ge-page .ge-alert-success{background:var(--ge-green-tint);color:#166e3d;border:1px solid #b7e3c9}
.ge-page .ge-alert-error{background:#fdecea;color:#a23127;border:1px solid #f3c2bd}

/* ---------- Shared: quizzes/surveys (typeform-style one-question-at-a-time flow) ---------- */
.ge-page .ge-quizflow{max-width:640px;margin:0 auto}
.ge-page .ge-quiz-progress{height:6px;background:var(--ge-mist);border-radius:99px;overflow:hidden;margin-bottom:30px}
.ge-page .ge-quiz-progress-bar{height:100%;background:var(--ge-orange);border-radius:99px;transition:width .25s ease}
.ge-page .ge-quiz-step{animation:ge-quiz-fade .25s ease}
@keyframes ge-quiz-fade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
.ge-page .ge-quiz-num{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--ge-action);letter-spacing:.08em;text-transform:uppercase;margin-bottom:14px}
.ge-page .ge-quiz-step h3{font-size:clamp(20px,3vw,26px);font-weight:700;line-height:1.35;color:var(--ge-blue-dark);margin-bottom:22px}
.ge-page .ge-quiz-opts{display:flex;flex-direction:column;gap:12px}
.ge-page .ge-quiz-opt{display:flex;align-items:center;gap:14px;width:100%;text-align:left;background:#fff;border:2px solid var(--ge-line);border-radius:12px;padding:16px 18px;font-size:16.5px;font-family:inherit;color:var(--ge-ink);cursor:pointer;transition:border-color .12s ease,background .12s ease,transform .08s ease}
.ge-page .ge-quiz-opt:hover{border-color:var(--ge-blue);background:var(--ge-tint)}
.ge-page .ge-quiz-opt:active{transform:scale(.99)}
.ge-page .ge-quiz-opt[data-state="picked"]{border-color:var(--ge-blue);background:var(--ge-tint)}
.ge-page .ge-quiz-key{flex:none;width:32px;height:32px;border:2px solid var(--ge-line);border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:800;color:var(--ge-blue);background:#fff;transition:inherit}
.ge-page .ge-quiz-opt:hover .ge-quiz-key,.ge-page .ge-quiz-opt[data-state="picked"] .ge-quiz-key{border-color:var(--ge-blue);background:var(--ge-blue);color:#fff}
.ge-page .ge-quiz-back{display:inline-block;margin-top:20px;font-size:13.5px;color:var(--ge-slate);text-decoration:none;background:none;border:none;cursor:pointer;font-family:inherit}
.ge-page .ge-quiz-back:hover{text-decoration:underline}
.ge-page .ge-quiz-keys-tip{margin-top:18px;font-size:12.5px;color:var(--ge-grey);text-align:center}
.ge-page .ge-quiz-keys-tip kbd{border:1px solid var(--ge-line);border-bottom-width:2px;border-radius:5px;padding:1px 7px;font-family:inherit;font-size:11.5px;font-weight:700;color:var(--ge-slate)}
.ge-page .ge-quiz-review .ge-quiz-q{border:1px solid var(--ge-line);border-radius:var(--ge-radius);padding:18px 20px;margin-bottom:14px;background:#fff}
.ge-page .ge-quiz-review .ge-quiz-q h3{font-size:15px;margin-bottom:8px;color:var(--ge-blue-dark);line-height:1.4}
.ge-page .ge-quiz-review .ge-quiz-answer{margin:0;font-size:14px;color:var(--ge-slate)}
@media (prefers-reduced-motion:reduce){.ge-page .ge-quiz-opt,.ge-page .ge-quiz-step{transition:none;animation:none}}
.ge-page .ge-resultbox{background:linear-gradient(135deg,var(--ge-blue-dark) 0%,var(--ge-blue) 100%);color:#fff;border-radius:var(--ge-radius);padding:32px;text-align:center;margin-bottom:26px}
.ge-page .ge-resultbox.ge-resultbox-gold{background:linear-gradient(135deg,var(--ge-orange-dark) 0%,var(--ge-orange) 100%)}
.ge-page .ge-resultbox-score{font-size:15px;color:#dbe9f6;margin:0}
.ge-page .ge-resultbox-pct{font-size:52px;font-weight:800;margin:4px 0;line-height:1}
.ge-page .ge-resultbox-cta{font-size:16px;font-weight:700;color:#fff;margin:6px 0 0}

/* ---------- Shared: shop page (featured packs, filter bar, product grid) ---------- */
.ge-page .ge-packs{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:26px}
.ge-page .ge-pack{position:relative;display:grid;grid-template-columns:110px 1fr;gap:20px;background:#fff;border:2px solid var(--ge-blue);border-radius:var(--ge-radius);padding:24px;box-shadow:0 12px 30px rgba(11,79,138,.14)}
.ge-page .ge-pack img{width:110px;height:150px;object-fit:contain;border:1px solid var(--ge-line);border-radius:8px;background:#fff;padding:6px;box-sizing:border-box}
.ge-page .ge-pack .ge-pack-badge{position:absolute;top:-13px;left:20px;font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:#fff;background:var(--ge-action);border-radius:999px;padding:5px 12px}
.ge-page .ge-pack h3{font-size:17px;margin-bottom:8px}
.ge-page .ge-pack .ge-pack-price{font-size:21px;font-weight:800;margin-bottom:12px;color:var(--ge-ink)}
.ge-page .ge-pack .ge-product-actions{display:flex;gap:8px;flex-wrap:wrap}
@media (max-width:800px){.ge-page .ge-packs{grid-template-columns:1fr}}
@media (max-width:480px){.ge-page .ge-pack{grid-template-columns:1fr}.ge-page .ge-pack img{width:100px}}

.ge-page .ge-shopbar{position:sticky;top:var(--ge-header-h,81px);z-index:30;background:#fff;border-bottom:1px solid var(--ge-line);padding:14px 0;margin:30px -1px 0}
.ge-page .ge-shopbar-row{display:flex;gap:16px;align-items:center;justify-content:center;flex-wrap:wrap;text-align:center}
.ge-page .ge-pills{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.ge-page .ge-pill{border:2px solid var(--ge-line);background:#fff;color:var(--ge-slate);font-family:inherit;font-size:13px;font-weight:700;border-radius:999px;padding:8px 15px;cursor:pointer;transition:all .12s ease}
.ge-page .ge-pill:hover{border-color:var(--ge-blue);color:var(--ge-blue)}
.ge-page .ge-pill[aria-pressed="true"]{background:var(--ge-blue);border-color:var(--ge-blue);color:#fff}
.ge-page .ge-shopsearch{flex:0 1 280px;min-width:180px;position:relative}
.ge-page .ge-shopsearch input{width:100%;font-family:inherit;font-size:14px;padding:9px 14px 9px 34px;border:2px solid var(--ge-line);border-radius:999px;color:var(--ge-ink);box-sizing:border-box}
.ge-page .ge-shopsearch input:focus{outline:3px solid var(--ge-gold);outline-offset:1px;border-color:var(--ge-blue)}
.ge-page .ge-shopsearch svg{position:absolute;left:12px;top:50%;transform:translateY(-50%);pointer-events:none}

.ge-page .ge-grid-shop{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:28px}
.ge-page .ge-prod{display:flex;flex-direction:column;background:#fff;border:1px solid var(--ge-line);border-radius:var(--ge-radius);overflow:hidden;transition:transform .18s ease,box-shadow .18s ease}
.ge-page .ge-prod:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(11,79,138,.14)}
.ge-page .ge-prod .ge-imgwrap{position:relative;background:var(--ge-mist);padding:20px;display:flex;justify-content:center}
.ge-page .ge-prod .ge-imgwrap img{height:150px;width:auto;max-width:100%;object-fit:contain;border-radius:6px;box-shadow:0 6px 16px rgba(0,0,0,.14);background:#fff}
.ge-page .ge-prod .ge-tag{position:absolute;top:12px;left:12px;font-size:10px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;border-radius:999px;padding:4px 9px}
.ge-page .ge-prod .ge-tag-pdf{background:var(--ge-green-tint);color:var(--ge-green)}
.ge-page .ge-prod .ge-tag-cert{background:var(--ge-tint);color:var(--ge-blue)}
.ge-page .ge-prod .ge-tag-amz{background:#fdf3e3;color:#a06a00}
.ge-page .ge-prod .ge-body{display:flex;flex-direction:column;flex:1;padding:18px}
.ge-page .ge-prod h3{font-size:15.5px;line-height:1.35;margin-bottom:6px}
.ge-page .ge-prod p{font-size:13.5px;color:var(--ge-slate);flex:1;margin:0}
.ge-page .ge-prod .ge-price{font-size:19px;font-weight:800;margin:12px 0;color:var(--ge-ink)}
.ge-page .ge-prod .ge-price .ge-price-free{color:var(--ge-grey);font-size:13px;font-weight:600}
.ge-page .ge-prod .ge-product-actions{display:flex;gap:8px;margin-top:0}
.ge-page .ge-prod .ge-btn{flex:1;text-align:center;font-size:13.5px;padding:10px}
@media (max-width:1000px){.ge-page .ge-grid-shop{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.ge-page .ge-grid-shop{grid-template-columns:1fr}.ge-page .ge-shopbar{position:static}}
.ge-page .ge-noresults{display:none;text-align:center;color:var(--ge-slate);padding:40px 0;font-size:15.5px}
.ge-page .ge-groupband{background:var(--ge-tint);border:1px solid #c6dcf0;border-radius:var(--ge-radius);padding:24px 28px;display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;margin-top:36px}
.ge-page .ge-groupband p{font-size:15px;max-width:600px;margin:0;color:var(--ge-ink)}

/* ---------- Jobs: listing cards + NEW badge ---------- */
.ge-page .ge-joblist{display:flex;flex-direction:column;gap:16px;margin-top:24px}
.ge-page .ge-jobcard{display:flex;gap:18px;align-items:flex-start;background:#fff;border:1px solid var(--ge-line);border-radius:var(--ge-radius);padding:18px;transition:transform .18s ease,box-shadow .18s ease}
.ge-page a.ge-jobcard:hover,.ge-page .ge-jobcard:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(11,79,138,.14)}
.ge-page .ge-jobcard__media{flex:none;width:140px;position:relative}
.ge-page .ge-jobcard__media img{width:100%;height:auto;border-radius:10px;display:block}
.ge-page .ge-jobcard__body{flex:1;min-width:0}
.ge-page .ge-jobcard__body h3{font-size:17px;margin-bottom:6px;color:var(--ge-blue-dark)}
.ge-page .ge-jobcard__body h3 a{color:inherit;text-decoration:none}
.ge-page .ge-jobcard__body h3 a:hover{text-decoration:underline}
.ge-page .ge-jobcard__body p{font-size:14.5px;color:var(--ge-slate);margin:0 0 12px}
.ge-page .ge-badge-new{display:inline-block;background:var(--ge-action);color:#fff;font-size:11px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;border-radius:999px;padding:3px 9px;vertical-align:middle;margin-left:8px}
@media (max-width:560px){.ge-page .ge-jobcard{flex-direction:column}
  .ge-page .ge-jobcard__media{width:100%;max-width:220px}}

/* ---------- Jobs: pinned Government-approved scheme cards ---------- */
.ge-page .ge-jobcard--govt{border:2px solid var(--ge-blue);background:linear-gradient(180deg,var(--ge-tint) 0%,#fff 90px)}
.ge-page .ge-jobcard--govt:hover{box-shadow:0 12px 28px rgba(11,79,138,.22)}
.ge-page .ge-badge-govt{display:inline-block;background:var(--ge-blue);color:#fff;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;border-radius:999px;padding:4px 12px;margin-bottom:8px}

/* ---------- Jobs: detail lead image ---------- */
.ge-page .ge-lead-image{position:relative;border-radius:var(--ge-radius);overflow:hidden;margin-bottom:22px}
.ge-page .ge-lead-image img{width:100%;display:block;aspect-ratio:16/6;object-fit:cover}
.ge-page .ge-lead-image .ge-badge-new{position:absolute;top:12px;left:12px}

/* ---------- Jobs: employer-enquiry <dialog> modal (was fancybox) ---------- */
.ge-page .ge-modal,dialog.ge-modal{border:none;border-radius:var(--ge-radius);padding:0;max-width:480px;width:calc(100% - 32px);box-shadow:0 24px 60px rgba(11,32,60,.35)}
.ge-page .ge-modal::backdrop,dialog.ge-modal::backdrop{background:rgba(11,32,60,.5)}
.ge-modal__inner{padding:28px;position:relative}
.ge-modal__inner h2{font-size:20px;color:var(--ge-blue-dark);margin-bottom:12px}
.ge-modal__inner p{font-size:14px;color:var(--ge-slate);margin-bottom:12px;line-height:1.55}
.ge-modal__inner .ge-form-group{margin-bottom:16px}
.ge-modal__inner label{display:block;font-size:14px;font-weight:700;color:var(--ge-blue-dark);margin-bottom:6px}
.ge-modal__inner input[type="text"],.ge-modal__inner textarea{width:100%;font-family:var(--ge-font);font-size:15px;padding:11px 14px;border:1px solid var(--ge-line);border-radius:8px;box-sizing:border-box;color:var(--ge-ink)}
.ge-modal__inner textarea{min-height:90px;resize:vertical}
.ge-modal__inner .ge-form-group.ge-has-error input,.ge-modal__inner .ge-form-group.ge-has-error textarea{border-color:#c0392b}
.ge-modal__inner .ge-error-text{display:block;font-size:13px;color:#c0392b;margin-top:6px}
.ge-modal__close{position:absolute;top:10px;right:14px;background:none;border:none;font-size:26px;line-height:1;color:var(--ge-grey);cursor:pointer}

/* =====================================================================
   Course detail page 2026 redesign - trust bar, AEO quick-answer,
   what's-included checklist, HowTo, testimonials, sticky enrol card.
   All scoped under .ge-page; no new fonts/images (Performance stays 100).
   ===================================================================== */

/* Hero star rating (first-party graduate evaluations) */
.ge-page .ge-pagehero .ge-hero-rating{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:16px;font-size:15px;color:#eaf3fb}
.ge-page .ge-pagehero .ge-hero-rating strong{color:#fff;font-size:17px}
.ge-page .ge-hero-rating .ge-stars{position:relative;display:inline-block;font-size:19px;line-height:1;letter-spacing:2px;color:rgba(255,255,255,.32)}
.ge-page .ge-hero-rating .ge-stars::before{content:"\2605\2605\2605\2605\2605"}
.ge-page .ge-hero-rating .ge-stars::after{content:"\2605\2605\2605\2605\2605";position:absolute;left:0;top:0;color:var(--ge-gold);overflow:hidden;white-space:nowrap;width:calc(var(--rating,0)/5*100%)}

/* First-party graduate rating lives in the hero only (no second strip). */
.ge-page .ge-truststrip{background:var(--ge-mist);border-bottom:1px solid var(--ge-line)}
.ge-page .ge-truststrip .ge-wrap{padding-top:16px;padding-bottom:16px}
.ge-page .ge-trustbadges{display:flex;gap:12px;flex-wrap:wrap;align-items:stretch}
.ge-page .ge-trustbadge{display:flex;flex-direction:column;justify-content:center;gap:2px;min-width:150px;padding:10px 18px;background:#fff;border:1px solid var(--ge-line);border-radius:10px;text-decoration:none;transition:border-color .12s ease,box-shadow .12s ease}
.ge-page a.ge-trustbadge:hover{border-color:var(--ge-blue);box-shadow:0 2px 8px rgba(11,79,138,.08)}
.ge-page .ge-trustbadge--primary{background:var(--ge-blue-dark);border-color:var(--ge-blue-dark)}
.ge-page .ge-trustbadge .ge-tb-name{font-size:13px;font-weight:700;color:var(--ge-blue-dark)}
.ge-page .ge-trustbadge .ge-tb-rating{font-size:22px;font-weight:800;color:var(--ge-ink);line-height:1.1}
.ge-page .ge-trustbadge .ge-tb-rating small{font-size:13px;font-weight:600;color:var(--ge-slate)}
.ge-page .ge-trustbadge .ge-tb-label{font-size:12.5px;color:var(--ge-slate)}
.ge-page .ge-trustbadge--primary .ge-tb-rating{color:#fff}
.ge-page .ge-trustbadge--primary .ge-tb-rating small{color:#c8dcee}
.ge-page .ge-trustbadge--primary .ge-tb-label{color:#c8dcee}

/* Hero mini-trust row (accreditation / tutor / guarantee) */
.ge-page .ge-pagehero .ge-hero-price{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:20px}
.ge-page .ge-pagehero .ge-hero-price strong{font-size:28px;font-weight:800;color:#fff}
.ge-page .ge-pagehero .ge-hero-price s{color:#c8dcee;font-size:16px}
.ge-page .ge-pagehero .ge-hero-enrol{margin:0}
.ge-page .ge-promofeats-body{margin:18px 0}
.ge-page .ge-gallery-certs{grid-template-columns:repeat(3,1fr)}
@media (max-width:560px){.ge-page .ge-gallery-certs{grid-template-columns:repeat(2,1fr)}}
.ge-page details.ge-jumpnav-wrap{margin:0 0 22px}
.ge-page details.ge-jumpnav-wrap > summary{cursor:pointer;font-weight:700;color:var(--ge-blue-dark);padding:10px 0;min-height:44px}
.ge-page details.ge-jumpnav-wrap .ge-jumpnav{margin:0}
@media (min-width:901px){
  .ge-page details.ge-jumpnav-wrap > summary{display:none}
  .ge-page details.ge-jumpnav-wrap .ge-jumpnav{display:flex}
}
@media (max-width:900px){
  .ge-page details.ge-jumpnav-wrap:not([open]) .ge-jumpnav{display:none}
}
.ge-page .ge-pagehero .ge-herotrust{display:flex;gap:10px 26px;flex-wrap:wrap;margin-top:20px;padding:0;list-style:none}
.ge-page .ge-pagehero .ge-herotrust li{display:flex;align-items:center;gap:8px;font-size:14px;color:#eaf3fb;font-weight:600}
.ge-page .ge-pagehero .ge-herotrust svg{flex:none;width:18px;height:18px;fill:none;stroke:var(--ge-gold);stroke-width:2.2}
@media (max-width:560px){
  .ge-page.ge-course-detail .ge-breadcrumbs{padding:8px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .ge-page.ge-course-detail .ge-pagehero{padding:24px 0 22px}
  .ge-page.ge-course-detail .ge-pagehero h1{font-size:26px;line-height:1.15;max-width:none}
  .ge-page.ge-course-detail .ge-pagehero .ge-hero-h1-full{
    position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0
  }
  .ge-page.ge-course-detail .ge-pagehero .ge-hero-h1-short{display:block}
  .ge-page.ge-course-detail .ge-pagehero h1:not(:has(.ge-hero-h1-short)){
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden
  }
  .ge-page.ge-course-detail .ge-pagehero .ge-hero-sub{margin-top:8px;font-size:14.5px}
  .ge-page.ge-course-detail .ge-pagehero .ge-hero-sub-mark{display:inline}
  .ge-page.ge-course-detail .ge-pagehero .ge-hero-rating{margin-top:10px}
  .ge-page.ge-course-detail .ge-pagehero .ge-hero-price{margin-top:12px}
  .ge-page.ge-course-detail .ge-pagehero .ge-herotrust{margin-top:14px;gap:8px 16px}
}

/* AEO quick-answer callout at the top of the description */
.ge-page .ge-quickanswer{background:var(--ge-tint);border:1px solid #cfe0f1;border-left:4px solid var(--ge-blue);border-radius:12px;padding:18px 22px;margin:0 0 26px}
.ge-page .ge-quickanswer p{margin:0;font-size:16px;line-height:1.6;color:var(--ge-ink)}
.ge-page .ge-quickanswer strong{color:var(--ge-blue-dark)}

/* Section wrapper + heading used for the new scannable blocks */
.ge-page .ge-detail-section{margin:34px 0 0}
.ge-page .ge-detail-section > h2{font-size:22px;color:var(--ge-blue-dark);margin:0 0 16px}
/* Course-detail only: kill the 64px global section padding so blocks sit
   ~32–40px apart on desktop and ~24–32px on phones. Bundle/hub pages keep
   the looser rhythm. */
.ge-page.ge-course-detail section.ge-tight{padding:32px 0}
.ge-page.ge-course-detail .ge-detail-section{margin:36px 0 0;padding:0;scroll-margin-top:calc(var(--ge-header-h,81px) + 12px)}
.ge-page.ge-course-detail .ge-detail-section > h2{margin:0 0 12px}
.ge-page.ge-course-detail .ge-prose > .ge-detail-section:first-child{margin-top:0}
@media (max-width:560px){
  .ge-page.ge-course-detail section.ge-tight{padding:24px 0}
  .ge-page.ge-course-detail .ge-detail-section{margin:28px 0 0}
}

/* "What's included" checklist grid */
.ge-page .ge-checklist{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 24px;margin:0;padding:0;list-style:none}
@media (max-width:560px){.ge-page .ge-checklist{grid-template-columns:1fr}}
.ge-page .ge-checklist li{display:flex;align-items:flex-start;gap:10px;font-size:15px;color:var(--ge-ink);line-height:1.5}
.ge-page .ge-checklist svg{flex:none;width:20px;height:20px;margin-top:1px;fill:none;stroke:var(--ge-green);stroke-width:2.4}

/* "Is this course right for you" two-column compare */
.ge-page .ge-fit{display:grid;grid-template-columns:1fr 1fr;gap:18px}
@media (max-width:560px){.ge-page .ge-fit{grid-template-columns:1fr}}
.ge-page .ge-fit-card{border:1px solid var(--ge-line);border-radius:12px;padding:18px 20px;background:#fff}
.ge-page .ge-fit-card h3{font-size:15px;margin:0 0 10px;color:var(--ge-blue-dark)}
.ge-page .ge-fit-card ul{margin:0;padding-left:18px;font-size:14.5px;color:var(--ge-slate);line-height:1.55}
.ge-page .ge-fit-card li{margin-bottom:6px}

/* HowTo "get certified" steps */
.ge-page ol.ge-howto{counter-reset:ge-step;list-style:none;margin:0;padding:0}
.ge-page ol.ge-howto > li{counter-increment:ge-step;position:relative;padding:2px 0 16px 46px;font-size:15px;color:var(--ge-slate);line-height:1.6}
.ge-page ol.ge-howto > li::before{content:counter(ge-step);position:absolute;left:0;top:0;width:30px;height:30px;border-radius:50%;background:var(--ge-blue);color:#fff;font-weight:800;font-size:15px;display:flex;align-items:center;justify-content:center}
.ge-page ol.ge-howto > li strong{color:var(--ge-ink);display:block;margin-bottom:2px}
.ge-page .ge-howitworks ol.ge-howto > li{padding:0 0 10px 40px;font-size:14.5px}
.ge-page .ge-howitworks ol.ge-howto > li::before{width:26px;height:26px;font-size:13px}
.ge-page .ge-howitworks .ge-how-note{margin:8px 0 0;font-size:14.5px;color:var(--ge-slate)}
.ge-page .ge-jobs-line{margin:22px 0 0}
.ge-page.ge-course-detail .ge-faq{margin-top:16px}
.ge-page.ge-course-detail .ge-faq details{margin-bottom:6px}
.ge-page.ge-course-detail .ge-faq summary{padding:9px 16px;font-size:15.5px}
.ge-page.ge-course-detail .ge-faq .ge-a{padding:0 16px 10px}
.ge-page.ge-course-detail .ge-faq-item{margin-bottom:6px;padding:0 16px}
.ge-page.ge-course-detail .ge-faq-item summary{padding:9px 16px;font-size:15.5px;margin:0 -16px}
.ge-page.ge-course-detail .ge-faq-item[open] summary{margin-bottom:8px}
.ge-page.ge-course-detail .ge-faq-item[open]{padding-bottom:10px}

/* Testimonials / student comments cards */
.ge-page .ge-testimonials{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
@media (max-width:640px){.ge-page .ge-testimonials{grid-template-columns:1fr}}
.ge-page .ge-quote{background:#fff;border:1px solid var(--ge-line);border-radius:12px;padding:20px 22px;position:relative}
.ge-page .ge-quote p{font-size:15px;color:var(--ge-ink);line-height:1.6;font-style:italic;margin:0 0 10px}
.ge-page .ge-quote cite{font-style:normal;font-weight:700;font-size:14px;color:var(--ge-blue-dark)}
.ge-page .ge-quote cite span{display:block;font-weight:400;color:var(--ge-grey);font-size:13px}

/* Sticky "at a glance / enrol" aside card (desktop).
   z-index keeps the YouTube rail embed from painting over the card;
   later rail cards stay below it. #ge-bottomstack is 10000, so this
   must stay well under that. */
.ge-page .ge-enrolcard{position:sticky;top:calc(var(--ge-header-h,81px) + 16px);z-index:3;background:#fff}
.ge-page .ge-enrolcard .ge-enrol-price{font-size:30px;font-weight:800;color:var(--ge-ink);line-height:1}
.ge-page .ge-enrolcard .ge-enrol-was{font-size:15px;color:var(--ge-slate);text-decoration:line-through;margin-left:8px}
.ge-page .ge-enrolcard .ge-enrol-save{display:inline-block;font-size:12px;font-weight:700;color:#0f6b39;background:var(--ge-green-tint);border-radius:6px;padding:3px 8px;margin:8px 0 0}
.ge-page .ge-enrolcard dl{margin:14px 0 16px;display:grid;grid-template-columns:auto 1fr;gap:7px 12px;font-size:13.5px}
.ge-page .ge-enrolcard dt{color:var(--ge-slate);font-weight:600}
.ge-page .ge-enrolcard dd{margin:0;color:var(--ge-ink);font-weight:600;text-align:right}
.ge-page .ge-enrolcard .ge-enrol-cta{display:block;width:100%;box-sizing:border-box;text-align:center;text-decoration:none;font-size:15.5px;font-weight:800;color:#fff;background:var(--ge-action);border:none;border-radius:10px;padding:13px 16px;cursor:pointer;transition:background .15s ease}
.ge-page .ge-enrolcard .ge-enrol-cta:hover{background:var(--ge-action-dark)}
.ge-page .ge-enrolcard .ge-enrol-guarantee{margin:12px 0 0;text-align:center;font-size:12.5px;color:var(--ge-slate);display:flex;align-items:center;justify-content:center;gap:6px}
.ge-page .ge-enrolcard .ge-enrol-guarantee svg{width:16px;height:16px;fill:none;stroke:var(--ge-green);stroke-width:2.4;flex:none}
@media (max-width:900px){.ge-page .ge-enrolcard{position:static}}

.ge-page .ge-addon-band{background:var(--ge-tint);border-left:4px solid var(--ge-blue);border-radius:0 10px 10px 0;padding:12px 16px;margin:0 0 18px}
.ge-page .ge-addon-band p{margin:0;font-size:15px}
.ge-page ol.ge-modules{margin:8px 0 0;padding-left:22px}
.ge-page ol.ge-modules li{margin:4px 0;line-height:1.45}
.ge-page .ge-compare-current th,.ge-page .ge-compare-current td{background:#eef6ee}
.ge-page .ge-youare{display:inline-block;margin-left:8px;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#0f6b39;background:var(--ge-green-tint);border-radius:999px;padding:2px 8px}
.ge-page ul.ge-jobstrip{margin:8px 0 12px;padding-left:20px}
.ge-page ul.ge-jobstrip li{margin:4px 0}
.ge-page .ge-paa h2{font-size:20px}

/* Flattened course/bundle jump nav. Sticky only on small screens under
   the site header; desktop stays in flow so it does not collide with the
   sticky enrol card. #ge-mobilebuy stays on the bottom. */
:root{--ge-jumpnav-h:48px}
.ge-page .ge-jumpnav{
  display:flex;
  gap:4px;
  flex-wrap:wrap;
  background:#fff;
  border-bottom:1px solid var(--ge-line);
  margin:0 0 22px;
  padding:6px 0;
}
.ge-page .ge-jumpnav a{
  flex:none;
  font-size:13.5px;
  font-weight:700;
  color:var(--ge-slate);
  text-decoration:none;
  padding:0 12px;
  min-height:44px;
  box-sizing:border-box;
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  border-bottom:3px solid transparent;
}
.ge-page .ge-jumpnav a:hover{color:var(--ge-blue)}
.ge-page .ge-jumpnav a:focus-visible{outline:3px solid var(--ge-gold);outline-offset:2px}
.ge-page .ge-detail-section{scroll-margin-top:calc(var(--ge-header-h,81px) + 12px)}
@media (max-width:900px){
  .ge-page .ge-jumpnav{
    position:sticky;
    top:var(--ge-header-h,81px);
    z-index:30;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;
  }
  .ge-page .ge-detail-section{scroll-margin-top:calc(var(--ge-header-h,81px) + var(--ge-jumpnav-h) + 8px)}
}

/* Cookie bar sits in-flow via body padding (never covers a form, price or CTA).
   Compact one-line layout on phones; Accept is not pre-focused.
   Enrol + cookie share #ge-bottomstack (a flex column) so they cannot overlap. */
#ge-bottomstack{position:fixed;left:0;right:0;bottom:0;z-index:10000;display:flex;flex-direction:column;align-items:stretch;pointer-events:none}
#ge-bottomstack > *{pointer-events:auto;width:100%;box-sizing:border-box}
#ge-bottomstack #ge-mobilebuy{position:relative !important;left:auto !important;right:auto !important;bottom:auto !important;z-index:auto;transform:none !important;display:none;transition:none}
#ge-bottomstack #ge-mobilebuy.is-on{display:flex !important}
#ge-bottomstack #ge-cc{position:relative !important;left:auto !important;right:auto !important;bottom:auto !important;z-index:auto}
@media (min-width:901px){#ge-bottomstack #ge-mobilebuy.is-on{display:none !important}}
#ge-cc{position:fixed;left:0;right:0;bottom:0;z-index:9999;background:#12232e;color:#eaf3fb;padding:8px 12px calc(8px + env(safe-area-inset-bottom,0px));box-shadow:0 -2px 10px rgba(0,0,0,.2);font-size:13.5px;line-height:1.35;font-family:var(--ge-font)}
#ge-cc .ge-cc-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:10px 12px;flex-wrap:nowrap}
#ge-cc #ge-cc-text{margin:0;flex:1 1 auto;min-width:0}
#ge-cc a{color:#9fd0f5;text-decoration:underline}
#ge-cc .ge-cc-actions{display:flex;gap:8px;flex:none}
#ge-cc-accept,#ge-cc-reject{min-height:40px;border-radius:8px;padding:8px 14px;font-size:14px;font-weight:700;cursor:pointer;font-family:inherit}
#ge-cc-accept{background:#1c5db8;color:#fff;border:0}
#ge-cc-reject{background:transparent;color:#eaf3fb;border:1px solid #51667a}
#ge-cc-accept:focus-visible,#ge-cc-reject:focus-visible{outline:3px solid var(--ge-gold);outline-offset:2px}
body.has-ge-cc{padding-bottom:var(--ge-cc-h,0px)}
body.has-ge-cc #ge-pp{display:none}
body.has-ge-cc #ge-mobilebuy{bottom:var(--ge-cc-h,0px)}
body.has-mobilebuy{padding-bottom:calc(var(--ge-mobilebuy-h,72px) + var(--ge-cc-h,0px))}
body.has-ge-cc.has-mobilebuy{padding-bottom:calc(var(--ge-cc-h,0px) + var(--ge-mobilebuy-h,72px))}
@media (max-width:420px){
  #ge-cc{font-size:12.5px}
  #ge-cc-accept,#ge-cc-reject{padding:8px 12px;min-height:40px}
}

/* Compare tables: wrap on desktop, stack-friendly scroll on a phone.
   thead sticky is relative to .ge-comparewrap (overflow-x creates a
   scrollport), so top must be 0 - a header-height offset left an empty
   first-row gap on the 120/150/250 detail tables. */
.ge-page .ge-comparewrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:14px 0}
.ge-page table.ge-compare{width:100%;border-collapse:collapse;font-size:14.5px}
.ge-page.ge-course-detail table.ge-compare caption{display:none}
.ge-page table.ge-compare thead tr:empty,.ge-page table.ge-compare tbody tr:empty{display:none}
.ge-page table.ge-compare th,.ge-page table.ge-compare td{border:1px solid var(--ge-line);padding:10px 12px;text-align:left;vertical-align:top}
.ge-page table.ge-compare thead th{background:var(--ge-mist);position:sticky;top:0;z-index:1}
#compare-courses,#choose-your-course{scroll-margin-top:calc(var(--ge-header-h,81px) + 12px)}

/* CMS dumps: tables and embeds must not blow out a 320px column */
.ge-page .ge-prose,.ge-page .ge-article-body{overflow-x:auto}
.ge-page .ge-prose table,.ge-page .ge-article-body table{width:100%;border-collapse:collapse;font-size:14.5px}
.ge-page .ge-prose th,.ge-page .ge-prose td,.ge-page .ge-article-body th,.ge-page .ge-article-body td{border:1px solid var(--ge-line);padding:8px 12px;text-align:left;vertical-align:top}
.ge-page .ge-prose iframe,.ge-page .ge-article-body iframe{max-width:100%;aspect-ratio:16/9;height:auto}
.ge-page .g-recaptcha{max-width:100%;overflow-x:auto;transform-origin:left top}

/* Shared step / why grids (were homepage-only, copied on Christian TEFL) */
.ge-page .ge-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.ge-page .ge-step{background:#fff;border:1px solid var(--ge-line);border-radius:var(--ge-radius);padding:28px 24px}
.ge-page .ge-step .ge-num{width:42px;height:42px;border-radius:50%;background:var(--ge-blue);color:#fff;font-weight:800;font-size:18px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.ge-page .ge-step h3{font-size:19px;margin-bottom:8px}
.ge-page .ge-step p{font-size:15px;color:var(--ge-slate);margin:0}
@media (max-width:800px){.ge-page .ge-steps{grid-template-columns:1fr}}
.ge-page .ge-why{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:40px}
.ge-page .ge-why .ge-card{background:#fff;border:1px solid var(--ge-line);border-radius:var(--ge-radius);padding:26px 22px}
.ge-page .ge-why .ge-card h3{font-size:17px;margin:14px 0 8px}
.ge-page .ge-why .ge-card p{font-size:14.5px;color:var(--ge-slate);margin:0}
.ge-page .ge-why .ge-icon{width:48px;height:48px;border-radius:12px;background:var(--ge-tint);display:flex;align-items:center;justify-content:center}
@media (max-width:900px){.ge-page .ge-why{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.ge-page .ge-why{grid-template-columns:1fr}}
.ge-page .ge-partner-row{display:flex;gap:18px;align-items:flex-start}
@media (max-width:560px){.ge-page .ge-partner-row{flex-direction:column}}

.ge-page .ge-enrol-slot{margin:0 0 22px}
@media (min-width:901px){
  .ge-page.ge-course-detail .ge-enrol-slot > aside{
    display:flex;
    flex-direction:column;
    gap:40px;
  }
  .ge-page.ge-course-detail .ge-enrol-slot .ge-aside-card{margin-bottom:0}
  /* Sticky containing block is .ge-enrol-pin, not the tall rail. The pin
     shrink-wraps (align-self:start) and ends before .ge-enrol-video, so
     the card unsticks before the thumb can slide under it. A margin on
     .ge-enrolcard only helps in document flow — it does not travel with
     the pin, which is why the 20px / ::after gutter failed while stuck. */
  .ge-page.ge-course-detail .ge-enrol-pin{
    display:flex;
    flex-direction:column;
    gap:40px;
    align-self:start;
    width:100%;
  }
  .ge-page.ge-course-detail .ge-enrol-video{position:relative;z-index:0;flex:none}
  .ge-page.ge-course-detail .ge-enrol-video iframe{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    aspect-ratio:16/9;
  }
}
@media (max-width:900px){
  .ge-page .ge-content-grid{display:flex;flex-direction:column}
  .ge-page .ge-content-grid > .ge-enrol-slot{order:-1}
}
