.m8-search-pro {
  --m8-search-border: #d6dbe3;
  --m8-search-accent: #0b6bcb;
  --m8-search-text: #202733;
  --m8-search-muted: #697386;
  --m8-search-highlight: #fff1a8;
  position: relative;
  color: var(--m8-search-text);
}

.m8-search-pro__label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 700;
}

.m8-search-pro__bar {
  display: flex;
  gap: .5rem;
}

.m8-search-pro__bar input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--m8-search-border);
  border-radius: 6px;
  padding: .75rem .85rem;
}

.m8-search-pro__bar button,
.m8-search-pro__suggestions button {
  border: 0;
  border-radius: 6px;
  background: var(--m8-search-accent);
  color: #fff;
  padding: .75rem 1rem;
  cursor: pointer;
}

.m8-search-pro__suggestions {
  position: absolute;
  z-index: 20;
  right: 0;
  left: 0;
  border: 1px solid var(--m8-search-border);
  border-radius: 6px;
  margin-top: .35rem;
  background: #fff;
  box-shadow: 0 18px 40px rgba(25, 34, 51, .16);
  overflow: hidden;
}

.m8-search-pro__popup-heading {
  padding: .55rem 1rem .35rem;
  color: var(--m8-search-muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.m8-search-pro__popup-message {
  padding: .8rem 1rem;
  color: #8a4b00;
  background: #fff8e5;
  font-size: .9rem;
}

.m8-search-pro__suggestions button,
.m8-search-pro__popup-result {
  display: block;
  width: 100%;
  border-radius: 0;
  background: #fff;
  color: var(--m8-search-text);
  text-align: left;
  text-decoration: none;
}

.m8-search-pro__suggestions button:hover,
.m8-search-pro__popup-result:hover {
  background: #edf4ff;
}

.m8-search-pro__popup-section + .m8-search-pro__popup-section {
  border-top: 1px solid var(--m8-search-border);
}

.m8-search-pro__popup-result {
  box-sizing: border-box;
  padding: .8rem 1rem;
}

.m8-search-pro__popup-title,
.m8-search-pro__popup-url,
.m8-search-pro__popup-text {
  display: block;
}

.m8-search-pro__popup-title {
  font-weight: 700;
  color: var(--m8-search-accent);
}

.m8-search-pro__popup-url {
  margin-top: .15rem;
  color: var(--m8-search-muted);
  font-size: .82rem;
  overflow-wrap: anywhere;
}

.m8-search-pro__popup-text {
  margin-top: .35rem;
  line-height: 1.45;
}

.m8-search-pro mark,
.m8-search-pro__popup-text mark {
  border-radius: 3px;
  background: var(--m8-search-highlight);
  color: inherit;
  padding: 0 .12em;
}

.m8-search-pro__results {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.m8-search-pro__result {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--m8-search-border);
  padding: 1rem 0;
}

.m8-search-pro__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.m8-search-pro__title {
  color: var(--m8-search-accent);
  font-weight: 700;
}

.m8-search-pro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: 0;
  list-style: none;
}

.m8-search-pro__tags a,
.m8-search-pro__type {
  display: inline-block;
  border: 1px solid var(--m8-search-border);
  border-radius: 999px;
  padding: .2rem .55rem;
  font-size: .875rem;
}

@media (max-width: 40rem) {
  .m8-search-pro__bar,
  .m8-search-pro__result {
    grid-template-columns: 1fr;
    display: grid;
  }
}
