
/* VillageFooter 1.0.2 — компактный центральный подвал */
.vfooter{
  width:min(calc(100% - 40px),1180px);
  margin:0 auto;
  font-family:Inter,Roboto,Arial,sans-serif;
  color:#fff;
}
.vfooter *{box-sizing:border-box}

.vfooter-main{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,1fr) minmax(190px,.8fr);
  gap:44px;
  align-items:start;
  padding:34px 0 28px;
}

.vfooter-brand{
  min-width:0;
}
.vfooter-brand strong{
  display:block;
  max-width:280px;
  color:#fff;
  font-size:1.12rem;
  line-height:1.42;
}
.vfooter-brand span{
  display:block;
  max-width:300px;
  margin-top:7px;
  color:rgba(255,255,255,.70);
  font-size:.82rem;
  line-height:1.5;
}

.vfooter-info{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 24px;
  min-width:0;
}
.vfooter-info div{
  min-width:0;
}
.vfooter-info small{
  display:block;
  margin-bottom:5px;
  color:rgba(255,255,255,.56);
  font-size:.69rem;
}
.vfooter-info span,
.vfooter-info a{
  display:block;
  color:#fff;
  font-size:.84rem;
  line-height:1.45;
  text-decoration:none;
  overflow-wrap:anywhere;
}
.vfooter-info a:hover{
  text-decoration:underline;
}

.vfooter-links{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:9px;
}
.vfooter-links a{
  max-width:100%;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-size:.8rem;
  line-height:1.4;
  overflow-wrap:anywhere;
}
.vfooter-links a:hover{
  color:#fff;
  text-decoration:underline;
}

.vfooter-bottom{
  padding:15px 0 17px;
  border-top:1px solid rgba(255,255,255,.13);
  color:rgba(255,255,255,.62);
  font-size:.76rem;
}

@media(max-width:950px){
  .vfooter-main{
    grid-template-columns:1fr 1fr;
    gap:28px 34px;
  }
  .vfooter-links{
    grid-column:1/-1;
    flex-direction:row;
    flex-wrap:wrap;
    gap:10px 20px;
  }
}

@media(max-width:650px){
  .vfooter{
    width:min(calc(100% - 28px),1180px);
  }
  .vfooter-main{
    grid-template-columns:1fr;
    gap:24px;
    padding:28px 0 22px;
  }
  .vfooter-info{
    grid-template-columns:1fr;
  }
  .vfooter-links{
    grid-column:auto;
    flex-direction:column;
  }
}
