/* =============================================================
   Wiki Article Page - PingGalaxy Design System V2
   Modern documentation layout - Clean CSS, no !important
   ============================================================= */

/* =============================================================
   1. READING PROGRESS BAR
   ============================================================= */

.pg-wiki-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pg-galaxy), #818CF8);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* =============================================================
   2. PAGE WRAPPER & BREADCRUMB
   ============================================================= */

.pg-wiki-article {
    background: var(--pg-white);
    min-height: 100vh;
}

.pg-wiki-breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
}

.pg-wiki-breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: var(--pg-grey-light);
}

.pg-wiki-breadcrumb-inner a {
    color: var(--pg-grey);
    text-decoration: none;
    transition: color 0.15s;
}

.pg-wiki-breadcrumb-inner a:hover {
    color: var(--pg-galaxy);
}

.pg-wiki-breadcrumb-sep {
    color: var(--pg-border-medium);
    display: flex;
    align-items: center;
}

.pg-wiki-breadcrumb-sep svg {
    width: 14px;
    height: 14px;
}

.pg-wiki-breadcrumb-current {
    color: var(--pg-dark);
    font-weight: 500;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =============================================================
   3. LAYOUT (3 columns: TOC | Content | Categories)
   ============================================================= */

.pg-wiki-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 80px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

