/* Netora layout: sidebar + topbar + content */

.app {
    min-height: 100vh;
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
}

/* ── Sidebar ───────────────────────────────── */
.sidebar {
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    border-left: 1px solid var(--sidebar-border);
    padding: 20px 14px;
    position: sticky;
    top: 0;
    /* height: 100vh; */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar::-webkit-scrollbar-thumb { background: var(--sidebar-border); }

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px 16px;
    border-bottom: 1px solid var(--sidebar-border);
    margin-bottom: 8px;
}
.sidebar-brand .logo-mark { width: 40px; height: 40px; box-shadow: 0 4px 16px rgba(34,197,94,.28); }
.sidebar-brand .brand-text { color: #fff; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.sidebar-brand .brand-sub { font-size: .65rem; color: var(--sidebar-text-2); letter-spacing: .12em; }

.plan-card {
    background:
        radial-gradient(circle at top right, rgba(134,239,172,.25), transparent 55%),
        linear-gradient(135deg, var(--green-600), var(--green-800));
    border: 1px solid rgba(134,239,172,.18);
    border-radius: var(--r-md);
    padding: 14px 14px 12px;
    color: #fff;
    margin: 8px 0 12px;
    position: relative;
    /* overflow: hidden; */
    min-width: 0;                     /* let it shrink inside the sidebar */
}
.plan-card .label {
    color: rgba(255,255,255,.72);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.plan-card .name {
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.plan-card .name > :first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
    min-width: 0;
}
.plan-card .name span:last-child { flex-shrink: 0; opacity: .9; }
.plan-card .status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: rgba(255,255,255,.88);
    margin-top: 6px;
    padding: 3px 8px;
    background: rgba(255,255,255,.12);
    border-radius: 999px;
}
.plan-card .status::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green-300);
    box-shadow: 0 0 0 3px rgba(134,239,172,.22);
    display: inline-block;
}

.upgrade-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(90deg, rgba(34,197,94,.18), rgba(74,222,128,.10));
    border: 1px solid rgba(74,222,128,.25);
    border-radius: var(--r);
    color: #c9ecd6;
    font-size: .82rem;
    cursor: pointer;
    margin-bottom: 12px;
}
.upgrade-hint:hover { background: rgba(34,197,94,.25); color: #fff; }
.upgrade-hint .upgrade-icon { color: var(--green-300); }

.nav { display: flex; flex-direction: column; gap: 2px; }
.nav-section {
    color: var(--sidebar-text-2);
    text-transform: uppercase;
    font-size: .65rem;
    letter-spacing: .14em;
    padding: 14px 12px 6px;
    font-weight: 700;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    color: var(--sidebar-text);
    font-size: .92rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .12s, color .12s;
    text-decoration: none;
    user-select: none;
}
.nav-item:hover { background: var(--sidebar-bg-2); color: #fff; }
.nav-item.active { background: rgba(34,197,94,.15); color: var(--sidebar-active); }
.nav-item .nav-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: .8; }
.nav-item.active .nav-icon { opacity: 1; }
.nav-item .nav-arrow { margin-right: auto; transition: transform .15s; opacity: .5; }
.nav-item.open .nav-arrow { transform: rotate(-90deg); }

.nav-sub { padding-right: 30px; display: none; gap: 1px; flex-direction: column; }
.nav-item.open + .nav-sub { display: flex; }
.nav-sub .nav-item { font-size: .87rem; padding: 7px 12px; }

/* ── Topbar ────────────────────────────────── */
.topbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-h);
}
.topbar h1 { font-size: 1.2rem; margin: 0; line-height: 1.2; }
.topbar .page-sub { font-size: .8rem; color: var(--text-3); }
.topbar .topbar-right { margin-right: auto; display: flex; align-items: center; gap: 12px; }

.topbar-icon-btn {
    width: 38px; height: 38px;
    border-radius: var(--r-sm);
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    cursor: pointer;
    position: relative;
}
.topbar-icon-btn:hover { background: var(--brand-bg); color: var(--brand-dark); border-color: var(--brand); }
.topbar-icon-btn .badge-count {
    position: absolute;
    top: -6px; left: -6px;
    background: var(--danger);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 999px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--surface);
}

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    cursor: pointer;
}
.user-chip:hover { background: var(--brand-bg); border-color: var(--brand); }
.user-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-400), var(--green-600));
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

