.combined-search-panel {
  max-width: 940px;
}

.combined-search-types {
  grid-column: 1 / -1;
  min-width: 0;
  margin: 0 0 4px;
  padding: 0;
  border: 0;
}

.combined-search-type-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.combined-search-type {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  margin: 0;
  padding: 7px 4px;
  color: #3f4652;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.combined-search-type input {
  display: grid;
  width: 14px;
  height: 14px;
  margin: 0;
  border: 1px solid #aeb6c4;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  place-content: center;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.combined-search-type input::after {
  content: "";
  width: 7px;
  height: 4px;
  margin-top: -1px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.1s ease;
}

.combined-search-type input:checked {
  border-color: #6281c8;
  background: #6281c8;
}

.combined-search-type input:checked::after {
  transform: rotate(-45deg) scale(1);
}

.combined-search-type input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(98, 129, 200, 0.24);
}

.combined-search-type:hover input {
  border-color: #9aabd0;
}

.combined-search-filter-controls {
  justify-content: flex-start;
}

.combined-search-summary {
  max-width: 940px;
  min-height: 24px;
  margin: 0 auto 24px;
  color: #707784;
  font-size: 0.92rem;
  text-align: center;
}

.combined-search-section {
  max-width: 940px;
  margin: 0 auto 52px;
}

.combined-search-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 22px;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4e7ec;
}

.combined-search-section-heading {
  flex: 0 0 auto;
  margin: 0;
  color: #2f3440;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.4;
}

.combined-search-section-header .article-search-filter {
  width: min(185px, 20vw);
  min-width: 145px;
}

.combined-search-section-empty {
  margin: 0;
  padding: 28px 20px;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  background: #fafbfc;
  color: #707784;
  text-align: center;
}

.combined-search-pagination {
  margin-top: 30px;
}

.combined-search-empty {
  padding-top: 24px;
}

.combined-search-empty button {
  margin-top: 14px;
}

@media (max-width: 767px) {
  .combined-search-type-options {
    gap: 8px 14px;
  }

  .combined-search-section {
    margin-bottom: 40px;
  }

  .combined-search-section-heading {
    font-size: 1.25rem;
  }

  .combined-search-section-header {
    align-items: stretch;
    flex-direction: column;
  }

  .combined-search-section-header .article-search-filter {
    width: 100%;
    min-width: 0;
  }
}
