/* FOOTER */

footer {
  width: 100vw;
  padding: 24px var(--padding-horizontal, 161px);

  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 48px;

  background-color: transparent;
}

@media (min-width: 1024px) {
  footer {
    flex-direction: row;
    background-color: var(--surface-color);
  }
}

#links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;

  font-size: 14px;
}

#links span {
  font-weight: 500;
  color: var(--text-color, #111111cc);
}

#social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  text-transform: capitalize;
}

@media (min-width: 1024px) {
  #social {
    flex-direction: row;
    gap: 24px;
  }
}

#social span {
  font-weight: 800;
  font-size: 0.875rem;

  color: var(--text-color, #111111cc);
  opacity: 0.8;
}

#social img {
  height: 32px;
  width: 32px;
}
.dark-theme #social img {
  filter: invert(155%) hue-rotate(197deg) brightness(212%);
}

.social__list {
  display: flex;
  gap: 12px;
}
