/* ==============================
   ALLHIR HEADER MOBILE
   ============================== */

@media (max-width: 980px) {
  .allhir-header-desktop {
    display: none !important;
  }

  .allhir-header-mobile {
    display: block !important;
    width: 100%;
    background: #1c1b1b;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .hamburger-menu {
    font-size: 26px;
    cursor: pointer;
    color: #fff;
  }

  .allhir-logo {
    height: 40px;
    width: auto;
    display: block;
  }

  .mobile-profile {
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .allhir-search {
    width: 100%;
    margin-top: 12px;
  }

  .allhir-search form {
    width: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    padding: 10px 16px;
  }

  .allhir-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
  }

  .allhir-search button {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
  }

  .allhir-menu-overlay {
    display: none;
  }

  .sidebar-menu {
    display: block;
  }

  .sidebar-menu:not(.active) {
    left: -300px;
  }

  .sidebar-menu.active {
    left: 0;
  }
}
.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.mobile-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mobile-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.mobile-site-title {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.mobile-site-tagline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;

  background: #fff4eb;
  border: 2px solid #d46f1d;
  color: #1c1b1b;

  padding: 5px 12px;
  border-radius: 999px;

  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-profile {
  flex-shrink: 0;
}