/* site-search.css v1.0 — Overlay-Suche */
#bl-search-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(6,10,16,.75); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: none; align-items: flex-start; justify-content: center;
  padding-top: 12vh;
}
#bl-search-overlay.open { display: flex; }
.bl-search-box {
  width: 92%; max-width: 560px; background: #141d2e;
  border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5); overflow: hidden;
}
#bl-search-input {
  width: 100%; padding: 18px 20px; font-size: 16px;
  background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,.1);
  color: #e8edf5; -webkit-appearance: none;
}
#bl-search-input:focus { outline: none; }
#bl-search-input::placeholder { color: #8b95a8; }
#bl-search-results { max-height: 52vh; overflow-y: auto; }
.bl-search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; text-decoration: none; color: #e8edf5;
  border-bottom: 1px solid rgba(255,255,255,.04);
  -webkit-transition: background .12s; transition: background .12s;
}
.bl-search-item:hover, .bl-search-item.active { background: rgba(74,222,128,.1); }
.bl-search-title { font-size: 14px; }
.bl-search-cat {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; padding: 3px 9px; border-radius: 99px; flex-shrink: 0;
  min-width: 54px; text-align: center;
}
.bl-cat-musik   { background: rgba(91,127,166,.2); color: #8fb3d9; }
.bl-cat-technik { background: rgba(224,120,48,.2); color: #f0a875; }
.bl-cat-fpv     { background: rgba(45,212,218,.2); color: #5fe3e8; }
.bl-cat-funk    { background: rgba(74,222,128,.2); color: #7ff0a8; }
.bl-cat-blog    { background: rgba(167,139,250,.2); color: #c4b0ff; }
.bl-cat-kontakt { background: rgba(244,114,182,.2); color: #f9a8d4; }
.bl-cat-info    { background: rgba(139,149,168,.2); color: #b0bac8; }
.bl-search-empty, .bl-search-hint {
  padding: 16px 20px; color: #8b95a8; font-size: 12.5px; text-align: center;
}
.bl-search-hint { border-top: 1px solid rgba(255,255,255,.06); font-size: 11px; }

/* Search trigger button in sidebar */
.bl-search-trigger {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 12px; padding: 8px 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; color: rgba(255,255,255,.5); font-size: 12px;
  cursor: pointer; width: calc(100% - 24px);
  -webkit-transition: color .15s, border-color .15s; transition: color .15s, border-color .15s;
}
.bl-search-trigger:hover { color: #fff; border-color: rgba(255,255,255,.25); }
.bl-search-trigger kbd {
  margin-left: auto; background: rgba(255,255,255,.1); border-radius: 4px;
  padding: 1px 6px; font-size: 10px; font-family: monospace;
}

/* Volltext-Suche: Snippet + Treffer-Hervorhebung */
.bl-search-title { display: flex; flex-direction: column; gap: 2px; }
.bl-search-snip { font-size: 12px; color: var(--text-muted, #8b95a8); line-height: 1.4;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.bl-search-snip mark { background: rgba(74,222,128,.28); color: inherit; border-radius: 3px; padding: 0 2px; }
.bl-cat-inhalt { background: rgba(139,149,168,.18); color: var(--text-muted, #8b95a8); }
