/* Search page styles */
.search-heading h1 {
  font-family: "thirsty_script_regular", "thirsty_scriptlight", cursive;
  font-size: 36px;
  color: #b98961;
  margin: 10px 0 15px;
}
.search-panel {
  margin: 10px 0 20px;
}
#search-results {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  counter-reset: result;
}
.search-result {
  display: block;
  padding: 12px 14px;
  background: #fffdfb;
  border: none;
  text-decoration: none;
  color: #333;
}
.search-result .sr-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: start;
}
.search-result .sr-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  background: #fff;
  border: 1px solid #eee;
}
.search-result .sr-text {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 6px;
}
.search-result .title {
  font-weight: normal;
  font-size: 28px;
  color: #b98961;
  font-family: "thirsty_scriptlight", "thirsty_script_regular", cursive;
}
.search-result .subtitle {
  color: #666;
  font-size: 12px;
}
.search-result .type {
  color: #b98961;
  font-size: 12px;
  align-self: end;
}
.search-result .desc {
  margin: 4px 0 0;
  color: #444;
  font-size: 13px;
  line-height: 1.35;
}
