footer {
  position: relative;
}

footer .site-credit {
  color: #d9d5cf;
  position: absolute;
  top: 50%;
  left: 55%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: color 0.2s ease, opacity 0.2s ease;
}

footer .site-credit:hover {
  color: #fff;
}

footer .site-credit:focus-visible {
  outline: 2px solid #f58220;
  outline-offset: 4px;
  border-radius: 24px;
}

footer .site-credit-logo {
  background: #f58220;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}

footer .site-credit-logo img {
  display: block;
  object-fit: contain;
  width: 32px;
  height: 27px;
}

@media (max-width: 1200px) {
  footer .site-credit {
    position: static;
    grid-column: 1 / -1;
    justify-self: center;
    white-space: normal;
    transform: none;
  }
}

@media (max-width: 640px) {
  footer .site-credit {
    flex-direction: column-reverse;
    gap: 8px;
    text-align: center;
  }
}
