/* ============================================================
   TV — search experience
   ============================================================ */

.search-page { padding: 26px 44px 70px; min-height: 100%; }

.search-hero-field {
  position: relative;
  width: min(560px, 100%);
  margin: 8px 0 6px;
}
.search-hero-field .shf-box {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.09);
  transition: background 150ms, box-shadow 150ms;
}
.search-hero-field .shf-box:focus-within {
  background: rgba(22,22,26,0.94);
  box-shadow: 0 0 0 3.5px rgba(10,132,255,0.45);
}
.search-hero-field svg.mag { width: 17px; height: 17px; color: var(--text-tertiary); flex: none; }
.search-hero-field input {
  flex: 1;
  font-size: 16px;
  color: var(--text-primary);
}
.search-hero-field input::placeholder { color: var(--text-tertiary); }
.search-hero-field .shf-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: var(--text-secondary);
  flex: none;
}
.search-hero-field .shf-clear svg { width: 11px; height: 11px; }
.search-hero-field.has-value .shf-clear { display: inline-flex; }
.search-hero-field .shf-clear:hover { background: rgba(255,255,255,0.26); }

.search-heading {
  font-size: 21px;
  font-weight: 700;
  margin: 26px 0 16px;
}
.search-heading .q { color: var(--text-secondary); font-weight: 600; }

.recent-chips { display: flex; flex-wrap: wrap; gap: 9px; }

.search-results .result-group { margin-bottom: 40px; }
.result-group h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* Search skeleton cards */
.search-skel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 26px 16px; }
