.global-footer {
  height: 36px;
  background: #fffcf7;
  border-top: 1px solid #f2e2cd;
}

.global-footer__inner {
  width: min(100% - 32px, 1180px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #6b5544;
  font: 900 10px/1.1 Nunito, Arial, sans-serif;
}

.global-footer__inner > span,
.global-footer__links a {
  white-space: nowrap;
}

.global-footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.global-footer a {
  color: #9e2f25;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.global-footer a:hover {
  color: #c13a2e;
}

.global-footer a:focus-visible {
  outline: 2px solid #c13a2e;
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .global-footer {
    height: auto;
    min-height: 36px;
  }

  .global-footer__inner {
    width: min(100% - 18px, 1180px);
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 0;
    font-size: 14px;
  }

  .global-footer__inner > span,
  .global-footer__links a {
    white-space: normal;
  }

  .global-footer__identity {
    display: none;
  }

  .global-footer__links {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}

@media (max-width: 370px), (max-height: 700px) {
  .global-footer {
    height: auto;
    min-height: 36px;
  }

  .global-footer__inner {
    font-size: 14px;
  }

  .global-footer__links {
    gap: 8px 10px;
  }
}
