.m-predictive-search {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  width: 100%;
  max-height: calc(100vh - (var(--header-main-height) + var(--announcement-height)));
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .m-predictive-search {
    max-width: 600px;
    max-height: calc(100vh - (var(--header-height) + var(--announcement-height)));
    left: initial;
  }
}
.m-predictive-search__results {
  padding: 2rem;
}
.m-predictive-search__segment {
  margin-bottom: 2rem;
}
.m-predictive-search__segment:last-of-type {
  margin-bottom: 0;
}
.m-predictive-search__segment-heading {
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-secondary-border);
  margin-bottom: 1rem;
}
.m-predictive-search__segment-title {
  margin-bottom: 0;
}
.m-predictive-search__segment-view-all {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  text-decoration: none;
  color: var(--color-primary-body);
}
.m-predictive-search__image {
  max-width: 100%;
  height: auto;
}
.m-predictive-search__item {
  padding: 0.5rem 0;
}
.m-predictive-search__item h2 {
  font-weight: 400;
  margin-bottom: 0;
}
.m-predictive-search__link {
  text-decoration: none;
}
