/* Footer */

.site-footer {
  padding: clamp(70px, 9vw, 140px) var(--page-gutter) 28px;
  border-top: 1px solid var(--line);
  background: #080808;
}

.site-footer__intro {
  display: flex;
  margin-bottom: clamp(50px, 7vw, 100px);
  justify-content: space-between;
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.site-footer__intro span:last-child {
  color: var(--muted);
}

.footer-categories {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-categories a {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
  color: #bbb9b4;
  font-size: 12px;
  letter-spacing: 0.045em;
  transition: color 180ms ease, padding 220ms var(--ease-out);
}

.footer-categories a:nth-child(odd) {
  padding-right: 30px;
  border-right: 1px solid var(--soft-line);
}

.footer-categories a:nth-child(even) {
  padding-left: 30px;
}

.footer-categories a span {
  width: 32px;
  color: #6f6e6b;
  font-size: 9px;
}

.footer-categories a:hover,
.footer-categories a[aria-current="page"] {
  padding-left: 9px;
  color: var(--text);
}

.footer-categories a:nth-child(even):hover,
.footer-categories a:nth-child(even)[aria-current="page"] {
  padding-left: 39px;
}

.site-footer__base {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  color: #777673;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__base a:hover {
  color: var(--text);
}

.not-found-page {
  min-height: 82vh;
}

.not-found-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--text);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.not-found-link span {
  transition: transform 220ms var(--ease-out);
}

.not-found-link:hover span {
  transform: translateX(5px);
}
