.site-search {
  position: fixed;
  top: 0;
  right: 0;
  left: 56px;
  height: 3.25rem;
  z-index: 28;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: #141418;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
html.nav-pinned .site-search { left: 224px; }
.site-search-wrap {
  position: relative;
  width: min(42rem, 100%);
}
.site-search input {
  width: 100%;
  height: 2.2rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .5rem;
  background: #1e1e24;
  color: #f5f5f7;
  font: inherit;
  padding: 0 .85rem;
}
.site-search input:focus {
  outline: none;
  border-color: #00ff41;
}
.site-search-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + .3rem);
  z-index: 40;
  margin: 0;
  padding: .3rem;
  list-style: none;
  background: #2a2a32;
  border: 1px solid rgba(0,255,65,.25);
  border-radius: .6rem;
  max-height: 18rem;
  overflow: auto;
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.site-search-list[hidden] { display: none; }
.site-search-list button {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .8rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: #f5f5f7;
  font: inherit;
  text-align: left;
  padding: .5rem .65rem;
  border-radius: .4rem;
  cursor: pointer;
}
.site-search-list button:hover,
.site-search-list button.is-on {
  background: #33333d;
}
.site-search-list .hint {
  color: #00ff41;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 799px) {
  .site-search {
    left: 0;
    top: 3.25rem;
    height: 3rem;
    padding: 0 .7rem;
  }
  body.has-hub-nav { padding-top: 6.25rem; }
}
