footer {
  align-items: center;
  background: var(--footer-bg);
  border-top: 1.5px solid var(--footer-border);
  box-shadow: 0px -16px 36px 0px var(--footer-shadow);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 0px;
}

.footer-nav {
  align-items: center;
  display: flex;
  gap: 56px;
  padding: 8px 0px;
}

@media only screen and (max-width: 633px) {
  .footer-nav {
    flex-direction: column;
  }
}

.footer-nav-item {
  color: var(--footer-color);
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}

.footer-nav-item:hover {
  color: var(--footer-color-hover);
}

.footer-nav-item:active {
  color: var(--footer-color-active);
}

.footer-nav-item.here {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-clip: text !important;
  background: var(--footer-color-here);
  text-shadow: var(--footer-shadow-here);
}

.footer-nav-item.here:hover {
  filter: brightness(1.3);
}

.footer-nav-item.here:active {
  filter: brightness(1.6);
}

footer .copyright {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  gap: 12px;
  justify-content: center;
  line-height: 20px;
  padding: 0 24px;
  text-align: center;
}

footer .copyright-main {
  color: var(--footer-copyright-color-main);
}

footer .copyright-detail {
  color: var(--footer-copyright-color-detail);
  margin-top: 16px;
}

footer .copyright-number {
  color: var(--footer-copyright-color-number);
}
