.mobile-utility-header {
  display: none;
}

@media (max-width: 767px) {
  .mobile-utility-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    height: 64px;
    padding: 8px 16px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
  }

  .mobile-utility-brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    color: #1e3a5f;
    text-decoration: none;
  }

  .mobile-utility-brand img {
    width: auto;
    height: 36px;
  }

  .mobile-utility-brand span {
    overflow: hidden;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-utility-home {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    padding: 0 4px;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  body.has-mobile-utility-header > main {
    padding-top: 32px !important;
  }
}
