/* =====================================================================
   school-search module — aa-search block + select2 (frontend)
   ===================================================================== */

.aa-school-search {
  background: var(--bg, #f9f7f5);
}

.aa-school-search > .container-xl {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .aa-school-search > .container-xl {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.aa-search {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg, #f9f7f5);
  border: 1px solid #d2dbd8;
  box-shadow: 0 10px 30px rgba(29, 53, 51, 0.08);
}

.aa-search__media {
  min-height: 220px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}

.aa-search__panel {
  background: var(--bg, #f9f7f5);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aa-search__title {
  margin: 0;
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-weight: 600;
  color: #1d3533;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.aa-search__sub {
  margin: 0;
  color: #627679;
  font-family: "Open Sans", system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.aa-search__sub p {
  margin: 0;
}

.aa-search__title .aa-script {
  font-size: 1.18em;
}

.aa-search__cities {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.aa-chip-btn {
  flex: 1 1 0;
  min-width: 120px;
  background: #fff;
  border: 0.5px solid #396a65;
  border-radius: 100px;
  padding: 14px 24px;
  color: #396a65;
  font-family: "Open Sans", system-ui, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.aa-chip-btn--active,
.aa-chip-btn:hover {
  background: #396a65;
  color: #fff;
}

.aa-search__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aa-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #d1dadc;
  border-radius: 100px;
  padding: 12px 24px;
  margin: 0;
}

.aa-input svg {
  width: 24px;
  height: 24px;
  color: #8e9a99;
  flex: 0 0 auto;
}

.aa-input--select {
  padding-top: 6px;
  padding-bottom: 6px;
}

.aa-input--select .aa-search-school-select {
  flex: 1;
  min-width: 0;
  width: 100%;
}

/* select2 inside aa-input */
.aa-school-search .select2-container {
  flex: 1;
  min-width: 0;
  width: 100% !important;
}

.aa-school-search .select2-container .select2-selection--single {
  height: auto;
  min-height: 28px;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.aa-school-search .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 1.4;
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #1d3533;
}

.aa-school-search .select2-container .select2-selection--single .select2-selection__placeholder {
  color: #8b9da0;
}

.aa-school-search .select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 0;
  top: 0;
}

.aa-school-search .select2-container--default.select2-container--focus .select2-selection--single,
.aa-school-search .select2-container--default.select2-container--open .select2-selection--single {
  border: 0;
  box-shadow: none;
}

.aa-school-search .select2-dropdown {
  border: 1.5px solid #d1dadc;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(29, 53, 51, 0.08);
  margin-top: 8px;
}

.aa-school-search .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #396a65;
}

.aa-school-search .select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1.5px solid #d1dadc;
  border-radius: 100px;
  padding: 10px 16px;
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-size: 15px;
  color: #1d3533;
  outline: 0;
}

.aa-school-search .select2-results__option {
  font-family: "Open Sans", system-ui, Arial, sans-serif;
  font-size: 15px;
  padding: 10px 16px;
}

.aa-school-search .aa-btn--block {
  width: 100%;
}

@media (min-width: 768px) {
  .aa-search {
    flex-direction: row;
  }

  .aa-search__media {
    flex: 1 1 50%;
    min-height: 420px;
  }

  .aa-search__panel {
    flex: 1 1 50%;
    padding: 40px;
    justify-content: center;
  }

  .aa-search__title {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .aa-search__media {
    flex: 1 1 55%;
  }

  .aa-search__panel {
    flex: 1 1 45%;
    gap: 40px;
  }

  .aa-search__title {
    font-size: 36px;
    line-height: 43px;
  }

  .aa-search__cities {
    gap: 40px;
  }
}

.aa-school-search-result {
  background: var(--bg, #f9f7f5);
  padding: 40px 0;
}

.aa-school-search-result > .container-xl {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.aa-school-search-result__meta {
  margin: 0 0 8px;
  color: #627679;
  font-family: "Open Sans", system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.aa-school-search-result__intro {
  margin-top: 16px;
  color: #627679;
  font-family: "Open Sans", system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
