/* Container */
.search-results-tabs {
  margin: 2rem 0;
}

.search-results-tabs__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Tabs */
.search-results-tab {
  appearance: none;
  border: 1px solid #c7d1df;
  background: #fff;
  color: rgb(0, 40, 85);
  border-radius: 999px;
  padding: 1.25rem 1.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover */
.search-results-tab:hover {
  background: #f3f8fd;
  border-color: #78a9dd;
  color: #003b71;
}

/* Active */
.search-results-tab.is-active {
  background: rgb(0, 40, 85);
  border-color: #003b71;
  color: #fff;
}

/* Focus state */
.search-results-tab:focus-visible {
  outline: 3px solid rgba(120, 169, 221, 0.35);
  outline-offset: 2px;
}
