/* Shared KO/EN/TW mobile header geometry and controls. */
header.mobile-site-header {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 0 12px;
  border-bottom: 0;
  background: #fff;
}
header.mobile-site-header--divider::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  z-index: 1;
  height: 1px;
  background: #dce5ef;
  content: "";
  pointer-events: none;
}
header.mobile-site-header > button.mobile-site-header__button {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 44px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  /* Shared header uses the published KO brand across locale palettes. */
  color: var(--mobile-site-header-brand, #0097e0);
  line-height: 1;
  gap: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
header.mobile-site-header > button.mobile-site-header__button:focus-visible {
  outline: 3px solid #111;
  outline-offset: 1px;
}
header.mobile-site-header .mobile-site-header__button > i.fa-globe { font-size: 20px; }
header.mobile-site-header .mobile-site-header__button > i.fa-bars { font-size: 22px; }
header.mobile-site-header > .mobile-site-header__logo {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
