
.alcode-footer{
  width:100%;
  background: var(--alcode-bg, #0b0f14);
  color: var(--alcode-text, #fff);
  padding: 18px 14px;
  box-sizing: border-box;
}
.alcode-footer__inner{
  margin: 0 auto;
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align:center;
}
.alcode-footer__copyright{
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}
.alcode-footer__social{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:center;
}
.alcode-social__item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--alcode-icon, #fff);
  text-decoration:none;
  transition: transform .15s ease, color .15s ease, background-color .15s ease;
  border: 1px solid rgba(255,255,255,0.18);
}
.alcode-social__item:hover{
  color: var(--alcode-icon-hover, #d12323);
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
}
.alcode-social__item i{font-size: 16px;}
