.footer a{
  color:inherit;
  text-decoration:none;
}

.footer .container{
  width:min(1180px, calc(100% - 48px));
  margin-inline:auto;
}

.footer{
  background:#030712;
  color:white;
  padding-top:42px;
}

.footer-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  padding-bottom:34px;
}

.footer-brand img{width:158px; display:block;}

.footer-links{
  display:flex;
  gap:1.35rem;
  flex-wrap:wrap;
  justify-content:center;
}

.footer-links a{
  color:rgba(255,255,255,.62);
  font-size:.92rem;
  transition:color .25s ease;
}

.footer-links a:hover{color:#fff;}

.footer-social{
  display:flex;
  align-items:center;
  gap:.65rem;
}

.footer-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .25s ease, background .25s ease;
}

.footer-social a:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.13);
}

.footer-social img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px;
  text-align:center;
  color:rgba(255,255,255,.50);
  font-size:.88rem;
}

@media (max-width: 768px){
  .footer-wrapper{flex-direction:column; text-align:center;}
  .footer-links{justify-content:center;}
}
