
/* =====================================
   FOOTER
   ===================================== */

.site-footer{
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}

.site-footer__top{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-footer__brand{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.site-footer__logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--vf-primary), var(--vf-primary-2));
  color: #fff;
  font-weight: 900;
  letter-spacing: .5px;
}

.site-footer__name{
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

.site-footer__links{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__social{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer__socialbtn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.90);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.site-footer__socialbtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(45,108,223,.35);
  color: #fff;
}

.site-footer__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 0;
}

@media (max-width: 767.98px){
  .site-footer__top{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__social{
    justify-content: center;
  }
  .site-footer__bottom{
    flex-direction: column;
    align-items: stretch;
  }
  .site-footer__bottom .btn{
    width: 100%;
  }
}

.footer-logo{
  height: 20px;        /* desktop */
  width: auto;
  display: block;
}

@media (max-width: 767px){
  .footer-logo{
    height: 20px;      /* mobile */
  }
}