.help-search-panel {
  margin-bottom: clamp(46px, 7vw, 72px);
  padding: clamp(24px, 4vw, 34px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.help-search-form {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(280px, 1fr);
  column-gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.help-search-label {
  display: grid;
  align-content: end;
}

.help-search-label .mini-label {
  margin-bottom: 5px;
}

.help-search-label strong {
  color: var(--text);
  font-size: clamp(1.28rem, 2.4vw, 1.85rem);
  line-height: 1.1;
}

.help-search-control {
  position: relative;
}

.help-search-control::before,
.help-search-control::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.help-search-control::before {
  top: 50%;
  left: 20px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--faint);
  border-radius: 50%;
  transform: translateY(-58%);
}

.help-search-control::after {
  top: calc(50% + 7px);
  left: 34px;
  width: 7px;
  height: 2px;
  border-radius: 1px;
  background: var(--faint);
  transform: rotate(45deg);
  transform-origin: left center;
}

.help-search-control input {
  width: 100%;
  min-height: 60px;
  padding: 15px 58px 15px 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  appearance: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.help-search-control input::placeholder {
  color: var(--faint);
  opacity: 1;
}

.help-search-control input::-webkit-search-cancel-button {
  display: none;
}

.help-search-control input:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.075);
}

.help-search-control input:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.help-search-clear {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 160ms ease, background 160ms ease;
}

.help-search-clear span {
  display: block;
  transform: translateY(-1px);
}

.help-search-clear:hover,
.help-search-clear:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.15);
  outline: 0;
}

.help-search-clear:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.help-search-status {
  grid-column: 2;
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--faint);
  font-size: 0.86rem;
}

.help-search-empty {
  grid-column: 2;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.help-search-empty strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.06rem;
}

.help-search-empty p {
  margin: 0;
  font-size: 0.94rem;
}

.help-search-empty a {
  color: var(--text);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

[data-help-search-root] .article-card[hidden] {
  display: none;
}

[data-help-search-root] .help-search-catalog[hidden] {
  display: none;
}

[data-help-search-root].is-help-searching .help-category-nav,
[data-help-search-root].is-help-searching > .support-assistant-panel {
  display: none;
}

[data-help-search-root].is-help-searching .content-main {
  align-content: start;
  gap: 18px;
}

[data-help-search-root].is-help-searching .content-grid {
  grid-template-columns: 1fr;
}

[data-help-search-root].is-help-searching .side-stack,
[data-help-search-root].is-help-searching .content-main > section:not(.help-search-panel):not([data-help-search-group]) {
  display: none;
}

[data-help-search-root].is-help-searching .content-main > [data-help-search-group] > h2,
[data-help-search-root].is-help-searching .content-main > [data-help-search-group] > p {
  display: none;
}

@media (max-width: 720px) {
  .help-search-panel {
    margin-bottom: 42px;
    padding: 22px 0;
  }

  .help-search-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .help-search-label strong {
    font-size: 1.28rem;
  }

  .help-search-status,
  .help-search-empty {
    grid-column: 1;
  }

  .help-search-status {
    margin-top: -7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .help-search-control input,
  .help-search-clear {
    transition: none;
  }
}
