/* ===== 헤더 (왼쪽 상단 고정) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0; /* 변경된 부분 */
  z-index: 1000;
  background: rgba(15, 23, 42, 0.6); /* #0f172a 반투명 */
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 0 0 12px 0; /* 왼쪽 상단만 둥글게 */
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav--right { 
  justify-content: flex-start; /* 왼쪽으로 정렬 */
}


.nav-link {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link:hover { color: #38bdf8; }

.nav-link[aria-current="page"] { color: #facc15; }

