.bsrch { background: #fff; border: 1px solid var(--base-border-tertiary); border-radius: 16px; overflow: hidden; box-shadow: 0 30px 80px -30px rgba(0,0,0,.18); }
.bsrch__bar { display: flex; gap: 10px; padding: 14px 18px; background: #fafaf9; border-bottom: 1px solid var(--base-border-tertiary); align-items: center; }
.bsrch__bar input { flex: 1; height: 40px; border: 1px solid var(--base-border-tertiary); border-radius: 8px; padding: 0 14px; font-family: inherit; font-size: 13px; font-weight: 500; color: var(--color-gray-950); background: #fff; outline: none; }
.bsrch__bar input:focus { border-color: var(--color-gray-950); }
.bsrch__filters { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 18px; border-bottom: 1px solid var(--base-border-tertiary); }
.fpill { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px; border-radius: 6px; background: #fafaf9; border: 1px solid var(--base-border-tertiary); font-family: inherit; font-size: 12px; font-weight: 600; color: var(--base-text-secondary); cursor: pointer; }
.fpill.is-on { background: var(--color-gray-950); color: #fff; border-color: var(--color-gray-950); }
.bsrch__results { max-height: 440px; overflow-y: auto; }
.bres { display: grid; grid-template-columns: 72px 1fr auto auto; align-items: center; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--base-border-tertiary); cursor: pointer; transition: background .12s; }
@media (max-width: 600px) {
  .bres {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }
  .bres__thumb { width: 48px; height: 36px; flex-shrink: 0; align-self: center; }
  .bres > div:nth-of-type(2) { flex: 1; min-width: 0; }
  .bres__title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .bres__meta { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .bres > .pill { display: none; }
  .bres__v { font-size: 14px; flex-shrink: 0; }
  .bres__v small { display: none; }
  .bsrch__bar { gap: 8px; padding: 12px 14px; }
  .bsrch__bar input { font-size: 12px; height: 38px; }
  .bsrch__bar .btn { padding: 0 12px; font-size: 12px; }
  .bsrch__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 14px;
    scroll-padding-inline: 14px;
  }
  .bsrch__filters::-webkit-scrollbar { display: none; }
  .bsrch__filters > * { flex-shrink: 0; }
  .bsrch__foot { padding: 10px 14px; flex-wrap: wrap; gap: 4px 10px; }
  .fpill { font-size: 11px; height: 26px; padding: 0 10px; }
}
.bres:hover { background: #fafaf9; }
.bres:last-child { border-bottom: 0; }
.bres__thumb { width: 72px; height: 54px; border-radius: 6px; background: linear-gradient(135deg, var(--ta, #1e3a5f), var(--tb, #5e6670)); position: relative; overflow: hidden; }
.bres__thumb::before { content: attr(data-code); position: absolute; top: 6px; right: 6px; background: rgba(0,0,0,.55); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 3px; letter-spacing: .05em; }
.bres__title { font-size: 14px; font-weight: 700; color: var(--color-gray-950); letter-spacing: -0.005em; margin-bottom: 2px; }
.bres__meta { font-size: 12px; color: var(--base-text-tertiary); }
.bres__v { text-align: right; font-size: 15px; font-weight: 700; color: var(--color-gray-950); font-variant-numeric: tabular-nums; }
.bres__v small { display: block; font-size: 10px; color: var(--base-text-tertiary); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.bsrch__foot { padding: 12px 18px; background: #fafaf9; border-top: 1px solid var(--base-border-tertiary); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--base-text-tertiary); font-weight: 600; }
.no-res { padding: 48px 20px; text-align: center; color: var(--base-text-tertiary); font-size: 14px; }
