.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 0 0 auto;
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 0;
  flex: 0 0 auto;
  margin-left: auto;
}

.footer__right .social-icons {
  justify-content: flex-end;
}

.footer__newsletter {
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}

.footer__newsletter:hover {
  opacity: 0.7;
}
