/* SMART SEARCH PRO UI (for archives) */
.smart-root { color:#fff; }

.smart-title {
  font-size:26px;
  font-weight:700;
  margin-bottom:18px;
}

/* GRID */
.smart-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}

.smart-card h3 {
  font-size:14px;
  margin-top:8px;
  text-align:center;
  height:42px;
  overflow:hidden;
  font-weight:600;
}

/* POSTER */
.smart-poster {
  position:relative;
  display:block;
  border-radius:12px;
  overflow:hidden;
  background:#000;
}

.smart-poster img {
  width:100%;
  height:270px;
  object-fit:cover;
  transition:.35s;
}

.smart-poster:hover img {
  transform:scale(1.05);
}

.smart-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to top,#000,#00000020);
  opacity:0;
  transition:.3s;
}

.smart-play {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:44px;
  color:#c00;
  opacity:0;
  transition:.3s;
}

.smart-poster:hover .smart-overlay,
.smart-poster:hover .smart-play {
  opacity:1;
}

.no-results {
  grid-column:1/-1;
  text-align:center;
  font-size:18px;
}

