.site-footer {
  flex-shrink: 0;
  color: var(--salvo-white);
  background: var(--salvo-blue-dark);
}

.site-footer__inner {
  width: var(--container);
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding: 2rem 0;
}

.footer-brand {
  display: inline-flex;
  padding: 0.6rem;
  border-radius: 6px;
  background: var(--salvo-white);
}

.footer-brand img {
  width: 188px;
  height: auto;
}

.site-footer a {
  font-weight: 700;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.75rem 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-links a {
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.22em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--salvo-white);
  text-decoration-color: currentColor;
}

@media (max-width: 760px) {
  .site-footer__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1.4rem 0;
  }

  .footer-brand {
    padding: 0.42rem;
  }

  .footer-brand img {
    width: clamp(92px, 25vw, 132px);
  }

  .footer-links {
    justify-self: end;
    justify-content: flex-end;
    gap: 0.65rem;
    font-size: clamp(0.68rem, 2.8vw, 0.82rem);
  }
}
