.content_search_header {
  color: var(--neutral-600);
  font-size: 20px;
  font-weight: 400;
  display: block;

  span {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: 22px;
  }
}

.search_results { margin: 0 -20px 20px; }

.search-result {
  padding: 20px;
  display: block;
  text-decoration: none !important;
  border-left: 2px solid transparent;
  border-bottom: 1px solid var(--neutral-30);

  &:hover {
    border-left-color: var(--blue-400);
    background: var(--blue-50);
  }

  &:first-of-type { border-top: 1px solid var(--neutral-30); }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    position: relative;
  }

  h2 {
    color: var(--blue-400);
    font-size: 16px;
    margin: 0;

    .sp-search-highlight {
      color: var(--blue-500);
      font-weight: 600;
      font-size: 18px;
    }
  }

  p {
    margin: 0;
    color: var(--neutral-600);
    line-height: 21px;
  }

  .search-result-desc .sp-search-highlight {
    color: var(--neutral-800);
    font-weight: 600;
  }
}

.search-result-content { overflow-x: hidden; }

.pager {
  text-align: center;
  a:hover { text-decoration: underline; }
}


@media screen and (max-width: 600px) {
  .content_search_header { margin: 0 0 10px; }

  .search-result header {
    display: block;
    .page_labels span { margin: 6px 6px 0 0; }
  }
}
