
:root {
  --cwu-brand-cyan: #29aae1;
  --cwu-brand-cyan-dark: #1b8dc0;
  --cwu-brand-navy: #16294d;
  --cwu-brand-navy-deep: #0e1c38;
  --cwu-brand-teal: #2bb9a6;
  --cwu-ink: #1f2a44;
  --cwu-ink-soft: #5a6478;
  --cwu-line: #e6eaf1;
  --cwu-surface: #ffffff;
  --cwu-surface-alt: #f4f7fb;
  --cwu-gradient-bar: #2cb0eb;
  --cwu-gradient-logo: linear-gradient(135deg, #29aae1 0%, #2bb9a6 100%);
  --cwu-gradient-cta: linear-gradient(135deg, #29aae1 0%, #1b8dc0 100%);
  --cwu-shadow-menu: 0 22px 60px -18px rgba(16, 41, 77, 0.28);
  --cwu-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cwu-radius: 14px;
}

/* ---------- Base reset for the shell ---------- */
.cwu-shell {
  font-size:12px;
  position: relative;
  z-index: 1030;
}
.cwu-shell *,
.cwu-shell *::before,
.cwu-shell *::after {
  box-sizing: border-box;
}

/* ============================================================
   1. TOP UTILITY BAR
   ============================================================ */
.cwu-topbar {
  background: var(--cwu-gradient-bar);
  background-size: 200% 100%;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
  animation: cwu-sheen 14s linear infinite;
}
@keyframes cwu-sheen {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cwu-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 1rem;
}
.cwu-topbar__welcome {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cwu-topbar__welcome i { opacity: 0.9; }

.cwu-topbar__nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cwu-topbar__item {
  position: relative;
}
.cwu-topbar__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.cwu-topbar__item:last-child::after { display: none; }

.cwu-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  text-decoration: none;
  padding: 0.55rem .65rem;
  font-size: 14px;
  transition: opacity 0.25s var(--cwu-ease);
}
.cwu-topbar__link:hover { opacity: 0.82; }
.cwu-topbar__caret {
  font-size: 0.62rem;
  transition: transform 0.3s var(--cwu-ease);
}

/* --- Top bar hover dropdown (About CU) --- */
.cwu-mini {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 300px;
  background: var(--cwu-surface);
  border-radius: 12px;
  box-shadow: var(--cwu-shadow-menu);
  padding: 0.5rem;
  list-style: none;
  margin: 0.55rem 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.28s var(--cwu-ease), transform 0.28s var(--cwu-ease), visibility 0.28s;
  border: 1px solid var(--cwu-line);
  z-index:999
}
.cwu-mini::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0.7rem; /* hover bridge */
}

.cwu-mini li a{position:relative;padding-left: 25px !important;}

.cwu-mini li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 600; /* Required for solid icons */
    position: absolute;
    top: 50%;
    left: 10px;font-size:11px;
    transform: translateY(-50%);
}




.cwu-topbar__item--has-menu:hover .cwu-mini,
.cwu-topbar__item--has-menu:focus-within .cwu-mini {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cwu-topbar__item--has-menu:hover .cwu-topbar__caret {
  transform: rotate(180deg);
}
.cwu-mini__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.85rem;
  color: var(--cwu-ink);
  text-decoration: none;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.2s var(--cwu-ease), color 0.2s var(--cwu-ease), padding-left 0.2s var(--cwu-ease);
}
.cwu-mini__link i {
  color: var(--cwu-brand-cyan);
  width: 18px;
  text-align: center;
  transition: transform 0.2s var(--cwu-ease);
}
.cwu-mini__link:hover {
  background: var(--cwu-surface-alt);
  color: var(--cwu-brand-cyan-dark);
  padding-left: 1.05rem;
}
.cwu-mini__link:hover i { transform: scale(1.15); }

/* ============================================================
   2. MAIN HEADER BAR
   ============================================================ */
