.cc-global-header{
  --ccg-ink:#071b33;
  --ccg-muted:#5e7186;
  --ccg-blue:#0b6fd1;
  --ccg-cyan:#00aeff;
  position:sticky;
  top:0;
  z-index:10000;
  width:100%;
  border-bottom:1px solid #dce7f2;
  background:#fff;
  box-shadow:0 8px 24px rgba(7,27,51,.07);
  color:var(--ccg-ink);
  font-family:Inter,Arial,sans-serif;
}
.cc-global-header *{box-sizing:border-box}
.cc-global-header__inner{
  display:flex;
  align-items:center;
  gap:22px;
  width:min(100% - 40px,1480px);
  min-height:72px;
  margin-inline:auto;
}
.cc-global-header__brand{
  display:inline-flex;
  flex:0 0 auto;
  align-items:center;
  gap:10px;
  color:var(--ccg-ink);
  text-decoration:none;
}
.cc-global-header__brand img{display:block;width:49px;height:auto;max-height:42px;object-fit:contain}
.cc-global-header__brand-copy{display:flex;flex-direction:column;line-height:1.05}
.cc-global-header__brand-copy strong{font-size:19px;font-weight:800;letter-spacing:0}
.cc-global-header__brand-copy small{margin-top:5px;color:var(--ccg-muted);font-size:9px;font-weight:700;letter-spacing:1.35px;text-transform:uppercase}
.cc-global-header__nav{display:flex;align-items:center;justify-content:flex-end;gap:2px;margin-left:auto}
.cc-global-header__nav a{
  position:relative;
  display:inline-flex;
  min-height:42px;
  align-items:center;
  padding:9px 10px;
  color:#203650;
  font-size:13px;
  font-weight:650;
  letter-spacing:0;
  line-height:1.15;
  text-decoration:none;
  white-space:nowrap;
}
.cc-global-header__nav a::after{
  position:absolute;
  right:10px;
  bottom:4px;
  left:10px;
  height:2px;
  background:var(--ccg-cyan);
  content:"";
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.cc-global-header__nav a:hover,.cc-global-header__nav a:focus-visible,.cc-global-header__nav a[aria-current="page"]{color:var(--ccg-blue)}
.cc-global-header__nav a:hover::after,.cc-global-header__nav a:focus-visible::after,.cc-global-header__nav a[aria-current="page"]::after{transform:scaleX(1)}
.cc-global-header__menu{
  display:none;
  width:44px;
  height:44px;
  flex:0 0 44px;
  align-items:center;
  justify-content:center;
  border:1px solid #c9d8e8;
  border-radius:6px;
  background:#fff;
  color:var(--ccg-ink);
  cursor:pointer;
}
.cc-global-header__menu-lines,.cc-global-header__menu-lines::before,.cc-global-header__menu-lines::after{
  display:block;
  width:20px;
  height:2px;
  border-radius:2px;
  background:currentColor;
  content:"";
  transition:transform .2s ease,opacity .2s ease;
}
.cc-global-header__menu-lines{position:relative}
.cc-global-header__menu-lines::before{position:absolute;top:-6px;left:0}
.cc-global-header__menu-lines::after{position:absolute;top:6px;left:0}
.cc-global-header__menu[aria-expanded="true"] .cc-global-header__menu-lines{background:transparent}
.cc-global-header__menu[aria-expanded="true"] .cc-global-header__menu-lines::before{top:0;transform:rotate(45deg)}
.cc-global-header__menu[aria-expanded="true"] .cc-global-header__menu-lines::after{top:0;transform:rotate(-45deg)}
.cc-global-header a:focus-visible,.cc-global-header button:focus-visible{outline:3px solid rgba(0,174,255,.35);outline-offset:2px}
body.ccg-menu-open{overflow:hidden}
body>.mnav,body>.mobile-nav,body>.mobile-menu{display:none!important}
body>.alertbar,body>.local-blog-topbar,body>.topbar:has(a[href^="mailto:"]),body>.topbar:has(a[href^="tel:"]){display:none!important}

@media(max-width:1240px){
  .cc-global-header__inner{gap:12px;width:min(100% - 28px,1480px)}
  .cc-global-header__brand-copy{display:none}
  .cc-global-header__nav a{padding-inline:8px;font-size:12.5px}
  .cc-global-header__nav a::after{right:8px;left:8px}
}
@media(max-width:1080px){
  .cc-global-header__inner{min-height:64px}
  .cc-global-header__brand img{width:45px;max-height:38px}
  .cc-global-header__brand-copy{display:flex}
  .cc-global-header__nav{
    position:fixed;
    top:64px;
    right:0;
    left:0;
    display:grid;
    max-height:calc(100dvh - 64px);
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0;
    margin:0;
    padding:12px 20px 24px;
    overflow:auto;
    border-top:1px solid #dce7f2;
    border-bottom:1px solid #dce7f2;
    background:#fff;
    box-shadow:0 18px 34px rgba(7,27,51,.14);
    opacity:0;
    pointer-events:none;
    transform:translateY(-12px);
    visibility:hidden;
    transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
  }
  .cc-global-header.is-open .cc-global-header__nav{opacity:1;pointer-events:auto;transform:none;visibility:visible}
  .cc-global-header__nav a{
    min-height:54px;
    padding:14px 12px;
    border-bottom:1px solid #e7eef5;
    font-size:14px;
    white-space:normal;
  }
  .cc-global-header__nav a::after{display:none}
  .cc-global-header__menu{display:inline-flex;margin-left:auto}
}
@media(max-width:560px){
  .cc-global-header__inner{width:calc(100% - 24px)}
  .cc-global-header__brand-copy strong{font-size:17px}
  .cc-global-header__brand-copy small{font-size:8px}
  .cc-global-header__nav{grid-template-columns:1fr;padding-inline:16px}
  .cc-global-header__nav a{min-height:50px}
}
@media(prefers-reduced-motion:reduce){
  .cc-global-header *{scroll-behavior:auto!important;transition:none!important}
}