/* announcements bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--green-50), var(--green-100));
    border-bottom: 1px solid var(--green-200);
    padding: 8px 28px;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    font-size: .85rem;
    color: var(--green-800);
}
.announcement-bar .ann { white-space: nowrap; display: inline-flex; gap: 6px; align-items: center; }

/* ── Content area ──────────────────────────── */
.content { padding: 28px; min-height: calc(100vh - var(--header-h)); }
.content-narrow { max-width: 760px; margin: 0 auto; }

.page-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.page-title-row h1 { font-size: 1.6rem; margin: 0; }
.page-title-row .page-actions { display: flex; gap: 8px; }

/* Quick actions row */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.quick-action:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand); color: var(--text); }
.quick-action .qa-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    background: var(--brand-light);
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quick-action .qa-text { font-weight: 600; }
.quick-action .qa-sub { font-size: .8rem; color: var(--text-3); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   Page Hero — shared dark-green glass header used across pages
   (dashboard, shorten, networks, designs, templates…).
   Compose with: .page-hero > .hero-blob + .hero-content
                 > .hero-text (eyebrow/h1/p) + optional .hero-side
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #052e16 0%, #0e1f15 35%, #14532d 75%, #166534 100%);
    color: #fff;
    border-radius: 22px;
    padding: 28px 32px;
    margin-bottom: 22px;
    box-shadow: 0 24px 60px -24px rgba(15,29,20,.45), 0 4px 12px rgba(15,29,20,.18);
    isolation: isolate;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(74,222,128,.20), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(34,197,94,.15), transparent 55%);
    z-index: -1;
}
.page-hero .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    z-index: -1;
    opacity: .55;
    pointer-events: none;
}
.page-hero .hero-blob-1 { width: 240px; height: 240px; top: -80px; left: -60px;  background: #22c55e; opacity: .45; }
.page-hero .hero-blob-2 { width: 200px; height: 200px; bottom: -70px; right: 10%; background: #86efac; opacity: .30; }

.page-hero .hero-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.page-hero .hero-text { flex: 1; min-width: 240px; }
.page-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #bbf7d0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 12px;
}
.page-hero h1,
.page-hero h2 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.page-hero h1 svg, .page-hero h2 svg { color: #bbf7d0; opacity: .9; }
.page-hero p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    line-height: 1.6;
    max-width: 540px;
}

/* Right-side column — buttons, stats, avatar, etc. */
.page-hero .hero-side {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

/* Stat cards (used on shorten/dashboard) */
.page-hero .hero-stats { display: flex; gap: 10px; flex-shrink: 0; }
.page-hero .hero-stat {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 14px 18px;
    min-width: 150px;
    transition: transform .15s, background .15s, border-color .15s;
}
.page-hero .hero-stat:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(134,239,172,.4); }
.page-hero .hero-stat .hs-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.page-hero .hero-stat .hs-icon.green {
    background: linear-gradient(180deg, #4ade80, #16a34a);
    color: #052e16;
    box-shadow: 0 4px 12px -4px rgba(74,222,128,.6);
}
.page-hero .hero-stat strong {
    font-size: 1.35rem; font-weight: 800; display: block;
    color: #fff; line-height: 1.1; letter-spacing: -.02em;
}
.page-hero .hero-stat span {
    font-size: .72rem; color: rgba(255,255,255,.66); display: block; margin-top: 2px;
}

/* Avatar inside hero (for dashboard welcome) */
.page-hero .hero-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hero buttons — frosted glass on dark hero */
.page-hero .btn,
.page-hero .hero-btn {
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    border-radius: 12px;
    padding: 11px 18px;
    font-weight: 700;
    transition: all .15s;
    display: inline-flex; align-items: center; gap: 8px;
}
.page-hero .btn:hover,
.page-hero .hero-btn:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(134,239,172,.45);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -10px rgba(0,0,0,.4);
}
/* Solid primary variant (white pill with green text) */
.page-hero .btn-primary,
.page-hero .hero-btn-primary {
    background: linear-gradient(180deg, #ffffff, #f0fdf4);
    color: var(--green-800);
    border-color: rgba(255,255,255,.7);
    box-shadow: 0 10px 22px -8px rgba(0,0,0,.35);
}
.page-hero .btn-primary:hover,
.page-hero .hero-btn-primary:hover {
    background: linear-gradient(180deg, #f0fdf4, #dcfce7);
    color: var(--green-900);
    border-color: #ffffff;
}

/* ── Legacy welcome-hero — keep selector for backwards compat, restyle to match ── */
.welcome-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #052e16 0%, #0e1f15 35%, #14532d 75%, #166534 100%);
    color: #fff;
    border-radius: 22px;
    padding: 28px 32px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 24px 60px -24px rgba(15,29,20,.45), 0 4px 12px rgba(15,29,20,.18);
    isolation: isolate;
}
.welcome-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(74,222,128,.20), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(34,197,94,.15), transparent 55%);
    z-index: -1;
}
.welcome-hero::after {
    content: '';
    position: absolute;
    bottom: -70px; right: 10%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: #86efac;
    filter: blur(48px);
    opacity: .30;
    z-index: -1;
    pointer-events: none;
}
.welcome-hero .avatar-big {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}
.welcome-hero h2 { color: #fff; margin: 0 0 4px; font-size: 1.4rem; }
.welcome-hero p  { color: rgba(255,255,255,.78); margin: 0; }

/* Buttons inside legacy welcome-hero — frosted */
.welcome-hero .btn {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.welcome-hero .btn:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
    border-color: rgba(134,239,172,.45);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .page-hero .hero-stats { width: 100%; }
    .page-hero .hero-stat { flex: 1; min-width: 0; }
}
@media (max-width: 768px) {
    .page-hero { padding: 22px 20px; border-radius: 18px; }
    .page-hero h1, .page-hero h2 { font-size: 1.3rem; }
    .page-hero p { font-size: .85rem; }
    .page-hero .hero-content { gap: 18px; }
    .page-hero .hero-stat { padding: 12px 14px; min-width: 0; }
    .page-hero .hero-stat strong { font-size: 1.15rem; }
    .page-hero .hero-stat .hs-icon { width: 34px; height: 34px; border-radius: 10px; }
    .page-hero .hero-side { width: 100%; }
    .page-hero .hero-side .btn { flex: 1; justify-content: center; }
    .welcome-hero { padding: 22px 20px; border-radius: 18px; flex-wrap: wrap; }
    .welcome-hero h2 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .page-hero { padding: 20px 16px; border-radius: 16px; }
    .page-hero h1, .page-hero h2 { font-size: 1.15rem; }
    .page-hero .hero-eyebrow { font-size: .68rem; padding: 3px 10px; }
    .page-hero .hero-stats { flex-direction: column; gap: 8px; }
    .page-hero .hero-stat { flex-direction: row; padding: 11px 14px; }
    .welcome-hero { padding: 18px 16px; gap: 14px; }
    .welcome-hero .avatar-big { width: 52px; height: 52px; font-size: 1.3rem; }
}

/* ── Sidebar backdrop (mobile drawer overlay) ── */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8,18,12,.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 198;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}
.sidebar-backdrop.show { opacity: 1; visibility: visible; pointer-events: auto; }

