@charset "UTF-8";
/*
* Component: Back to Top Button
* =======================================================
* Fixed button that appears after scrolling 400px and
* smoothly returns the user to the top of the page.
*/
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
  border-radius: 0;
  background-color: var(--wf-primary-color);
  color: var(--wf-white-color);
  border: 1px solid var(--wf-white-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.25);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.85;
}
.back-to-top::after {
  content: "↑";
}
.back-to-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--wf-white-color);
  outline-offset: 3px !important;
}
.back-to-top[hidden] {
  display: none !important;
}

/*# sourceMappingURL=back-to-top.css.map */