/* ============================================================
   NívelSocial — Footer Styles (Pergo Redesign)
   Extended footer styles. Core footer is in theme_style.css
   ============================================================ */

/* All footer component styles (.ns-footer) are defined in theme_style.css.
   This file only adds supplementary or override styles.              */

/* Footer link list columns on wider screens */
@media (min-width: 992px) {
  .ns-footer__links--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ns-space-2) var(--ns-space-8);
  }
}

/* Micro hover underline for footer links */
.ns-footer__links a {
  position: relative;
}

.ns-footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ns-accent);
  transition: width var(--ns-duration-normal) var(--ns-ease-out);
}

.ns-footer__links a:hover::after {
  width: 100%;
}

/* Footer contact info */
.ns-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--ns-space-3);
  font-size: var(--ns-text-sm);
  color: var(--ns-text-on-dark-muted);
}

.ns-footer__contact li {
  display: flex;
  align-items: center;
  gap: var(--ns-space-2);
}

.ns-footer__contact i {
  color: var(--ns-accent);
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
}
