.site-footer {
  padding: 32px;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;

  font-family: monospace;
  font-size: 11px;
}

.footer-brand {
  display: flex;
  gap: 25px;
  align-items: center;
}

.footer-brand .logo {
  width: 60px;
}

.footer-brand h3 {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 400;
}

.footer-brand p {
  margin: 0 0 10px;
  color: #777;
}

.newsletter {
  display: flex;
  border-bottom: 1px solid #555;
  width: 270px;
}

.newsletter input {
  flex: 1;

  background: none;
  border: 0;

  color: white;
  padding: 8px 0;
  font-family: monospace;
  font-size: 11px;
}

.newsletter button {
  background: none;
  border: 0;
  color: white;
  cursor: pointer;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-nav {
  grid-column: 1 / -1;

  display: flex;
  justify-content: flex-end;
  gap: 25px;

  color: #777;
}

@media (max-width: 768px) {

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
