/**
 * Search results (component)
 * Library card used in
 * - views-view--search.html.twig
 */


/**
 * Global style
 */

.search-results {
  position: relative;
}
.view-header + .search-results::before {
  position: absolute;
  content: '';
  height: 100%;
  max-height: 160px;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--color-primary--6);
  z-index: -1;
}
.search-results p {
  margin: 0;
  margin-bottom: 2rem;
}
.search-results .author-teaser p {
  margin: 0;
}
.search-results + .attachment {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.view-search .attachment-after {
  margin-bottom: 2rem;
}