.cwu-header {
  background: var(--cwu-surface);
  border-bottom: 1px solid var(--cwu-line);
  box-shadow: 0 4px 20px -14px rgba(16, 41, 77, 0.35);
}
.cwu-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: .2rem;
}

/* --- Logo --- */
.cwu-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
  padding:8px 0
}

.cwu-brand img{max-width:100%; height:90px}
.cwu-brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--cwu-gradient-logo);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 22px -8px rgba(41, 170, 225, 0.65);
  overflow: hidden;
}
.cwu-brand__mark img { max-width: 100%; max-height: 100%; display: block; }
.cwu-brand__text { line-height: 1.05; }
.cwu-brand__name {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  color: var(--cwu-brand-cyan-dark);
  display: block;
}
.cwu-brand__sub {
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  color: var(--cwu-ink-soft);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* --- Primary nav (desktop) --- */
.cwu-primary {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 88px;
}
.cwu-primary__item {
  height: 100%;
  display: flex;
  align-items: center;
}
.cwu-primary__item--static { position: static; } /* enables full-width mega */

.cwu-primary__link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.55rem 0.4rem;
  color: var(--cwu-ink);
  text-decoration: none;
  font-size: 14px;
  border-radius: 10px;
  position: relative;
  transition: color 0.25s var(--cwu-ease), background 0.25s var(--cwu-ease);
}
.cwu-primary__link::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 0.4rem;
  height: 2px;
  border-radius: 2px;
  background: var(--cwu-gradient-logo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--cwu-ease);
}
.cwu-primary__item:hover .cwu-primary__link,
.cwu-primary__item:focus-within .cwu-primary__link {
  color: var(--cwu-brand-cyan-dark);
}
.cwu-primary__item:hover .cwu-primary__link::after {
  transform: scaleX(1);
}
.cwu-primary__caret {
  font-size: 0.6rem;
  transition: transform 0.3s var(--cwu-ease);
}
.cwu-primary__item:hover .cwu-primary__caret { transform: rotate(180deg); }

/* --- CTA button --- */
.cwu-cta {
  display: inline-flex;
  align-items: center;
  background: var(--cwu-gradient-cta);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 12px 26px -10px rgba(41, 170, 225, 0.75);
  transition: transform 0.25s var(--cwu-ease), box-shadow 0.25s var(--cwu-ease), filter 0.25s var(--cwu-ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.cwu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -10px rgba(41, 170, 225, 0.85);
  filter: brightness(1.04);
  color: #fff;
}
.cwu-cta i { transition: transform 0.3s var(--cwu-ease); }
.cwu-cta:hover i { transform: translateX(4px); }

/* ============================================================
   3. FULL-WIDTH MEGA (SUB) MENU
   ============================================================ */
.cwu-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background: var(--cwu-surface);
  box-shadow: var(--cwu-shadow-menu);
  border-top: 1px solid var(--cwu-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.32s var(--cwu-ease), transform 0.32s var(--cwu-ease), visibility 0.32s;
  z-index: 40;
  overflow: hidden;
}
.cwu-mega::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0.6rem; /* hover bridge to keep menu open */
}
.cwu-primary__item--static:hover .cwu-mega,
.cwu-primary__item--static:focus-within .cwu-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cwu-mega__grid {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  min-height: 320px;
}

