.footer {
  margin-top: auto;
  padding-block: 16px;
  background-color: var(--color-bg);
}

.footer__line {
  width: 100%;
  height: 1px;
  margin-bottom: 16px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer__nav-link {
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.36px;
  color: var(--color-text);
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.footer__nav-link:hover,
.footer__nav-link:focus-visible {
  opacity: 1;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity var(--transition);
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  opacity: 0.8;
}

.footer__social-link--outline {
  border: 0.87px solid var(--color-border);
  border-radius: 50%;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
}

.footer__social-icon--small {
  width: 15px;
  height: 15px;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .footer__nav {
    flex: 1;
    justify-content: flex-start;
  }
}
