.footer__legal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 4px;
  row-gap: 4px;
}

.footer__copyright,
.footer__developer {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  opacity: 0.7;
}

.footer__developer {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

@media (hover: hover) {
  .footer__developer:hover {
    color: var(--Brand-Orange, #F39869);
    opacity: 1;
  }
}

.footer__developer:focus-visible {
  color: var(--Brand-Orange, #F39869);
  opacity: 1;
  outline: 2px solid rgba(243, 152, 105, 0.45);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 576px) {
  .footer__legal {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
  }
}
