/**
 * 공개 v1 전역 상단 바 (public_global_bar.inc.php, chrome_site_header 등)
 * index.php / jobs 등에서 /v1/assets/v1-global-bar.css 로 로드
 */
.v1-global-bar {
  position: relative;
  z-index: 50;
  background: #eceff4;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  -webkit-text-size-adjust: 100%;
}

.v1-global-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px max(16px, env(safe-area-inset-left, 0px)) 12px
    max(16px, env(safe-area-inset-right, 0px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}

.v1-global-brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.v1-global-brand:hover {
  color: #175e7d;
}

.v1-global-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 14px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}

.v1-global-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  white-space: nowrap;
}

.v1-global-nav a:hover {
  color: #175e7d;
}

@media (max-width: 640px) {
  .v1-global-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .v1-global-nav {
    justify-content: flex-end;
    width: 100%;
    margin-left: 0;
  }
}
