/* ==========================================================================
   7. Footer
   ========================================================================== */
.smi-ftr {
  background: var(--c1d);
  padding: 32px 0;
  overflow-x: hidden;
  max-width: 100%;
}

.smi-ftr-r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.smi-ftr-c {
  flex: 1 1 200px;
  min-width: 0;
  margin: 0;
}

.smi-ftr-nav {
  flex: 2 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.smi-ftr-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.smi-ftr-nav-list > li {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
  margin: 0;
  padding: 0;
}

.smi-ftr-s {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.smi-ftr-c,
.smi-ftr-l {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.smi-ftr-l {
  display: inline-block;
  white-space: nowrap;
  transition: color 0.3s;
}

.smi-ftr-l:hover {
  color: var(--cw);
}

.smi-ftr-s a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all 0.3s;
}

.smi-ftr-s a:hover {
  background: var(--c2);
  border-color: var(--c2);
  color: var(--ct);
}