/* --- Mega: left rail --- */
.cwu-mega__rail {
  padding: 2.4rem 2rem 2.4rem 0;
  border-right: 1px solid var(--cwu-line);
}
.cwu-mega__heading {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 16px;
  font-weight: 800;
  color: var(--cwu-brand-navy);
  margin: 0 0 0.4rem;
}
.cwu-mega__heading i { color: var(--cwu-brand-cyan); }
.cwu-mega__rule {
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--cwu-gradient-logo);
  margin: 0 0 1.5rem;
}
.cwu-rail {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cwu-rail__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.82rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 11px;
  color: var(--cwu-brand-navy);
  text-decoration: none;
  font-size: 16px;
  transition: background 0.22s var(--cwu-ease), color 0.22s var(--cwu-ease), transform 0.22s var(--cwu-ease);
}
.cwu-rail__link .cwu-rail__lead {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.cwu-rail__link i.cwu-rail__ico {
  color: var(--cwu-brand-cyan);
  width: 20px;
  text-align: center;
}
.cwu-rail__link .cwu-rail__go {
  font-size: 0.72rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s var(--cwu-ease), transform 0.22s var(--cwu-ease);
}
.cwu-rail__link:hover,
.cwu-rail__link.is-active {
  background: var(--cwu-surface-alt);
  color: var(--cwu-brand-cyan-dark);
}
.cwu-rail__link:hover .cwu-rail__go { opacity: 1; transform: translateX(0); }

/* --- Mega: right content --- */
.cwu-mega__panel {
  padding: 2.4rem 0 2.4rem 2.4rem;
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: stretch;
}
.cwu-panes {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 460px;
}

/* --- Media image (hidden on mobile) --- */
.cwu-mega__media {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 2rem;
  min-width: 0;
}
.cwu-mega__media img,
.cwu-mega__media .cwu-media-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  /*border-radius: var(--cwu-radius);
  box-shadow: 0 14px 34px -16px rgba(16, 41, 77, 0.4);*/
}

/* --- Swappable panes (SGU-style: rail hover switches the panel) --- */
.cwu-pane {
  display: none;
}
.cwu-pane.is-shown {
  display: block;
  animation: cwu-fade 0.28s var(--cwu-ease) both;
}
@keyframes cwu-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cwu-mega__label {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cwu-ink-soft);
  font-weight: 700;
  margin: 0 0 1.2rem;
}
.cwu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cwu-links__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem 0.85rem;
  border-radius: 11px;
  color: var(--cwu-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  transition: background 0.2s var(--cwu-ease), transform 0.2s var(--cwu-ease), color 0.2s var(--cwu-ease);
}
.cwu-links__ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--cwu-surface-alt);
  display: grid;
  place-items: center;
  color: var(--cwu-brand-cyan-dark);
  font-size: 0.95rem;
  transition: background 0.25s var(--cwu-ease), color 0.25s var(--cwu-ease), transform 0.25s var(--cwu-ease);
}
.cwu-links__link:hover {
  background: var(--cwu-surface-alt);
  color: var(--cwu-brand-cyan-dark);
}
.cwu-links__link:hover .cwu-links__ico {
  background: var(--cwu-gradient-logo);
  color: #fff;
  transform: translateY(-2px) rotate(-4deg);
}
.cwu-links__meta { line-height: 1.15; min-width: 0; }
.cwu-links__title { font-size: 14px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cwu-links__hint { font-size: 10px; color: var(--cwu-ink-soft); display: block; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* stagger reveal of rail items */
.cwu-primary__item--static:hover .cwu-rail__link,
.cwu-primary__item--static:hover .cwu-links__link {
  animation: cwu-rise 0.4s var(--cwu-ease) both;
}
@keyframes cwu-rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   4. MOBILE HAMBURGER + SLIDE-IN DRAWER
   ============================================================ */
.cwu-burger {
  display: none;               /* shown < 992px via media query */
  width: 46px;
  height: 46px;
  border: 1px solid var(--cwu-line);
  border-radius: 12px;
  background: var(--cwu-surface);
  color: var(--cwu-brand-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s var(--cwu-ease), border-color 0.2s var(--cwu-ease);
}
.cwu-burger:hover { background: var(--cwu-surface-alt); border-color: var(--cwu-brand-cyan); }

/* Animated hamburger: 3 lines built from one element + pseudo-elements */
.cwu-burger__box {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}
.cwu-burger__line,
.cwu-burger__line::before,
.cwu-burger__line::after {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--cwu-brand-navy);
  transition: transform 0.3s var(--cwu-ease), top 0.3s var(--cwu-ease), opacity 0.2s var(--cwu-ease);
}
.cwu-burger__line { top: 50%; transform: translateY(-50%); }
.cwu-burger__line::before { content: ""; top: -7px; }
.cwu-burger__line::after  { content: ""; top: 7px; }
/* morph to an X when drawer is open */
body.cwu-nav-open .cwu-burger__line { background: transparent; }
body.cwu-nav-open .cwu-burger__line::before { top: 0; transform: rotate(45deg); background: var(--cwu-brand-cyan-dark); }
body.cwu-nav-open .cwu-burger__line::after  { top: 0; transform: rotate(-45deg); background: var(--cwu-brand-cyan-dark); }

/* Scrim */
.cwu-scrim {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 56, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--cwu-ease), visibility 0.35s;
  z-index: 1040;
}
.cwu-scrim.is-open { opacity: 1; visibility: visible; }

/* Drawer slides in from the right */
.cwu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(380px, 88vw);
  background: var(--cwu-surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.42s var(--cwu-ease);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 70px -24px rgba(14, 28, 56, 0.55);
}
.cwu-drawer.is-open { transform: translateX(0); }

.cwu-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--cwu-gradient-logo);
  color: #fff;
  flex-shrink: 0;
}
.cwu-drawer__title { font-weight: 700; letter-spacing: 0.14em; font-size: 0.98rem; }
.cwu-drawer__close {
  width: 38px; height: 38px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s var(--cwu-ease), transform 0.3s var(--cwu-ease);
}
.cwu-drawer__close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }

