/* Общий футер для всех страниц */
footer.site-footer{
  position:relative;
  z-index:5;
  border-top:1px solid rgba(255,210,60,.12);
  margin-top:30px;
  padding:30px 20px;
  background:rgba(10,8,16,.6);
}
.foot-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:24px;
}
.foot-logo{
  font-family:'Manrope',sans-serif;
  font-weight:900;
  font-size:18px;
  letter-spacing:1px;
  margin-bottom:12px;
  color:#fff;
}
.foot-logo span{color:#ffd23c}
.foot-desc{
  font-size:12px;
  color:rgba(255,255,255,.6);
  max-width:280px;
  line-height:1.5;
  margin:0;
}
.foot-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.foot-links a{
  font-size:13px;
  color:rgba(255,255,255,.55);
  text-decoration:none;
  transition:color .2s;
}
.foot-links a:hover{color:#ffd23c}
.foot-soc-label{
  font-size:12px;
  color:rgba(255,255,255,.62);
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:700;
}
.foot-soc{display:flex;gap:8px}
.soc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  font:700 12px 'Manrope',sans-serif;
  color:#fff;
  text-decoration:none;
  transition:filter .15s;
}
.soc-btn:hover{filter:brightness(1.2)}
.soc-vk{background:#4c75a3}
.soc-tg{background:#0088cc}
.copyright{
  max-width:1180px;
  margin:22px auto 0;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:11px;
  color:rgba(255,255,255,.5);
  text-align:center;
  line-height:1.6;
}

@media(max-width:900px){
  .foot-grid{grid-template-columns:1fr}
}
