.back-to-top-slot {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: clamp(20px, 2.5vw, 32px);
  padding-top: clamp(14px, 1.8vw, 20px);
  border-top: 1px solid rgb(255 255 255 / 7%);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 42px;
  padding: .65rem .9rem;
  border: 1px solid rgb(240 165 0 / 42%);
  border-radius: 999px;
  color: #f5ddb0;
  background: linear-gradient(145deg, rgb(12 31 41 / 98%), rgb(5 18 27 / 98%));
  box-shadow: 0 8px 24px rgb(0 0 0 / 24%);
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .025em;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, opacity .18s ease, transform .18s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: #f0a500;
  color: #fff4d6;
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 2px solid #f0a500;
  outline-offset: 3px;
}

.back-to-top__icon {
  color: #f0a500;
  font-size: 1.05rem;
  line-height: 1;
}

@media (max-width: 999px) {
  .back-to-top-slot {
    margin-top: 18px;
    padding-top: 14px;
  }

  .back-to-top {
    border-radius: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}
