.personal-search-mode {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid #d4e0e5;
  border-radius: 17px;
  background: linear-gradient(135deg, #f8fbfb 0%, #edf5f4 100%);
  box-shadow: inset 0 1px 0 #fff, 0 8px 22px rgba(25, 45, 58, .05);
}
.personal-search-mode__copy { display: grid; gap: 3px; min-width: 0; }
.personal-search-mode__copy > span { color: #087f7a; font-size: .57rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.personal-search-mode__copy > strong { color: #202a39; font-size: .88rem; line-height: 1.3; }
.personal-search-mode__copy > p { margin: 3px 0 2px; color: #5f7083; font-size: .66rem; line-height: 1.5; }
.personal-search-mode__copy > small { display: block; margin-top: 5px; padding-top: 7px; border-top: 1px solid #d7e3e7; color: #087f7a; font-size: .63rem; font-weight: 800; line-height: 1.4; }
.personal-search-mode__buttons {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 1.45fr 1fr;
  gap: 7px;
  padding: 5px;
  border: 1px solid #cbd8de;
  border-radius: 14px;
  width: 100%;
  background: #e4ebee;
}
.personal-search-mode__buttons button {
  min-width: 0;
  min-height: 50px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #58677a;
  font: inherit;
  font-size: .69rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: background .16s ease, box-shadow .16s ease, color .16s ease, transform .16s ease;
}
.personal-search-mode__buttons button:hover { color: #202a39; }
.personal-search-mode__buttons button:focus-visible { outline: 3px solid rgba(16, 170, 165, .24); outline-offset: 2px; }
.personal-search-mode[data-active-mode="personal"] [data-search-mode="personal"] {
  background: linear-gradient(112deg, #7549e4, #10aaa5);
  box-shadow: 0 8px 19px rgba(71, 83, 183, .2);
  color: #fff;
}
.personal-search-mode[data-active-mode="all"] [data-search-mode="all"] {
  background: #202a39;
  box-shadow: 0 7px 16px rgba(24, 34, 48, .17);
  color: #fff;
}
.personal-search-mode.is-unavailable [data-search-mode="personal"] { opacity: .64; }
@media (max-width: 760px) {
  .personal-search-mode { align-items: stretch; flex-direction: column; gap: 12px; padding: 14px; }
  .personal-search-mode__buttons { flex-basis: auto; width: 100%; }
  .personal-search-mode__buttons button { min-height: 50px; font-size: .68rem; }
}