/* ── Sidebar close button (visible only inside drawer) ── */
.sidebar-close {
    display: none;
    position: absolute;
    top: 12px;
    left: 12px;
    width: 34px; height: 34px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
.sidebar-close:hover, .sidebar-close:focus { background: rgba(255,255,255,.22); outline: none; }
.sidebar-close:active { transform: scale(.95); }

/* ── Tablet & smaller (≤ 1100px) ───────────── */
.menu-toggle { display: none; }
@media (max-width: 1100px) {
    .app { grid-template-columns: 1fr !important; }
    /* Critical: let the content track actually shrink to viewport width. Otherwise
       inner min-content (long announcement banner, wide grids) bloats the 1fr track. */
    .app > * { min-width: 0; }
    .sidebar {
        position: fixed !important;
        top: 0; right: 0; bottom: 0; left: auto;
        width: 280px;
        max-width: 86vw;
        height: 100dvh !important;
        height: 100vh !important;
        z-index: 1200;
        padding: 56px 12px 20px;
        transform: translate3d(110%, 0, 0);
        transition: transform .28s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,.35);
        border-left: 1px solid var(--sidebar-border);
        border-right: 0;
        overscroll-behavior: contain;
    }
    .sidebar.open { transform: translate3d(0, 0, 0); }
    .sidebar-backdrop { z-index: 1100; }
    .sidebar-close { display: inline-flex; top: 14px; right: auto; left: 14px; }
    /* Hide menu toggle when drawer is open */
    body.drawer-open .menu-toggle { opacity: 0; pointer-events: none; }

    /* Tighter brand row inside drawer */
    .sidebar-brand { padding: 0 4px 12px; margin-bottom: 6px; }
    .sidebar-brand .logo-mark { width: 50px; height: 50px; }
    .sidebar-brand .brand-text { font-size: 1.05rem; }
    .sidebar-brand .brand-sub { font-size: .58rem; }

    /* Compact plan card and upgrade hint */
    .plan-card { padding: 10px 12px; margin: 4px 0 8px; }
    .plan-card .label { font-size: .62rem; margin-bottom: 4px; }
    .plan-card .name { font-size: .88rem; }
    .plan-card .status { font-size: .68rem; margin-top: 4px; }
    .upgrade-hint { padding: 8px 10px; font-size: .76rem; margin-bottom: 8px; gap: 8px; }

    /* Compact nav items */
    .nav-section { padding: 10px 10px 4px; font-size: .58rem; }
    .nav-item { padding: 8px 10px; font-size: .86rem; gap: 8px; }
    .nav-item .nav-icon { width: 16px; height: 16px; }
    .nav-sub { padding-right: 22px; }
    .nav-sub .nav-item { padding: 6px 10px; font-size: .82rem; }
    .menu-toggle {
        display: inline-flex;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: var(--r-sm);
        width: 38px; height: 38px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
    }
    .content { padding: 18px; }
    .topbar { padding: 12px 16px; gap: 10px; }
    .topbar h1 { font-size: 1.05rem; }
    .topbar .page-sub { font-size: .75rem; }
    .announcement-bar { padding: 8px 16px; }
}

