.nr-find-section__panel {
  background: #f3e5f6;
  border-radius: 16px;
  padding: 48px;
}

.nr-find-section__title {
  margin: 0 0 32px;
  color: #411e75;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.nr-find-section__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nr-find-section__search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d0c2ef;
  border-radius: 999px;
  background: #fff;
  padding: 12px 20px;
}

.nr-find-section__search-icon,
.nr-find-section__search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
}

.nr-find-section__search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #242424;
}

.nr-find-section__search-input:focus,
.nr-find-section__search-input:hover {
  border: 0;
  box-shadow: none;
  outline: none;
}

.nr-find-section__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 420px;
  overflow-y: auto;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.nr-find-section__suggestions-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nr-find-section__suggestion-item {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e1ef;
  text-decoration: none;
}

.nr-find-section__suggestion-title {
  display: inline-block;
  margin-bottom: 6px;
  color: #913aa1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.nr-find-section__suggestion-summary,
.nr-find-section__suggestion-empty {
  margin: 0;
  color: #242424;
  font-size: 16px;
  line-height: 1.4;
}

.nr-find-section__suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.nr-find-section__suggestion-tags span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3e5f6;
  color: #411e75;
  font-size: 14px;
  line-height: 1.2;
}

.nr-find-section__suggestions-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 8px;
  color: #913aa1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.nr-find-section__filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.nr-find-section__field label {
  display: block;
  margin-bottom: 8px;
  color: #411e75;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.nr-find-section__field select,
.nr-find-section__field .nice-select {
  width: 100%;
}

.nr-find-section__field .nice-select .list {
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nr-find-section__field .nice-select .option {
  white-space: normal;
  line-height: 1.4;
}

.nr-find-section .btn.btn-purple {
  align-self: flex-start;
}

@media screen and (max-width: 991px) {
  .nr-find-section__panel {
    padding: 32px 24px;
  }

  .nr-find-section__title {
    font-size: 32px;
  }

  .nr-find-section__filters {
    grid-template-columns: 1fr;
  }
}
