/* 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;
  display: flex;
  gap: 0.25rem;

  /* 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::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background-color: currentColor;
  transition: transform 0.3s ease-in-out;
}
.tq-footer__link.--has-underline:hover::after {
  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: var(--tq-body-font-size-responsive-sm);
  font-weight: 400;
  line-height: var(--tq-body-line-height-mobile-sm, 1rem);

  @media (min-width: 768px) {
    line-height: var(--tq-body-line-height-desktop-sm, 1.125rem);
  }
}

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

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

.tq-footer__link.--social {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  outline-offset: 0.75rem;
  transition: background-color 0.3s ease-in-out;
}

.tq-footer__link.--social:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.tq-footer__link.--social:active {
  background-color: rgba(255, 255, 255, 0.2);
  transition-delay: 100ms;
}

.tq-footer__link.--social:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: -1px;
}

.tq-footer__link.--social:disabled {
  pointer-events: none;
  background-color: rgba(85, 85, 85, 0.4);
}

.tq-footer__link.--social svg {
  width: 1.125rem;
  height: 1.125rem;
  aspect-ratio: 1;
}

@media (min-width: 768px) {
  .tq-footer__link.--social {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
  }
}

/* Legal */
.tq-footer__link.--legal {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1em;
}

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