/* per_help.css — help center module styles */

.page-per-help .action-icon-btn--help {
  color: #fff;
}

.page-per-help .action-icon-btn--help img {
  width: 19px;
  height: 19px;
}

.per-help-sidebar-arrow-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.per-help-search:focus-visible {
  outline: 2px solid rgba(227, 30, 36, 0.3);
  outline-offset: 1px;
}

.per-help-card {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.per-help-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.per-help-card.is-hidden {
  display: none;
}

.per-help-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 70px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.per-help-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.per-help-scroll-top img {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .per-help-scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}
