.site-footer{
  background:#046B99;
  padding: 10px 0;
}

/* Constrain width so it doesn't feel like a giant banner */
.site-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

/* Left brand area */
.site-footer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer__brandlink{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

/* CARB logo */
.site-footer__carb{
  height: 26px;      /* try 28px if you want slightly larger */
  width: auto;
  display:block;
}

/* Divider between partners */
.site-footer__divider{
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1;
}

/* CANSAC as text */
.site-footer__textbrand{
  color:#fff;
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer__muted{
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

.site-footer__brandlink:hover,
.site-footer__brandlink:focus{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Right links */
.site-footer__links{
  display:flex;
  align-items:center;
  gap: 8px;
  white-space: nowrap;
}

.site-footer__links a{
  color:#fff;
  text-decoration:none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 8px;
}

.site-footer__links a:hover,
.site-footer__links a:focus{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__links span{
  color: rgba(255,255,255,0.85);
}

/* Mobile */
@media (max-width: 768px){
  .site-footer__inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .site-footer__links{
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }
}

/* Print */
@media print{
  .no-print{ display:none !important; }
}
