footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0;
  background-color: var(--black);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  width: 100%;
  max-width: 1280px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

footer p,
footer a {
  text-align: left;
  font-size: 13px;
  text-decoration: none;
  color: var(--gray-7);
}

footer a {
  font-weight: 500;
}

footer a:hover {
  color: var(--blue-9);
}

footer a:active {
  color: var(--blue-11);
}