.circle-discussion-board > .circle-search-only {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border-bottom: 1px solid #e4e9e5;
  background: #fafcfa;
}

.circle-search-only > label {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  height: 42px;
  overflow: hidden;
  border: 1px solid #d7ded9;
  border-radius: 9px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.circle-search-only > label:focus-within {
  border-color: #91b13f;
  box-shadow: 0 0 0 3px rgb(145 177 63 / 12%);
}

.circle-search-only > label > span {
  display: grid;
  flex: 0 0 40px;
  height: 100%;
  place-items: center;
  color: #6f7b73;
  font-size: 19px;
}

.circle-search-only input {
  width: 100%;
  height: 40px !important;
  padding: 0 12px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #26332b;
  font-size: 11px !important;
  outline: 0;
}

.circle-search-only > button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 9px;
  background: #17261d;
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.circle-search-only > button:hover {
  background: #2a3c31;
  transform: translateY(-1px);
}

.circle-search-only > a {
  flex: 0 0 auto;
  color: #78837c;
  font-size: 10px;
  white-space: nowrap;
}

.circle-search-only > a:hover { color: #55731e; }

@media (max-width: 620px) {
  .circle-discussion-board > .circle-search-only {
    flex-wrap: wrap;
    padding: 11px 12px;
  }
  .circle-search-only > label { flex-basis: calc(100% - 95px); }
  .circle-search-only > button { padding: 0 13px; }
  .circle-search-only > a { width: 100%; text-align: right; }
}
