.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  margin-top: -1px;
  min-height: 10rem;
  align-items: center;
  padding: 2rem var(--page-padding);
  background: #030406;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.site-footer span {
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 180ms ease;
}

@media (hover: hover) {
  .site-footer a:hover {
    color: var(--color-red);
  }
}

@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}
