/* FOOTER */
.footer-legal {
  font-family: "HelveticaNeueUltraLight", Arial, sans-serif;
  font-weight: 200;
  letter-spacing: 0.5px;
}

footer {
  padding: 35px 0;
  flex-shrink: 0;
}

/* INNER */

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TEXTE */

footer a {
  font-size: 18px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: inherit;
}

/* LOGO IG */

.footer-ig img {
  width: 22px;
  height: 22px;
  display: block;
}

/* =========================
MOBILE
========================= */

@media (max-width: 768px) {
  footer {
    padding: 25px 20px;
  }

  footer a {
    font-size: 14px;
  }

  .footer-ig img {
    width: 20px;
    height: 20px;
  }
}

footer a:not(.footer-ig) {
  position: relative;
}

footer a:not(.footer-ig)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

footer a:not(.footer-ig):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
