.site-footer{
  margin-top:40px;
  background:linear-gradient(180deg,#232F3E 0%, #131921 100%);
  border-top:1px solid rgba(255,255,255,.06);
}

.site-footer__inner{
  max-width:1280px;
  margin:0 auto;
  padding:30px 20px 34px;
}

.site-footer__links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 24px;
  margin:0 0 22px;
  padding:0 0 18px;
  list-style:none;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-footer__links a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:14px;
  line-height:1.35;
  font-weight:500;
  transition:
    color .2s ease,
    opacity .2s ease,
    transform .2s ease;
}

.site-footer__links a:hover{
  color:#FFB84D;
  opacity:1;
  transform:translateY(-1px);
}

.site-footer__brand{
  text-align:center;
}

.site-footer__copyright{
  margin:0;
  color:#FFFFFF;
  font-size:17px;
  line-height:1.35;
  font-weight:700;
  letter-spacing:-.02em;
}

.site-footer__meta{
  margin:12px auto 0;
  max-width:980px;
  color:rgba(255,255,255,.62);
  font-size:14px;
  line-height:1.7;
  font-weight:400;
}

.site-footer__locale{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 16px;
  margin-top:18px;
  border-radius:999px;
  background:linear-gradient(180deg,#FFB84D 0%, #FF9900 100%);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:700;
  box-shadow:
    0 6px 18px rgba(255,153,0,.18),
    inset 0 1px 0 rgba(255,255,255,.28);
}

@media (max-width:768px){
  .site-footer{
    margin-top:32px;
  }

  .site-footer__inner{
    padding:24px 16px 28px;
  }

  .site-footer__links{
    gap:10px 16px;
    margin-bottom:18px;
    padding-bottom:16px;
  }

  .site-footer__links a{
    font-size:13px;
  }

  .site-footer__copyright{
    font-size:16px;
    line-height:1.4;
  }

  .site-footer__meta{
    margin-top:10px;
    font-size:13px;
    line-height:1.65;
  }

  .site-footer__locale{
    min-height:34px;
    padding:0 14px;
    margin-top:16px;
    font-size:13px;
  }
}