/* Responsive navigation overrides */

/* Hide assistive text visually but keep it accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Base mobile layout */
[data-nav-menu] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

[data-nav-menu].hidden {
  display: none;
}

@media (min-width: 768px) {
  [data-nav-toggle] {
    display: none !important;
  }

  [data-nav-menu] {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0;
    width: auto;
  }

  [data-nav-menu].hidden {
    display: flex !important;
  }
}
