/* =====================================================================
   THE MINERS — Footer styles (дизайн Паши). Scoped под .mnr-footer.
   Десктоп: заголовок слева + копирайт под ним, 3 колонки ссылок,
   соцсети справа. Мобилка: заголовок / соцсети / колонки / копирайт.
   Шрифт наследуется от Shoptet.
   ===================================================================== */
.mnr-footer{ --fg:#0E0E0E; --muted:#8a8a8a;
  background:#fff; color:var(--fg); font-family:inherit; }
.mnr-footer *{ box-sizing:border-box; }

.mnr-footer__inner{
  max-width:1440px; margin:0 auto;
  padding:clamp(32px,5vw,72px) clamp(20px,5vw,64px);
  display:grid;
  grid-template-columns:minmax(0,1.5fr) auto auto;
  grid-template-areas:
    "title cols social"
    "copy  cols social";
  column-gap:clamp(32px,5vw,80px);
  row-gap:20px;
  align-items:start;
}

.mnr-footer__title{
  grid-area:title; margin:0;
  font-weight:800; text-transform:uppercase;
  font-size:clamp(4.8rem,4.6vw,6rem); line-height:.95; letter-spacing:-.01em;
}

.mnr-footer__social{ grid-area:social; justify-self:end; display:flex; gap:12px; }
.mnr-footer__social a{ display:inline-flex; color:inherit; transition:opacity .15s; }
.mnr-footer__social a:hover{ opacity:.6; }
.mnr-footer__social svg{ width:40px; height:40px; display:block; }

.mnr-footer__cols{ grid-area:cols; display:flex; gap:clamp(28px,4vw,56px); }
.mnr-footer__col h3{ margin:0 0 1.1em; font-size:1.6rem; font-weight:800; text-transform:uppercase; }
.mnr-footer__col ul{ list-style:none; margin:0; padding:0; }
.mnr-footer__col li{ margin:.55em 0; }
.mnr-footer__col a{ color:inherit; text-decoration:none; font-size:1.6rem; white-space:nowrap; }
.mnr-footer__col a:hover{ text-decoration:underline; }

.mnr-footer__bottom{ grid-area:copy; align-self:end; display:flex; flex-wrap:wrap; gap:6px 18px; align-items:baseline; }
.mnr-footer__copy{ margin:0; font-size:1.3rem; color:var(--muted); }
.mnr-footer__sign{ font-size:.72rem; color:var(--muted); }
.mnr-footer__sign a{ color:inherit; text-decoration:underline; }

/* --- мобилка: всё в столбик --------------------------------------- */
@media (max-width:768px){
  .mnr-footer__inner{
    grid-template-columns:1fr;
    grid-template-areas:"title" "social" "cols" "copy";
    row-gap:26px;
  }
  .mnr-footer__title{ text-transform:none; font-size:clamp(2rem,9vw,3rem); }
  .mnr-footer__social{ justify-self:start; }
  .mnr-footer__cols{ gap:clamp(16px,5vw,40px); }
  .mnr-footer__col a{ white-space:normal; }
  .mnr-footer__copy{ margin-top:6px; }
}
