/* 헤더 우측 로그인 — 메뉴와 분리, 상시 노출 */
.header-actions {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-auth {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #123a5c;
  background: #123a5c;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-decoration: none;
  visibility: visible !important;
  opacity: 1 !important;
}
.header-auth:hover,
.header-auth:focus-visible {
  background: #1a4d78;
  border-color: #1a4d78;
  outline: none;
}
/* 히어로 위에서도 메뉴와 구분되도록 네이비 유지 */
.site-header.is-over-hero:not(.is-solid) .header-auth {
  background: #123a5c !important;
  border-color: #e8c547 !important;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

@media (min-width: 960px) {
  .header-auth {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
}
