/* =========================
   SEARCH PAGE UI
========================= */

.search-header {
  max-width: 700px;
  margin: auto;
}

.search-title {
  font-size: 28px;
  font-weight: 700;
}

.search-title span {
  color: var(--qh-primary);
}

.search-subtitle {
  color: var(--qh-muted);
  font-size: 14px;
}

/* SECTION */
.search-section {
  margin-bottom: 40px;
}

.search-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.search-section-head h4 {
  font-size: 18px;
  font-weight: 600;
}

.search-section-head span {
  font-size: 13px;
  color: var(--qh-muted);
}

/* =========================
   SEARCH LIST ITEMS
========================= */

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--qh-border);
  background: var(--qh-surface);
  transition: all 0.25s ease;
}

.search-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--qh-shadow);
}

.search-item-icon {
  font-size: 18px;
}

.search-item-content h6 {
  margin: 0;
  font-size: 15px;
}

.search-tag {
  font-size: 11px;
  background: var(--qh-border);
  padding: 2px 8px;
  border-radius: 20px;
}

/* =========================
   BOOK CARD
========================= */

.search-book-card {
  border: 1px solid var(--qh-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--qh-surface);
  transition: 0.25s ease;
}

.search-book-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--qh-shadow);
}

.search-book-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.search-book-body {
  padding: 12px;
}

/* =========================
   BLOG ITEM
========================= */

.search-blog-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--qh-border);
  background: var(--qh-surface);
  transition: 0.25s ease;
}

.search-blog-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.search-blog-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--qh-shadow);
}