/* ── Phone (≤ 720px) ───────────────────────── */
@media (max-width: 720px) {
    .sidebar { width: 290px; max-width: 88vw; }
    .content { padding: 14px; }
    .topbar { padding: 10px 12px; height: auto; min-height: 60px; }
    .topbar h1 { font-size: 1rem; }
    .topbar .page-sub { display: none; }
    .topbar-right { gap: 6px; }
    .topbar-icon-btn { width: 34px; height: 34px; }
    .user-chip { padding: 4px 8px 4px 4px; gap: 6px; }
    .user-chip span:not(.user-avatar) { display: none; }
    .user-avatar { width: 28px; height: 28px; font-size: .8rem; }

    .page-title-row { margin-bottom: 16px; gap: 10px; }
    .page-title-row h1 { font-size: 1.2rem; }
    .page-title-row .page-actions { width: 100%; flex-wrap: wrap; }

    .welcome-hero { padding: 18px 18px; gap: 12px; border-radius: var(--r); }
    .welcome-hero .avatar-big { width: 48px; height: 48px; font-size: 1.2rem; }
    .welcome-hero h2 { font-size: 1.1rem; }
    .welcome-hero p { font-size: .85rem; }

    .quick-actions { grid-template-columns: 1fr; gap: 10px; margin-bottom: 16px; }
    .quick-action { padding: 12px; }
    .quick-action .qa-icon { width: 38px; height: 38px; }

    .announcement-bar { padding: 6px 12px; font-size: .8rem; gap: 14px; }
}

/* ── Tiny phone (≤ 420px) ──────────────────── */
@media (max-width: 420px) {
    .content { padding: 12px; }
    .topbar { padding: 8px 10px; }
    .topbar-right { gap: 4px; }
    .welcome-hero { padding: 16px; flex-direction: column; align-items: flex-start; text-align: start; }
    .welcome-hero h2 { font-size: 1rem; }
    .page-title-row h1 { font-size: 1.1rem; }
    .sidebar { width: 260px; }
}
