/* mobile first */
.site-footer {
  align-items: center;
  background-color: var(--footer-bg);
  box-shadow: inset var(--shadow-std);
  color: var(--footer-text);
  column-gap: var(--space-2);
  display: flex;
  flex-direction: column;
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-4) 5.5rem;
  transition: var(--transition-std);
}

/* desktop */
@media (min-width: 1024px) {
  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--space-4);
    text-align: left;
  }
}

/* links mobile */
.site-footer__links {
  column-gap: var(--space-4);
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* links desktop */
@media (min-width: 1024px) {
  .site-footer__links {
    justify-content: flex-start;
  }
}

.site-footer__link {
  color: inherit;
  text-decoration: none;
}

.site-footer__link:hover {
  color: var(--footer-text-hover);
  text-decoration: underline;
}

/* copyright mobile */
.site-footer__copyright {
  white-space: nowrap;
}

/* copyright desktop */
@media (min-width: 1024px) {
  .site-footer__copyright {
    text-align: right;
  }
}
