/* =========================================================================
   Component: Footer
   ========================================================================= */

.evox-footer {
  margin: 1.5rem;
  padding: 1.5rem 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--evox-text);
}

.evox-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 576px) {
  .evox-footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.evox-footer__brand-logo {
  height: 2.5rem;
}

.evox-footer__tagline {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 1.125rem;
  color: var(--evox-primary);
}
@media (min-width: 576px) {
  .evox-footer__tagline {
    text-align: left;
  }
}

.evox-footer__socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0;
}
@media (min-width: 992px) {
  .evox-footer__socials {
    justify-content: flex-end;
  }
}
.evox-footer__socials img {
  width: 3rem;
  height: 3rem;
}
.evox-footer__socials a.is-x-logo img {
  border-radius: 50%;
  background: #fff;
  padding: 0.5rem;
}

.evox-footer__credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding-bottom: 1rem;
}
@media (min-width: 576px) {
  .evox-footer__credits {
    flex-direction: row;
  }
}
.evox-footer__credits a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--evox-text);
}
