/* Limit the height of search result previews */
.md-search-result__article {
  max-height: 30em !important;
  overflow: hidden !important;
}

/* Target the text content specifically */
.md-search-result__teaser {
  display: -webkit-box !important;
  -webkit-line-clamp: 15 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-height: 22.5em !important;
}

/* Specifically limit code blocks in search results */
.md-search-result__article code,
.md-search-result__article pre {
  display: block !important;
  max-height: 15em !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
/*  white-space: nowrap !important; */
}
