.siteFooter{
  margin: 40px auto 0;
  width: min(1100px, 92%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px 0;
}

.footerInner{
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  overflow: visible;
}

.footerLeft{
  margin:0;
  color: var(--muted);
  font-weight:500;
  font-size: 16px;
  justify-self:start;
  opacity: .92;
}

.footerLogo{
  justify-self: center;
  display: grid;
  place-items: center;
  margin-top: -6px;
}

.footerLogoImg{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  opacity: .95;
}

.footerIcons{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Icon buttons */
.footerIcons .iconBtn{
  width:54px;
  height:54px;
  border-radius:999px;
  background: var(--icon-bg);
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  border: 0;
  transition: transform .15s ease, filter .15s ease;
}

.footerIcons .iconBtn svg{
  width:22px;
  height:22px;
  fill: currentColor;
}

.footerIcons .iconBtn:hover{
  transform: translateY(-2px);
  filter: brightness(.95);
}

.thinFooterLine{
  margin-top: 18px;
  border-top: 2px solid var(--border);
}