.footer {
  font-size: .8em;
  margin: 2em 0 1em 0;
  padding: 0;
  text-align: center;
  border-bottom: var(--footer-border);
  position: relative;
}

.footer a {
  color: var(--neutral-soft-color);
  padding: .3em .6em;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  font-weight: 800;
}
.footer::after {
  content: "";
  background-color: var(--neutral-soft-color);
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -1rem;
  height: .5rem;
  border-radius: .5rem;
}

.footer a:hover {
  text-decoration: none;
  color: var(--neutral-color);
  transition: color .2s;
}
.footer a i {
  color: var(--primary-color);
  font-size: 1.2em;
  margin-right: 6px;
  opacity: .7;
  transition: opacity .2s;
}
.footer a:hover i {
  opacity: 1;
}


/* Pied de page */

#yw-footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 30px 0;
}
#yw-footer h1, #yw-footer h2, #yw-footer h3, #yw-footer h4, #yw-footer h5, #yw-footer h6 {
  color: var(--footer-title-color);
}

@media (max-width: 800px) {
  .footer {
    display: flex;
    justify-content: space-around;
  }
  .footer a > span { display: none; }
  .footer a i { font-size: 1.1rem; }
  .footer::after {
    left: 0;
    right: 0;
    border-radius: 0;
  }
}