/* =========================================================================
   Component: Page Toolbar
   Shared by /devices and /features: big page title, search input, and a
   row of filter pill buttons. Reuse the same markup pattern with different
   filter labels.
   ========================================================================= */

.evox-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 992px) {
  .evox-page-header { gap: 3rem; }
}

.evox-page-title {
  display: inline-flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .evox-page-title {
    flex-direction: row;
    justify-content: center;
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .evox-page-title {
    gap: 1rem;
    font-size: 3.75rem;
  }
}
.evox-page-title img {
  height: 1.75rem;
}
@media (min-width: 576px) { .evox-page-title img { height: 2.5rem; } }
@media (min-width: 992px) { .evox-page-title img { height: 3rem; } }

.evox-toolbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evox-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
