.footer {
  background: #111827;
  color: #d1d5db;
  padding: 24px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.footer-left {
  justify-self: start;
}

.footer-content strong {
  display: block;
  margin-bottom: 2px;
}

.footer-copy {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}

.footer-right {
  justify-self: end;
  text-align: right;
  padding-right: 90px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-copy {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .footer-right {
    justify-self: start;
    text-align: left;
    padding-right: 0;
  }
}

