/* ── Sidebar (shared across every page) ─────────────────────── */
#app-sidebar {
  position: fixed; top: 0; left: 0; height: 100vh; height: 100dvh; width: 4rem;
  background: #ffffff;
  display: flex; flex-direction: column; align-items: center;
  padding: 1.25rem 0; z-index: 20;
  box-sizing: border-box; overflow: hidden;
  box-shadow: 2px 0 12px rgba(15,23,42,0.08); border-right: 1px solid #e2e8f0;
}
.sidebar-logo { width: 2.5rem; height: auto; margin-bottom: 2rem; display: block; }
.sidebar-nav  {
  display: flex; flex: 1; min-height: 0; width: 100%;
  flex-direction: column; align-items: center; gap: 1.5rem;
  overflow-x: hidden; overflow-y: auto; box-sizing: border-box;
  padding: 0 0.5rem 0.25rem;
  scrollbar-width: thin; scrollbar-color: rgba(7,57,129,0.25) transparent;
}
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(7,57,129,0.25); border-radius: 99px; }
.sidebar-link {
  display: flex; flex: 0 0 auto; flex-direction: column; align-items: center; gap: 0.25rem;
  color: rgba(7,57,129,0.45); text-decoration: none; transition: color 0.15s;
  padding: 0.5rem; border-radius: 10px; width: 3rem; justify-content: center; font-size: 1.15rem;
}
.sidebar-link:hover { color: #073981; background: rgba(7,57,129,0.06); }
.sidebar-link:focus-visible { outline: 2px solid #b45309; outline-offset: 2px; }
.sidebar-link.active { color: #b45309; background: rgba(180,83,9,0.12); }
.sidebar-link span { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.75; }
.sidebar-link.active span { opacity: 1; }
.sidebar-link-admin { margin-top: auto; }
.sidebar-link-admin:hover { color: #b45309; }

@media (max-height: 760px) {
  #app-sidebar { padding: 0.75rem 0; }
  .sidebar-logo { width: 2rem; margin-bottom: 0.75rem; }
  .sidebar-nav { gap: 0.5rem; }
  .sidebar-link { padding-top: 0.35rem; padding-bottom: 0.35rem; }
}

/* ── Page header (shared: events / jobs / resources / legal) ── */
.page-header {
  background: linear-gradient(160deg, #eef4fb 0%, #ffffff 60%);
  color: #073981; border-bottom: 1px solid #e2e8f0;
}
.page-header-inner { margin: 0 auto; }
.page-header h1 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.2rem; }
.page-header p  { font-size: 0.8rem; color: rgba(7,57,129,0.6); }
