/* assets/css/header.css */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(12,18,30,0.04);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Brand */
.brand-link { display:inline-block; text-decoration:none; }
.site-logo {
  height:44px;
  width:auto;
  display:inline-block;
  object-fit:contain;
}

/* Publisher info (text beside logo) */
.publisher-info { display:flex; align-items:center; gap:10px; }
.pub-name { margin:0; font-size:18px; font-weight:900; color:var(--accent, #0a6be0); }
.pub-panel { margin:0; font-size:13px; color:var(--muted, #6b7280); font-weight:700; }

/* User controls */
.user-controls { display:flex; align-items:center; gap:10px; }
.user-name { font-weight:700; color:var(--ink, #0f1724); }
.logout-button {
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(12,18,30,0.08);
  background:white;
  color:var(--accent, #0a6be0);
  cursor:pointer;
  font-weight:700;
}

/* small responsive tweaks */
@media (max-width:700px) {
  .header-inner { padding:10px 12px; }
  .site-logo { height:36px; }
  .pub-name { font-size:16px; }
}
