/* =========================================
FOOTER
========================================= */

.siteFooter{ margin-top: 18px; padding: 0 0 18px; }
.siteFooter__frame{
  width: min(var(--siteWidth), calc(100% - 24px));
  margin: 0 auto;
  border: 1px solid var(--barBorder);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--barTop), var(--barBottom));
  overflow: hidden;
  box-shadow:
    var(--shadow),
    0 0 18px var(--uiGlow);
}
.siteFooter__inner{
  padding: 18px 16px 14px;
  display:grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 1.1fr 0.8fr;
  gap: 18px;
}
.siteFooter__title{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.siteFooter__text{ margin: 0 0 10px; font-size: 12px; line-height: 1.55; color: rgba(255,255,255,0.78); }
.siteFooter__list{ list-style: none; padding: 0; margin: 0; display:flex; flex-direction: column; gap: 8px; }
.siteFooter__list a{ font-size: 12px; color: rgba(255,255,255,0.78); text-decoration: none; }
.siteFooter__list a:hover{ color: var(--accentHi); }
.siteFooter__social{ display:flex; gap: 10px; align-items:center; flex-wrap: wrap; }
.sfIcon{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}
.sfIcon i{ font-size: 18px; color: rgba(255,255,255,0.84); }
.sfIcon:hover{ border-color: var(--accentBorder); }
.footerTheme{ display:none !important; }

.siteFooter__bottom{ border-top: 1px solid var(--barBorder); }
.siteFooter__bottomInner{ padding: 10px 16px; font-size: 12px; color: rgba(255,255,255,0.62); text-align: center; }

/* =========================================
FOOTER BACKGROUND FIX
========================================= */

body{
  background:
    linear-gradient(180deg,#0b0d10 0%, #07080a 100%);
}

/* =========================================
RESPONSIVE
========================================= */
@media (max-width: 980px){
  .siteFooter__inner{ grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 520px){
  .siteFooter__inner{ grid-template-columns: 1fr; }
}
