:root {
  --faq-result-link-color: #0055bd;
  --faq-result-link-text-color: #fff;
  --faq-result-link-color-hover: #003980;
  --faq-highlight-text-color: #c90000;
  --faq-result-matches-text-color: #696969;
  --faq-result-border-color: #696969;
}

.faq-search-result {
  margin-bottom: 20px;
}
.faq-search-result-item:nth-child(1) {
  border-top: 1px solid var(--faq-result-border-color);
}
.faq-search-result-item {
  border-bottom: 1px solid var(--faq-result-border-color);
}
.faq-search-result-link {
  color: var(--faq-result-link-color);
  text-decoration: none;
  font-size: 1.250rem;
}
.faq-search-result-link:hover {
  font-weight: 700;
  color: var(--faq-result-link-color-hover);
}
.faq-search-result-button {
  font-size: 0.875rem;
  text-decoration: none;
  background: var(--faq-result-link-color);
  color: var(--faq-result-link-text-color);
  display: inline-block;
  padding: 10px 20px;
}
.faq-search-result-button:hover {
  font-weight: 700;
  background: var(--faq-result-link-color-hover);
}
.faq-search-result-highlight {
  font-size: 0.750rem;
  color: var(--faq-highlight-text-color); 
}
.faq-search-result-matches {
  font-size: 0.750rem;
  color: var(--faq-result-matches-text-color);
  margin-top: 20px;
}