.cwu-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.6rem 0.75rem 1.5rem;
}

/* Staggered fade-in of each row when the drawer opens (top-level only) */
.cwu-drawer .cwu-acc--l1,
.cwu-drawer .cwu-acc__single,
.cwu-drawer .cwu-drawer__cta {
  opacity: 0;
  transform: translateX(24px);
}
.cwu-drawer.is-open .cwu-acc--l1,
.cwu-drawer.is-open .cwu-acc__single,
.cwu-drawer.is-open .cwu-drawer__cta {
  animation: cwu-stagger 0.45s var(--cwu-ease) forwards;
  animation-delay: calc(0.12s + var(--i, 0) * 0.06s);
}
@keyframes cwu-stagger {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Single (non-accordion) drawer link — same look as accordion triggers */
.cwu-acc__single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--cwu-line);
  color: var(--cwu-brand-navy);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s var(--cwu-ease), color 0.2s var(--cwu-ease);
}
.cwu-acc__single .cwu-acc__lead { display: inline-flex; align-items: center; gap: 0.7rem; }
.cwu-acc__single i.cwu-acc__ico { color: var(--cwu-brand-cyan); width: 20px; text-align: center; }
.cwu-acc__single:hover { background: var(--cwu-surface-alt); color: var(--cwu-brand-cyan-dark); }

/* Accordion */
.cwu-acc { border-bottom: 1px solid var(--cwu-line); }
.cwu-acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0.75rem;
  background: none;
  border: none;
  color: var(--cwu-brand-navy);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
}
.cwu-acc__trigger .cwu-acc__lead { display: inline-flex; align-items: center; gap: 0.7rem; }
.cwu-acc__trigger i.cwu-acc__ico { color: var(--cwu-brand-cyan); width: 20px; text-align: center; }
.cwu-acc__chev { font-size: 0.75rem; transition: transform 0.35s var(--cwu-ease); color: var(--cwu-ink-soft); }
.cwu-acc.is-open > .cwu-acc__trigger .cwu-acc__chev { transform: rotate(180deg); }

.cwu-acc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--cwu-ease);
}
/* nested category panels open faster so the parent menu panel can measure
   and grow to fit without clipping */
.cwu-acc--l2 > .cwu-acc__panel {
  transition: max-height 0.28s var(--cwu-ease);
}
.cwu-acc__inner { padding: 0.15rem 0.5rem 0.9rem; }

