.ic-footer {
  width: min(1120px, 92vw);
  margin: 2rem auto 0;
  color: var(--muted);
}

.ic-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(var(--yellow-rgb) / 0.3),
    rgb(var(--pink-rgb) / 0.3),
    transparent
  );
}

.ic-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.6rem 0 2rem;
}

.ic-footer .ic-footer__signature {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.ic-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
}

.ic-footer .ic-footer__links a {
  padding-block: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  text-underline-offset: 0.35em;
}

.ic-footer .ic-footer__links a:hover {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: var(--pink);
}

.ic-footer :focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 5px;
}

@media (max-width: 800px) {
  .ic-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }

  .ic-footer__links {
    justify-content: center;
  }
}
