/* General */
.tq-footer__text,
.tq-footer__link {
  margin: 0;
  line-height: normal;
  color: var(--white);
  font-weight: 400;
  position: relative;
  text-decoration: none;
  max-width: max-content;

  /* normalize */
  img,
  svg,
  canvas,
  picture {
    display: block;
    max-inline-size: 100%;
    block-size: auto;
  }
}
.tq-footer__link:hover {
  text-decoration: none;
}
.tq-footer__link.--has-underline::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  border-radius: 4px;
  background-color: var(--white);
  bottom: -3px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.tq-footer__link.--has-underline:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* Top */
.tq-footer__link.--logo svg {
  @media (min-width: 768px) {
    width: 150px;
    height: auto;
  }
  @media (min-width: 1040px) {
    width: 235px;
    margin-left: -10px;
  }
}

.tq-footer__link.--main {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 130%;

  @media (min-width: 768px) {
    font-size: clamp(1.1em, 2vw, 1.25em);
    line-height: 20px;
  }
}

.tq-footer__link.--external {
  display: flex;
  gap: 5.5px;
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.425em;
}
.tq-footer__link.--external.--has-underline::before {
  bottom: 0;
}

/* Social networks */
.tq-footer__text[slot="bas-de-page-suivez-nous"],
.tq-footer__link.--social {
  display: inline;
  font-size: 0.875em;
  font-weight: 300;
  line-height: 2em;
}

.tq-footer__link.--social svg {
  @media (min-width: 768px) {
    width: 16px;
    height: auto;
  }
}

/* Legal */
.tq-footer__link.--legal {
  color: var(--black);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1em;
}
.tq-footer__link.--legal::before {
  background-color: var(--black);
}

.tq-footer__text[slot="bas-de-page-droits-reserves"] {
  color: var(--grey);
  font-size: 0.75em;
  line-height: 1.33em;
  margin: 0 auto;
}