/* --- Level 2 (category) accordion, nested inside a menu --- */
.cwu-acc--l2 {
  border-bottom: 1px solid var(--cwu-line);
  border-radius: 8px;
}
.cwu-acc--l2:last-child { border-bottom: none; }
.cwu-acc__trigger--sub {
  padding: 0.72rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cwu-ink-soft);
}
.cwu-acc--l2.is-open > .cwu-acc__trigger--sub { color: var(--cwu-brand-cyan-dark); }
.cwu-acc__inner--sub { padding: 0.1rem 0.35rem 0.6rem; }
.cwu-sublabel {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cwu-ink-soft);
  font-weight: 700;
  padding: 0.5rem 0.75rem 0.35rem;
}
.cwu-acc__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.75rem;
  border-radius: 10px;
  color: var(--cwu-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.2s var(--cwu-ease), color 0.2s var(--cwu-ease), padding-left 0.2s var(--cwu-ease);
}
.cwu-acc__link i { color: var(--cwu-brand-cyan); width: 18px; text-align: center; }
.cwu-acc__link:hover { background: var(--cwu-surface-alt); color: var(--cwu-brand-cyan-dark); padding-left: 1rem; }

.cwu-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.1rem 0.75rem 0;
  padding: 0.9rem;
  border-radius: 999px;
  background: var(--cwu-gradient-cta);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 26px -12px rgba(41,170,225,0.8);
}
.cwu-drawer__cta i { transition: transform 0.3s var(--cwu-ease); }
.cwu-drawer__cta:hover i { transform: translateX(4px); }

/* ============================================================
   5. RESPONSIVE BREAKPOINTS
   Desktop keeps the full mega menu on hover.
   <= 992px: hide the inline nav, show the hamburger + drawer.
   ============================================================ */
@media (max-width: 1200px) {
  .cwu-primary__link { padding: 0.55rem 0.7rem;  }
  .cwu-brand__sub { letter-spacing: 0.28em; }
}

@media (max-width: 992px) {
  .cwu-topbar { display: none; }             /* links moved into the drawer */
  .cwu-primary,
  .cwu-header__cta-wrap { display: none; }   /* hide desktop nav + inline CTA */
  .cwu-burger { display: inline-flex; }      /* show hamburger */
  .cwu-header__inner { min-height: 72px; }
  .cwu-mega { display: none; }               /* mega handled by drawer now */
}

@media (max-width: 576px) {
  .cwu-topbar__welcome span { display: none; }
  .cwu-brand__name {  }
  .cwu-brand__mark { width: 46px; height: 46px; font-size: 1.25rem; }
  .cwu-topbar__link { padding: 0.5rem 0.6rem; font-size: 0.78rem; }
}

/* ---------- Accessibility ---------- */
.cwu-shell a:focus-visible,
.cwu-shell button:focus-visible {
  outline: 3px solid rgba(41, 170, 225, 0.55);
  outline-offset: 2px;
  border-radius: 8px;
}
@media (prefers-reduced-motion: reduce) {
  .cwu-shell *,
  .cwu-shell *::before,
  .cwu-shell *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


.nav_b{position:relative}
.nav_c{
    position:absolute;
    left:0;
    top:25px;
    width:100%;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px) scale(.96);
    transform-origin:top center;
    transition:
        opacity .35s ease,
        transform .35s cubic-bezier(.175,.885,.32,1.275),
        visibility .35s;
    z-index:999;padding:20px;
}

.nav_b:hover .nav_c{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

.cwu-minia{background:#fff;border:1px solid #ccc;border-radius:10px;padding:10px;position:relative;top:53px;width:250px;left:-25px;}
.cwu-minia li{list-style:none}


.cwu-minia li a{position:relative;padding-left: 25px !important;}

.cwu-minia li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 600; /* Required for solid icons */
    position: absolute;
    top: 50%;
    left: 10px;font-size:11px;
    transform: translateY(-50%);
}