/* Full width background band behind search */
.search-section {
  width: 100%;
  background: #F4F5F7;
  padding: 40px 20px;
}

/* Center the Pagefind UI */
#search {
  max-width: 900px;
  margin: 0 auto;
}

/* Search input styling */
.pagefind-ui__search-input {
  background: #ffffff;
  border: 1px solid #d7dbe0;
  border-radius: 10px;
}

/* Result card style */
#search .pagefind-ui__result {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 18px !important;
  margin: 14px 0 !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Hover polish */
#search .pagefind-ui__result:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: all 0.15s ease;
}

/* Title + excerpt */
#search .pagefind-ui__result-title a {
  font-size: 18px;
  font-weight: 600;
  color: #0E1118;
  text-decoration: none;
}

#search .pagefind-ui__result-title a:hover {
  text-decoration: underline;
}

#search .pagefind-ui__result-excerpt {
  font-size: 14px;
  color: rgba(14,17,24,0.78);
  margin-top: 6px;
}

/* Gold highlight */
#search mark {
  background: rgba(197,149,56,0.35);
  color: #0E1118;
  padding: 0 2px;
  border-radius: 3px;
}