/* _content/PS-ForgeAndFable/Components/Components/Builds/BuildCard.razor.rz.scp.css */
/* ── BuildCard ──────────────────────────────────────────────────────────── */

.build-card[b-rgamupkwhq] {
    background: var(--color-tephra);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

/* ── Featured indicator (sits in the meta row, pushed to the right) ── */

.build-card-featured-star[b-rgamupkwhq] {
    margin-left: auto;
    color: #f5c542;
    line-height: 0;
    flex-shrink: 0;
    pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.build-card:hover[b-rgamupkwhq],
.build-card:focus-visible[b-rgamupkwhq] {
    transform: translateY(-4px);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(156, 194, 64, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* ── Cover image ── */

.build-card-cover[b-rgamupkwhq] {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-ash-plain);
    flex-shrink: 0;
}

.build-card-cover img[b-rgamupkwhq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.build-card:hover .build-card-cover img[b-rgamupkwhq] {
    transform: scale(1.03);
}

.build-card-cover--placeholder[b-rgamupkwhq] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hidden by default; revealed by the placeholder class whether set at render time or added by onerror */
.build-card-placeholder-icon[b-rgamupkwhq] {
    display: none;
}

.build-card-cover--placeholder .build-card-placeholder-icon[b-rgamupkwhq] {
    display: flex;
    color: rgba(176, 188, 202, 0.5);
}

.build-card-cover--placeholder[b-rgamupkwhq]  svg {
    width: 64px !important;
    height: 64px !important;
}

/* ── Card body ── */

.build-card-body[b-rgamupkwhq] {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

/* ── Meta badges row ── */

.build-card-meta[b-rgamupkwhq] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 2px;
}

.build-card-badge[b-rgamupkwhq] {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
}

.build-card-badge--tool[b-rgamupkwhq] {
    background: rgba(138, 155, 168, 0.18);
    color: var(--color-glacial-silt);
}

.build-card-badge--complete[b-rgamupkwhq] {
    background: rgba(156, 194, 64, 0.15);
    color: var(--color-lichen-flash);
}

.build-card-badge--in-progress[b-rgamupkwhq] {
    background: rgba(200, 170, 60, 0.15);
    color: #c8b44a;
}

.build-card-badge--abandoned[b-rgamupkwhq] {
    background: rgba(180, 80, 70, 0.15);
    color: #c07070;
}

.build-card-badge--status[b-rgamupkwhq] {
    background: rgba(138, 155, 168, 0.12);
    color: var(--color-text-muted);
}

/* ── Title & description ── */

.build-card-title[b-rgamupkwhq] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.build-card-desc[b-rgamupkwhq] {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    flex: 1;
    /* Clamp to 3 lines so all cards stay uniform height */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Tags ── */

.build-card-tags[b-rgamupkwhq] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}

.build-card-tag[b-rgamupkwhq] {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(94, 122, 42, 0.2);
    color: var(--color-highland-green);
    letter-spacing: 0.03em;
}

/* ── Date ── */

.build-card-date[b-rgamupkwhq] {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.55;
    margin-top: 2px;
}
/* _content/PS-ForgeAndFable/Components/Components/Builds/BuildDetailView.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   BuildDetailView — scoped styles
   ══════════════════════════════════════════════ */

/* ── Loading / error states ── */

.builds-loading[b-2ur2v8i98k] {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.builds-error[b-2ur2v8i98k] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* ══════════════════════════════════════════════
   Build detail — header block
   ══════════════════════════════════════════════ */

.build-detail-header[b-2ur2v8i98k] {
    margin-bottom: 40px;
}

/* ── Cover image ── */

.build-detail-cover[b-2ur2v8i98k] {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 28px;
    background: var(--color-ash-plain);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.build-detail-cover img[b-2ur2v8i98k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Title row (title + optional right-anchored links) ── */

.build-detail-title-row[b-2ur2v8i98k] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 16px;
}

.build-detail-title[b-2ur2v8i98k] {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    line-height: 1.2;
}

/* ── Meta row (date, cad tool, status) ── */

.build-detail-meta[b-2ur2v8i98k] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.build-detail-meta-item[b-2ur2v8i98k] {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Status badge ── */

.build-detail-status[b-2ur2v8i98k] {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
}

.build-detail-status--complete[b-2ur2v8i98k]    { background: rgba(156, 194, 64, 0.15); color: var(--color-lichen-flash); }
.build-detail-status--in-progress[b-2ur2v8i98k] { background: rgba(200, 170, 60, 0.15); color: #c8b44a; }
.build-detail-status--abandoned[b-2ur2v8i98k]   { background: rgba(180, 80, 70, 0.15);  color: #c07070; }
.build-detail-status--default[b-2ur2v8i98k]     { background: rgba(138, 155, 168, 0.12); color: var(--color-text-muted); }

/* ── Tags row ── */

.build-detail-tags[b-2ur2v8i98k] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.build-detail-tag[b-2ur2v8i98k] {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(94, 122, 42, 0.2);
    color: var(--color-highland-green);
    letter-spacing: 0.03em;
}

/* ── Shared section label (Gallery, Files, Credits) ── */

.build-section-label[b-2ur2v8i98k] {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.55;
    margin: 0 0 10px;
}

/* ── External links (title-row right side) ── */

.build-detail-links[b-2ur2v8i98k] {
    flex-shrink: 0;
    padding-top: 5px;
}

.build-detail-links-row[b-2ur2v8i98k] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.build-detail-link-btn[b-2ur2v8i98k] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.build-detail-link-btn:hover[b-2ur2v8i98k] {
    background: var(--color-cinder);
    border-color: rgba(156, 194, 64, 0.4);
    color: var(--color-lichen-flash);
}

.build-detail-link-icon[b-2ur2v8i98k] {
    opacity: 0.45;
}

/* ── Gallery section ── */

.build-detail-gallery[b-2ur2v8i98k] {
    margin-top: 36px;
    margin-bottom: 40px;
}

/* ── Files section ── */

.build-detail-files[b-2ur2v8i98k] {
    margin-top: 36px;
    margin-bottom: 40px;
}

.build-detail-files-row[b-2ur2v8i98k] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.build-detail-file-btn[b-2ur2v8i98k] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.build-detail-file-btn:hover[b-2ur2v8i98k] {
    background: var(--color-cinder);
    border-color: rgba(156, 194, 64, 0.4);
    color: var(--color-lichen-flash);
}

.build-detail-file-icon[b-2ur2v8i98k] {
    opacity: 0.45;
    flex-shrink: 0;
}

.build-detail-file-btn:hover .build-detail-file-icon[b-2ur2v8i98k] {
    opacity: 0.7;
}

/* ── Files expand / collapse toggle ── */

.build-files-toggle[b-2ur2v8i98k] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.55;
    padding: 4px 2px;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.build-files-toggle:hover[b-2ur2v8i98k] {
    opacity: 1;
    color: var(--color-lichen-flash);
}

.build-files-toggle svg[b-2ur2v8i98k] {
    flex-shrink: 0;
}

/* ── Sub-page navigation ── */

.build-subpages-nav[b-2ur2v8i98k] {
    margin: 0 0 36px;
}

.build-subpages-nav-label[b-2ur2v8i98k] {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.55;
    margin: 0 0 10px;
}

.build-subpages-list[b-2ur2v8i98k] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.build-subpage-card[b-2ur2v8i98k] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.build-subpage-card:hover[b-2ur2v8i98k] {
    background: var(--color-cinder);
    border-color: rgba(156, 194, 64, 0.4);
    color: var(--color-lichen-flash);
}

.build-subpage-card-icon[b-2ur2v8i98k] {
    opacity: 0.55;
    flex-shrink: 0;
}

.build-subpage-card-arrow[b-2ur2v8i98k] {
    opacity: 0.35;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 4px;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.build-subpage-card:hover .build-subpage-card-arrow[b-2ur2v8i98k] {
    opacity: 0.7;
    transform: translateX(2px);
}

/* ── Credits section ── */

.build-detail-credits[b-2ur2v8i98k] {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--color-cinder);
}

.build-credits-list[b-2ur2v8i98k] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.build-credit-item[b-2ur2v8i98k] {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.build-credit-link[b-2ur2v8i98k] {
    color: var(--color-lichen-flash);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

.build-credit-link:hover[b-2ur2v8i98k] {
    border-bottom-color: var(--color-lichen-flash);
}

.build-credit-by[b-2ur2v8i98k] {
    opacity: 0.75;
}

.build-credit-license[b-2ur2v8i98k] {
    font-size: 0.75rem;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(138, 155, 168, 0.12);
    color: var(--color-text-muted);
    opacity: 0.75;
}

/* ══════════════════════════════════════════════
   Build detail — rendered markdown body
   Uses ::deep so styles reach inside @((MarkupString)...)
   ══════════════════════════════════════════════ */

.build-content[b-2ur2v8i98k] {
    color: var(--color-text-primary);
    line-height: 1.8;
    font-size: 1rem;
}

[b-2ur2v8i98k] .build-content h1,
[b-2ur2v8i98k] .build-content h2,
[b-2ur2v8i98k] .build-content h3,
[b-2ur2v8i98k] .build-content h4,
[b-2ur2v8i98k] .build-content h5,
[b-2ur2v8i98k] .build-content h6 {
    color: var(--color-text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2em;
    margin-bottom: 0.6em;
}

[b-2ur2v8i98k] .build-content h1 { font-size: 1.75rem; }
[b-2ur2v8i98k] .build-content h2 { font-size: 1.4rem; border-bottom: 1px solid var(--color-cinder); padding-bottom: 0.3em; }
[b-2ur2v8i98k] .build-content h3 { font-size: 1.15rem; }
[b-2ur2v8i98k] .build-content h4 { font-size: 1rem; }

[b-2ur2v8i98k] .build-content p {
    margin: 0 0 1.1em;
    opacity: 0.87;
}

[b-2ur2v8i98k] .build-content .build-img-wrap {
    display: block;
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 24px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
    max-height: 260px;
    line-height: 0;
}

[b-2ur2v8i98k] .build-content .build-img-wrap img {
    display: block;
    max-height: 260px;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
}

[b-2ur2v8i98k] .build-content .build-img-hint {
    display: none;
}

[b-2ur2v8i98k] .build-content a {
    color: var(--color-lichen-flash);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

[b-2ur2v8i98k] .build-content a:hover {
    border-bottom-color: var(--color-lichen-flash);
}

[b-2ur2v8i98k] .build-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--color-lichen-flash);
    font-family: 'Courier New', Courier, monospace;
}

[b-2ur2v8i98k] .build-content pre {
    background: var(--color-ash-plain);
    border: 1px solid var(--color-cinder);
    padding: 18px 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.2em 0;
}

[b-2ur2v8i98k] .build-content pre code {
    background: none;
    padding: 0;
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

[b-2ur2v8i98k] .build-content ul,
[b-2ur2v8i98k] .build-content ol {
    padding-left: 1.6em;
    margin: 0 0 1em;
}

[b-2ur2v8i98k] .build-content li {
    margin: 0.3em 0;
    opacity: 0.87;
}

[b-2ur2v8i98k] .build-content blockquote {
    border-left: 3px solid var(--color-highland-green);
    margin: 1.2em 0;
    padding: 0.5em 1.2em;
    background: rgba(94, 122, 42, 0.07);
    border-radius: 0 8px 8px 0;
}

[b-2ur2v8i98k] .build-content blockquote p {
    margin: 0;
}

[b-2ur2v8i98k] .build-content hr {
    border: none;
    border-top: 1px solid var(--color-cinder);
    margin: 2.5em 0;
}

[b-2ur2v8i98k] .build-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 0.9rem;
}

[b-2ur2v8i98k] .build-content th,
[b-2ur2v8i98k] .build-content td {
    border: 1px solid var(--color-cinder);
    padding: 10px 14px;
    text-align: left;
}

[b-2ur2v8i98k] .build-content th {
    background: var(--color-tephra);
    font-weight: 600;
    color: var(--color-text-primary);
}

[b-2ur2v8i98k] .build-content td {
    opacity: 0.87;
}
/* _content/PS-ForgeAndFable/Components/Components/Builds/BuildsListView.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   BuildsListView — scoped styles
   ══════════════════════════════════════════════ */

/* ── Loading / error states ── */

.builds-loading[b-zzfka3uvqp] {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.builds-error[b-zzfka3uvqp] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* ══════════════════════════════════════════════
   Tag filter — multi-select autocomplete
   ══════════════════════════════════════════════ */

.builds-tag-filter[b-zzfka3uvqp] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

/* ── Active tag chips row ── */

.builds-active-tags[b-zzfka3uvqp] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 0;
}

.builds-active-tag[b-zzfka3uvqp] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    padding: 4px 10px 4px 12px;
    border-radius: 999px;
    background: rgba(156, 194, 64, 0.15);
    color: var(--color-lichen-flash);
    border: 1px solid rgba(156, 194, 64, 0.38);
}

.builds-active-tag-remove[b-zzfka3uvqp] {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    font-size: 0.72rem;
    padding: 0 1px;
    line-height: 1;
    transition: opacity 0.12s ease;
}

.builds-active-tag-remove:hover[b-zzfka3uvqp] {
    opacity: 1;
}

.builds-filter-clear[b-zzfka3uvqp] {
    font-size: 0.75rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    opacity: 0.5;
    padding: 2px 6px;
    text-decoration: underline;
    transition: opacity 0.12s ease;
}

.builds-filter-clear:hover[b-zzfka3uvqp] {
    opacity: 1;
}

/* ── Search input + suggestions ── */

.builds-tag-search-wrapper[b-zzfka3uvqp] {
    position: relative;
    width: 260px;
}

.builds-tag-search[b-zzfka3uvqp] {
    width: 100%;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    border-radius: 8px;
    color: var(--color-text-primary);
    padding: 8px 14px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.builds-tag-search[b-zzfka3uvqp]::placeholder {
    color: var(--color-text-muted);
    opacity: 0.45;
}

.builds-tag-search:focus[b-zzfka3uvqp] {
    border-color: rgba(156, 194, 64, 0.5);
}

.builds-tag-suggestions[b-zzfka3uvqp] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    max-height: 220px;
    overflow-y: auto;
}

.builds-tag-suggestion[b-zzfka3uvqp] {
    padding: 8px 14px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background 0.1s ease, color 0.1s ease;
}

.builds-tag-suggestion:hover[b-zzfka3uvqp] {
    background: var(--color-cinder);
    color: var(--color-text-primary);
}

/* Result count — shown only when tags are active */
.builds-filter-count[b-zzfka3uvqp] {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.5;
    margin: 0;
    white-space: nowrap;
}
/* _content/PS-ForgeAndFable/Components/Components/Builds/BuildSubPageView.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   BuildSubPageView — scoped styles
   ══════════════════════════════════════════════ */

/* ── Loading / error states ── */

.builds-loading[b-w9y283uhzb] {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.builds-error[b-w9y283uhzb] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* ── Header block ── */

.build-detail-header[b-w9y283uhzb] {
    margin-bottom: 40px;
}

.build-detail-title[b-w9y283uhzb] {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    line-height: 1.2;
}

/* ── Sub-page parent label ── */

.build-subpage-parent-label[b-w9y283uhzb] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    margin-top: 6px;
}

/* ══════════════════════════════════════════════
   Build detail — rendered markdown body
   Uses ::deep so styles reach inside @((MarkupString)...)
   ══════════════════════════════════════════════ */

.build-content[b-w9y283uhzb] {
    color: var(--color-text-primary);
    line-height: 1.8;
    font-size: 1rem;
}

[b-w9y283uhzb] .build-content h1,
[b-w9y283uhzb] .build-content h2,
[b-w9y283uhzb] .build-content h3,
[b-w9y283uhzb] .build-content h4,
[b-w9y283uhzb] .build-content h5,
[b-w9y283uhzb] .build-content h6 {
    color: var(--color-text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2em;
    margin-bottom: 0.6em;
}

[b-w9y283uhzb] .build-content h1 { font-size: 1.75rem; }
[b-w9y283uhzb] .build-content h2 { font-size: 1.4rem; border-bottom: 1px solid var(--color-cinder); padding-bottom: 0.3em; }
[b-w9y283uhzb] .build-content h3 { font-size: 1.15rem; }
[b-w9y283uhzb] .build-content h4 { font-size: 1rem; }

[b-w9y283uhzb] .build-content p {
    margin: 0 0 1.1em;
    opacity: 0.87;
}

[b-w9y283uhzb] .build-content .build-img-wrap {
    display: block;
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 24px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
    max-height: 260px;
    line-height: 0;
}

[b-w9y283uhzb] .build-content .build-img-wrap img {
    display: block;
    max-height: 260px;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
}

[b-w9y283uhzb] .build-content .build-img-hint {
    display: none;
}

[b-w9y283uhzb] .build-content a {
    color: var(--color-lichen-flash);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

[b-w9y283uhzb] .build-content a:hover {
    border-bottom-color: var(--color-lichen-flash);
}

[b-w9y283uhzb] .build-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--color-lichen-flash);
    font-family: 'Courier New', Courier, monospace;
}

[b-w9y283uhzb] .build-content pre {
    background: var(--color-ash-plain);
    border: 1px solid var(--color-cinder);
    padding: 18px 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.2em 0;
}

[b-w9y283uhzb] .build-content pre code {
    background: none;
    padding: 0;
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

[b-w9y283uhzb] .build-content ul,
[b-w9y283uhzb] .build-content ol {
    padding-left: 1.6em;
    margin: 0 0 1em;
}

[b-w9y283uhzb] .build-content li {
    margin: 0.3em 0;
    opacity: 0.87;
}

[b-w9y283uhzb] .build-content blockquote {
    border-left: 3px solid var(--color-highland-green);
    margin: 1.2em 0;
    padding: 0.5em 1.2em;
    background: rgba(94, 122, 42, 0.07);
    border-radius: 0 8px 8px 0;
}

[b-w9y283uhzb] .build-content blockquote p {
    margin: 0;
}

[b-w9y283uhzb] .build-content hr {
    border: none;
    border-top: 1px solid var(--color-cinder);
    margin: 2.5em 0;
}

[b-w9y283uhzb] .build-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 0.9rem;
}

[b-w9y283uhzb] .build-content th,
[b-w9y283uhzb] .build-content td {
    border: 1px solid var(--color-cinder);
    padding: 10px 14px;
    text-align: left;
}

[b-w9y283uhzb] .build-content th {
    background: var(--color-tephra);
    font-weight: 600;
    color: var(--color-text-primary);
}

[b-w9y283uhzb] .build-content td {
    opacity: 0.87;
}
/* _content/PS-ForgeAndFable/Components/Components/Career/CareerNav.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   Career Nav — gradient pool section on home page
   ────────────────────────────────────────────── */

/*
 * The section itself is a dark gradient that fades in from above and out below,
 * blending seamlessly with the page background rather than sitting as a
 * distinct UI block. No separator, no label — just a tonal shift.
 */
.career-nav-section[b-t5qgva1mfq] {
    /* Tight top so the dark zone begins close to the hobby pills.
       Large bottom so the button sits entrenched well above the page edge. */
    padding: 6rem 1.5rem 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    /* Grow to fill whatever viewport height remains after Hero + FeatureNav.
       This eliminates the grey gap that appears in portrait / tall viewports. */
    flex: 1;

    /* Full-width bleed — side margins cancel px-4 on MudMainContent */
    margin-left: -16px;
    margin-right: -16px;

    /*
     * Gradient settles into its dark tone quickly, then holds all the
     * way to the bottom. No bottom fade — this is the last section.
     */
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(10, 9, 7, 0.22) 20%,
        rgba(10, 9, 7, 0.25) 100%
    );
}

/*
 * Pill uses muted Tephra/Cinder tones rather than Highland Green so it
 * doesn't compete visually with the hobby section above.
 */
.career-nav-pill[b-t5qgva1mfq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 999px;
    background-color: transparent;
    border: 2px solid var(--color-cinder);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-decoration: none;
    color: var(--color-text-muted);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.career-nav-pill:hover[b-t5qgva1mfq] {
    background-color: var(--color-tephra);
    border-color: var(--color-text-muted);
    color: var(--color-text-primary);
}

.career-nav-pill-label[b-t5qgva1mfq] {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

/* ── Footer — pinned to bottom-left of the dark section ── */
.career-nav-footer[b-t5qgva1mfq] {
    position: absolute;
    bottom: 0;
    left: 16px; /* aligns with page content edge, accounting for negative margins */
}

/* Override AppFooter's centred layout for this context */
.career-nav-footer[b-t5qgva1mfq]  .app-footer {
    text-align: left;
    border-top: none;
    padding: 0 0 16px 8px;
}
/* _content/PS-ForgeAndFable/Components/Components/Career/CareerTimeline.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   Career Timeline — container with centre vertical line
   ────────────────────────────────────────────── */

.career-timeline[b-ut4vc4ubny] {
    position: relative;
    padding: 16px 0 32px;
}

/* Vertical centre line — fades in at top, fades out at bottom */
.career-timeline[b-ut4vc4ubny]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent,
        var(--mud-palette-primary) 6%,
        var(--mud-palette-primary) 94%,
        transparent
    );
    opacity: 0.3;
    pointer-events: none;
}
/* _content/PS-ForgeAndFable/Components/Components/Career/CareerTimelineEntry.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   Career Timeline Entry — individual node + card
   ────────────────────────────────────────────── */

/* Three-column grid: [left card slot] [node] [right card slot] */
.timeline-entry[b-1f7zhhpnij] {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

/* ── Node ── */
.timeline-node-slot[b-1f7zhhpnij] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-node[b-1f7zhhpnij] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mud-palette-primary);
    border: 3px solid var(--mud-palette-background);
    box-shadow: 0 0 10px rgba(122, 158, 53, 0.4);
    flex-shrink: 0;
}

/* ── Card slots ── */
.timeline-slot[b-1f7zhhpnij] {
    padding: 0 20px;
}

/* ── Card link wrapper ── */

/*
 * When a company URL is provided the card becomes a block-level anchor.
 * Inherits colour and removes underline so it still reads as a card.
 */
.timeline-card-link[b-1f7zhhpnij] {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    outline-offset: 3px;
}

/* ── Card — two-column flex layout ── */

/*
 * The card uses a flex row so text and logo sit side-by-side.
 * Logo mirroring is handled via CSS order:
 *   Left cards  → [card-text | card-logo]   logo faces inward (toward timeline)
 *   Right cards → [card-logo | card-text]   logo still faces inward
 * align-items: stretch ensures the logo column matches the text column height.
 */
.timeline-card[b-1f7zhhpnij] {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    background: var(--mud-palette-surface);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Hover applies whether card is wrapped in a link or standalone */
.timeline-card-link:hover .timeline-card[b-1f7zhhpnij],
.timeline-card:hover[b-1f7zhhpnij] {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ── Text column ── */
.card-text[b-1f7zhhpnij] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* prevent overflow of long company names */
}

/* ── Logo column ── */

/*
 * Fixed-width column, centred both axes so any logo shape sits cleanly.
 * A hairline divider separates it from the text — on left cards the divider
 * is on the left edge of the logo column; on right cards it's on the right.
 */
.card-logo[b-1f7zhhpnij] {
    width: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

/* Right-side cards: logo column appears first (faces the timeline) */
.timeline-entry--right .card-logo[b-1f7zhhpnij] {
    order: -1;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Logo image ── */

/*
 * Fills the column without distorting — object-fit: contain scales the image
 * to fit within its bounds. Max dimensions are tuned so all three logos
 * read well at card size without overwhelming the text column.
 */
.timeline-logo[b-1f7zhhpnij] {
    max-width: 56px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

/* Accent border faces the timeline — right edge for left cards, left edge for right cards */
.timeline-entry--left .timeline-card[b-1f7zhhpnij] {
    border-right: 3px solid var(--mud-palette-primary);
}

.timeline-entry--right .timeline-card[b-1f7zhhpnij] {
    border-left: 3px solid var(--mud-palette-primary);
}

/* ── Card content ── */
.timeline-date[b-1f7zhhpnij] {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mud-palette-primary);
    opacity: 0.85;
    margin-bottom: 8px;
}

.timeline-company[b-1f7zhhpnij] {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
}

.timeline-roles[b-1f7zhhpnij] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.timeline-role[b-1f7zhhpnij] {
    font-size: 0.85rem;
    color: var(--mud-palette-text-secondary);
}

/*
 * Progression indicator — a vertical line on the left encompassing both roles,
 * with a small downward arrow at the base. No highlighting; both roles share
 * the same muted style. The bracket reads as "these happened in sequence here"
 * without implying either role belonged to a different company.
 */
.timeline-roles--progression[b-1f7zhhpnij] {
    position: relative;
    padding-left: 14px;
    border-left: 1.5px solid rgba(160, 152, 144, 0.3);
}

/* Downward arrow sitting at the foot of the bracket line */
.timeline-roles--progression[b-1f7zhhpnij]::after {
    content: '▾';
    position: absolute;
    left: -5px;
    bottom: -10px;
    font-size: 0.85rem;
    color: var(--mud-palette-text-secondary);
    opacity: 0.4;
    line-height: 1;
}

/* ── Responsive: collapse to left-anchored single column ── */
@media (max-width: 640px) {
    .timeline-entry[b-1f7zhhpnij] {
        grid-template-columns: 32px 1fr;
        grid-template-rows: auto;
    }

    /* Node moves to column 1 on all entries */
    .timeline-node-slot[b-1f7zhhpnij] {
        grid-column: 1;
        grid-row: 1;
        align-items: flex-start;
        padding-top: 22px;
    }

    /* Left slot is hidden on mobile (cards reflow to right column) */
    .timeline-slot--left[b-1f7zhhpnij] {
        display: none;
    }

    /* Right slot always fills column 2 on mobile, regardless of Side */
    .timeline-slot--right[b-1f7zhhpnij] {
        grid-column: 2;
        grid-row: 1;
    }

    /* Show the card in the left slot for left-side entries on mobile */
    .timeline-entry--left .timeline-slot--left[b-1f7zhhpnij] {
        display: block;
        grid-column: 2;
        grid-row: 1;
        padding: 0 0 0 16px;
    }

    /* On mobile, restore natural left-to-right order regardless of side */
    .timeline-entry--right .card-logo[b-1f7zhhpnij] {
        order: 0;
        border-right: none;
        border-left: 1px solid rgba(255, 255, 255, 0.07);
    }

    /* All cards get a left border on mobile */
    .timeline-entry--left .timeline-card[b-1f7zhhpnij],
    .timeline-entry--right .timeline-card[b-1f7zhhpnij] {
        border-left: 3px solid var(--mud-palette-primary);
        border-right: none;
    }

    .timeline-slot--right[b-1f7zhhpnij] {
        padding: 0 0 0 16px;
    }
}
/* _content/PS-ForgeAndFable/Components/Components/Career/CareerTimelineMarker.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   Career Timeline Marker — annotation on the line
   between two entries (e.g. an acquisition).
   ────────────────────────────────────────────── */

/*
 * Centres the label over the vertical timeline line. Sits in the same
 * negative-margin rhythm as entries so the pill overlaps the line cleanly.
 */
.timeline-marker[b-a8ch9u63st] {
    display: flex;
    justify-content: center;
    margin: -12px 0 28px;
    position: relative;
    z-index: 2;
}

/*
 * Pill styled to read as metadata, not a card — muted surface, dashed accent
 * border, and a solid background so it masks the line passing behind it.
 */
.timeline-marker-label[b-a8ch9u63st] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--mud-palette-background);
    border: 1px dashed rgba(122, 158, 53, 0.5);
    box-shadow: 0 0 0 4px var(--mud-palette-background);
}

/*
 * ::deep is required because MudIcon renders its <svg> as raw markup, so the
 * component's scope attribute never lands on it — a plain scoped selector misses.
 * Rotated to point down, mirroring the top-to-bottom flow of the timeline.
 */
.timeline-marker-label[b-a8ch9u63st]  .timeline-marker-icon {
    color: var(--mud-palette-primary);
    opacity: 0.85;
    transform: rotate(180deg);
}

.timeline-marker-text[b-a8ch9u63st] {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--mud-palette-text-secondary);
}

/* ── Responsive: align to the left-anchored line on mobile ── */
@media (max-width: 640px) {
    .timeline-marker[b-a8ch9u63st] {
        justify-content: flex-start;
        padding-left: 4px;
        margin: -4px 0 24px;
    }

    .timeline-marker-text[b-a8ch9u63st] {
        font-size: 0.74rem;
    }
}
/* _content/PS-ForgeAndFable/Components/Components/Programming/GitHubContributionsPanel.razor.rz.scp.css */
/* ── GitHubContributionsPanel ────────────────────────────────────────────── */

.ghc-panel[b-6tp517jux5] {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.ghc-label[b-6tp517jux5] {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.45;
    margin: 0;
}

.ghc-loading[b-6tp517jux5] {
    display: flex;
    align-items: center;
    padding: 18px 0;
    opacity: 0.4;
}

/* ══════════════════════════════════════════════
   Per-account block — header + calendar
   ══════════════════════════════════════════════ */

.ghc-account[b-6tp517jux5] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    border-radius: 12px;
}

.ghc-head[b-6tp517jux5] {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.ghc-tag[b-6tp517jux5] {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.55;
}

.ghc-login[b-6tp517jux5] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.ghc-login:hover[b-6tp517jux5] {
    color: var(--color-lichen-flash);
}

.ghc-login-logo[b-6tp517jux5] {
    flex-shrink: 0;
    opacity: 0.7;
}

.ghc-total[b-6tp517jux5] {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    opacity: 0.6;
    margin-left: auto;
}

/* ══════════════════════════════════════════════
   Calendar grid — columns of 7 day cells
   ══════════════════════════════════════════════ */

/* Horizontal scroll keeps the ~53-week grid intact on narrow screens */
.ghc-graph-scroll[b-6tp517jux5] {
    overflow-x: auto;
    padding-bottom: 4px;
}

.ghc-graph[b-6tp517jux5] {
    display: flex;
    gap: 3px;
    min-width: min-content;
}

.ghc-week[b-6tp517jux5] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ghc-cell[b-6tp517jux5] {
    width: 11px;
    height: 11px;
    border-radius: 2px;
    background: var(--color-cinder);
    flex-shrink: 0;
}

.ghc-cell--empty[b-6tp517jux5] {
    background: transparent;
}

/* Green intensity ramp — keyed off the site's lime primary (~#9cc240) */
.ghc-cell[data-level="0"][b-6tp517jux5] { background: rgba(156, 194, 64, 0.07); }
.ghc-cell[data-level="1"][b-6tp517jux5] { background: rgba(156, 194, 64, 0.28); }
.ghc-cell[data-level="2"][b-6tp517jux5] { background: rgba(156, 194, 64, 0.50); }
.ghc-cell[data-level="3"][b-6tp517jux5] { background: rgba(156, 194, 64, 0.75); }
.ghc-cell[data-level="4"][b-6tp517jux5] { background: #b6e04a; }

/* ══════════════════════════════════════════════
   Legend
   ══════════════════════════════════════════════ */

.ghc-legend[b-6tp517jux5] {
    display: flex;
    align-items: center;
    gap: 3px;
    align-self: flex-end;
}

.ghc-legend .ghc-cell[b-6tp517jux5] {
    cursor: default;
}

.ghc-legend-lbl[b-6tp517jux5] {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    opacity: 0.5;
    margin: 0 4px;
}

/* ══════════════════════════════════════════════
   Compact variant — sidebar drawer
   ══════════════════════════════════════════════

   Sized to fit the ~240px drawer: 3px cells on a 4px pitch keep a full 53-week
   year inside the width, and card chrome is stripped so it reads as inline
   drawer content rather than a floating panel.
*/

.ghc-panel--compact[b-6tp517jux5] {
    gap: 12px;
    margin-bottom: 0;
    padding: 4px 12px 8px;
}

.ghc-panel--compact .ghc-account[b-6tp517jux5] {
    gap: 5px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.ghc-panel--compact .ghc-head[b-6tp517jux5] {
    gap: 4px 8px;
    align-items: center;
}

.ghc-panel--compact .ghc-tag[b-6tp517jux5] {
    font-size: 0.58rem;
}

.ghc-panel--compact .ghc-login[b-6tp517jux5] {
    font-size: 0.74rem;
    gap: 4px;
}

.ghc-panel--compact .ghc-login-logo[b-6tp517jux5] {
    width: 12px;
    height: 12px;
}

/* Total drops to its own line under the login on the narrow drawer */
.ghc-panel--compact .ghc-total[b-6tp517jux5] {
    margin-left: 0;
    flex-basis: 100%;
    font-size: 0.66rem;
    opacity: 0.5;
    order: 3;
}

.ghc-panel--compact .ghc-graph[b-6tp517jux5] {
    gap: 1px;
}

.ghc-panel--compact .ghc-week[b-6tp517jux5] {
    gap: 1px;
}

.ghc-panel--compact .ghc-cell[b-6tp517jux5] {
    width: 3px;
    height: 3px;
    border-radius: 1px;
}
/* _content/PS-ForgeAndFable/Components/Components/Programming/GitHubRepoPanel.razor.rz.scp.css */
/* ── GitHubRepoPanel ─────────────────────────────────────────────────────── */

.gh-panel[b-yy7irw9g25] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

/* ── Loading state ── */

.gh-panel-loading[b-yy7irw9g25] {
    display: flex;
    align-items: center;
    padding: 18px 0;
    opacity: 0.4;
}

/* ══════════════════════════════════════════════
   Card grid
   ══════════════════════════════════════════════ */

.gh-cards[b-yy7irw9g25] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 10px;
    align-items: stretch;
}

@media (max-width: 600px) {
    .gh-cards[b-yy7irw9g25] {
        grid-template-columns: 1fr;
    }
}

/* ── Shared card shell ── */

.gh-card[b-yy7irw9g25] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    border-radius: 12px;
}

.gh-card-label[b-yy7irw9g25] {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.45;
    margin: 0;
}

/* ══════════════════════════════════════════════
   Card 1 — Stats
   ══════════════════════════════════════════════ */

/* ── View on GitHub link ── */

.gh-repo-link[b-yy7irw9g25] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 8px;
    background: var(--color-ash-plain);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    align-self: flex-start;
}

.gh-repo-link:hover[b-yy7irw9g25] {
    background: var(--color-cinder);
    border-color: rgba(156, 194, 64, 0.4);
    color: var(--color-lichen-flash);
}

.gh-repo-link-logo[b-yy7irw9g25] {
    flex-shrink: 0;
    opacity: 0.85;
}

.gh-repo-link-ext[b-yy7irw9g25] {
    opacity: 0.35;
    flex-shrink: 0;
}

/* ── Stat items ── */

.gh-stats-grid[b-yy7irw9g25] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-top: auto;
}

.gh-stat-item[b-yy7irw9g25] {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gh-stat-icon[b-yy7irw9g25] {
    opacity: 0.5;
    flex-shrink: 0;
}

.gh-stat-val[b-yy7irw9g25] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1;
}

.gh-stat-lbl[b-yy7irw9g25] {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    opacity: 0.55;
}

/* ── Last pushed timestamp ── */

.gh-pushed[b-yy7irw9g25] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    opacity: 0.45;
}

/* ══════════════════════════════════════════════
   Card 2 — Languages donut
   ══════════════════════════════════════════════ */

/* Donut is self-centred; legend rows stretch to full card width */

.gh-card--langs[b-yy7irw9g25] {
    align-items: stretch;
}

/*
 * The wrap provides a 4 px "halo" ring in --color-ash-plain, giving even
 * very dark segment colours (e.g. Lua navy) clear contrast against the card.
 * The ::after pseudo-element punches the hole by matching the card background.
 */

.gh-donut-wrap[b-yy7irw9g25] {
    position: relative;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--color-ash-plain);
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-donut[b-yy7irw9g25] {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    position: relative;
}

.gh-donut[b-yy7irw9g25]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-tephra);
}

/* ── Legend ── */

.gh-lang-legend[b-yy7irw9g25] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.gh-lang-legend-item[b-yy7irw9g25] {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
}

.gh-lang-dot[b-yy7irw9g25] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gh-lang-name[b-yy7irw9g25] {
    flex: 1;
    color: var(--color-text-primary);
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gh-lang-pct[b-yy7irw9g25] {
    color: var(--color-text-muted);
    opacity: 0.55;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════════════
   Card 3 — Recent activity
   ══════════════════════════════════════════════ */

.gh-commits[b-yy7irw9g25] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gh-commit[b-yy7irw9g25] {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    align-items: baseline;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--color-cinder);
}

.gh-commit:last-child[b-yy7irw9g25] {
    border-bottom: none;
    padding-bottom: 0;
}

.gh-commit:first-child[b-yy7irw9g25] {
    padding-top: 0;
}

.gh-commit-dot[b-yy7irw9g25] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-cinder);
    flex-shrink: 0;
    align-self: center;
    margin-top: 1px;
}

.gh-commit-msg[b-yy7irw9g25] {
    font-size: 0.8rem;
    color: var(--color-text-primary);
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
}

.gh-commit-date[b-yy7irw9g25] {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.45;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   Topics chips (inside the repo stats card)
   ══════════════════════════════════════════════ */

.gh-topics[b-yy7irw9g25] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gh-topic-chip[b-yy7irw9g25] {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(49, 120, 198, 0.12);
    border: 1px solid rgba(49, 120, 198, 0.25);
    color: #6ba3e0;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.gh-topic-chip:hover[b-yy7irw9g25] {
    background: rgba(49, 120, 198, 0.22);
    border-color: rgba(49, 120, 198, 0.45);
    color: #89bcf0;
}
/* _content/PS-ForgeAndFable/Components/Components/Programming/ProgrammingDetailView.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   ProgrammingDetailView — scoped styles
   ══════════════════════════════════════════════ */

/* ── Loading / error states ── */

.projects-loading[b-o2nlgwlih7] {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.projects-error[b-o2nlgwlih7] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* ══════════════════════════════════════════════
   Project detail — header block
   ══════════════════════════════════════════════ */

.project-detail-header[b-o2nlgwlih7] {
    margin-bottom: 32px;
}

/* ── Cover image ── */

.project-detail-cover[b-o2nlgwlih7] {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 28px;
    background: var(--color-ash-plain);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.project-detail-cover img[b-o2nlgwlih7] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Title row ── */

.project-detail-title-row[b-o2nlgwlih7] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 16px;
}

.project-detail-title[b-o2nlgwlih7] {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    line-height: 1.2;
}

/* ── Meta row ── */

.project-detail-meta[b-o2nlgwlih7] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.project-detail-meta-item[b-o2nlgwlih7] {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Status badge ── */

.project-detail-status[b-o2nlgwlih7] {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
}

.project-detail-status--complete[b-o2nlgwlih7]    { background: rgba(156, 194, 64, 0.15); color: var(--color-lichen-flash); }
.project-detail-status--in-progress[b-o2nlgwlih7] { background: rgba(200, 170, 60, 0.15); color: #c8b44a; }
.project-detail-status--abandoned[b-o2nlgwlih7]   { background: rgba(180, 80, 70, 0.15);  color: #c07070; }
.project-detail-status--default[b-o2nlgwlih7]     { background: rgba(138, 155, 168, 0.12); color: var(--color-text-muted); }

/* ── Combined badge row: languages + platform + tags ── */

.project-detail-badges[b-o2nlgwlih7] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.project-detail-lang-badge[b-o2nlgwlih7] {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 4px 12px;
    border-radius: 999px;
}

.project-platform-badge[b-o2nlgwlih7] {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(138, 155, 168, 0.12);
    color: var(--color-glacial-silt);
}

.project-detail-tag[b-o2nlgwlih7] {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(94, 122, 42, 0.2);
    color: var(--color-highland-green);
    letter-spacing: 0.03em;
}

/* ── Shared section label ── */

.project-section-label[b-o2nlgwlih7] {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.55;
    margin: 0 0 10px;
}

/* ── External links ── */

.project-detail-links[b-o2nlgwlih7] {
    flex-shrink: 0;
    padding-top: 5px;
}

.project-detail-links-row[b-o2nlgwlih7] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-detail-link-btn[b-o2nlgwlih7] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.project-detail-link-btn:hover[b-o2nlgwlih7] {
    background: var(--color-cinder);
    border-color: rgba(156, 194, 64, 0.4);
    color: var(--color-lichen-flash);
}

.project-detail-link-icon[b-o2nlgwlih7] {
    opacity: 0.45;
}

/* ── Demo section ── */

.project-detail-demo[b-o2nlgwlih7] {
    margin-top: 32px;
    margin-bottom: 36px;
}

.project-demo-embed-wrap[b-o2nlgwlih7] {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 10px;
    overflow: hidden;
    background: var(--color-ash-plain);
    border: 1px solid var(--color-cinder);
    margin-bottom: 14px;
}

.project-demo-embed[b-o2nlgwlih7] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.project-demo-link[b-o2nlgwlih7] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(156, 194, 64, 0.12);
    border: 1px solid rgba(156, 194, 64, 0.3);
    color: var(--color-lichen-flash);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.project-demo-link:hover[b-o2nlgwlih7] {
    background: rgba(156, 194, 64, 0.2);
    border-color: rgba(156, 194, 64, 0.55);
}

/* ── Dependencies section ── */

.project-detail-deps[b-o2nlgwlih7] {
    margin-top: 28px;
    margin-bottom: 32px;
}

.project-deps-list[b-o2nlgwlih7] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-dep-badge[b-o2nlgwlih7] {
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 8px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-muted);
    font-family: 'Courier New', Courier, monospace;
}

/* ── Gallery section ── */

.project-detail-gallery[b-o2nlgwlih7] {
    margin-top: 36px;
    margin-bottom: 40px;
}

/* ── Files section ── */

.project-detail-files[b-o2nlgwlih7] {
    margin-top: 36px;
    margin-bottom: 40px;
}

.project-detail-files-row[b-o2nlgwlih7] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-detail-file-btn[b-o2nlgwlih7] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.project-detail-file-btn:hover[b-o2nlgwlih7] {
    background: var(--color-cinder);
    border-color: rgba(156, 194, 64, 0.4);
    color: var(--color-lichen-flash);
}

.project-detail-file-icon[b-o2nlgwlih7] {
    opacity: 0.45;
    flex-shrink: 0;
}

.project-detail-file-btn:hover .project-detail-file-icon[b-o2nlgwlih7] {
    opacity: 0.7;
}

.project-files-toggle[b-o2nlgwlih7] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.55;
    padding: 4px 2px;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.project-files-toggle:hover[b-o2nlgwlih7] {
    opacity: 1;
    color: var(--color-lichen-flash);
}

.project-files-toggle svg[b-o2nlgwlih7] {
    flex-shrink: 0;
}

/* ── Sub-page navigation ── */

.project-subpages-nav[b-o2nlgwlih7] {
    margin: 0 0 36px;
}

.project-subpages-nav-label[b-o2nlgwlih7] {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.55;
    margin: 0 0 10px;
}

.project-subpages-list[b-o2nlgwlih7] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-subpage-card[b-o2nlgwlih7] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.project-subpage-card:hover[b-o2nlgwlih7] {
    background: var(--color-cinder);
    border-color: rgba(156, 194, 64, 0.4);
    color: var(--color-lichen-flash);
}

.project-subpage-card-icon[b-o2nlgwlih7] {
    opacity: 0.55;
    flex-shrink: 0;
}

.project-subpage-card-arrow[b-o2nlgwlih7] {
    opacity: 0.35;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 4px;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.project-subpage-card:hover .project-subpage-card-arrow[b-o2nlgwlih7] {
    opacity: 0.7;
    transform: translateX(2px);
}

/* ── Credits section ── */

.project-detail-credits[b-o2nlgwlih7] {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--color-cinder);
}

.project-credits-list[b-o2nlgwlih7] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-credit-item[b-o2nlgwlih7] {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.project-credit-link[b-o2nlgwlih7] {
    color: var(--color-lichen-flash);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

.project-credit-link:hover[b-o2nlgwlih7] {
    border-bottom-color: var(--color-lichen-flash);
}

.project-credit-by[b-o2nlgwlih7] {
    opacity: 0.75;
}

.project-credit-license[b-o2nlgwlih7] {
    font-size: 0.75rem;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(138, 155, 168, 0.12);
    color: var(--color-text-muted);
    opacity: 0.75;
}

/* ══════════════════════════════════════════════
   Rendered markdown body
   ══════════════════════════════════════════════ */

.project-content[b-o2nlgwlih7] {
    color: var(--color-text-primary);
    line-height: 1.8;
    font-size: 1rem;
}

[b-o2nlgwlih7] .project-content h1,
[b-o2nlgwlih7] .project-content h2,
[b-o2nlgwlih7] .project-content h3,
[b-o2nlgwlih7] .project-content h4,
[b-o2nlgwlih7] .project-content h5,
[b-o2nlgwlih7] .project-content h6 {
    color: var(--color-text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2em;
    margin-bottom: 0.6em;
}

[b-o2nlgwlih7] .project-content h1 { font-size: 1.75rem; }
[b-o2nlgwlih7] .project-content h2 { font-size: 1.4rem; border-bottom: 1px solid var(--color-cinder); padding-bottom: 0.3em; }
[b-o2nlgwlih7] .project-content h3 { font-size: 1.15rem; }
[b-o2nlgwlih7] .project-content h4 { font-size: 1rem; }

[b-o2nlgwlih7] .project-content p {
    margin: 0 0 1.1em;
    opacity: 0.87;
}

[b-o2nlgwlih7] .project-content .project-img-wrap {
    display: block;
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 24px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
    max-height: 260px;
    line-height: 0;
}

[b-o2nlgwlih7] .project-content .project-img-wrap img {
    display: block;
    max-height: 260px;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
}

[b-o2nlgwlih7] .project-content .project-img-hint {
    display: none;
}

[b-o2nlgwlih7] .project-content a {
    color: var(--color-lichen-flash);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

[b-o2nlgwlih7] .project-content a:hover {
    border-bottom-color: var(--color-lichen-flash);
}

[b-o2nlgwlih7] .project-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--color-lichen-flash);
    font-family: 'Courier New', Courier, monospace;
}

[b-o2nlgwlih7] .project-content pre {
    background: var(--color-ash-plain);
    border: 1px solid var(--color-cinder);
    padding: 18px 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.2em 0;
}

[b-o2nlgwlih7] .project-content pre code {
    background: none;
    padding: 0;
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

[b-o2nlgwlih7] .project-content ul,
[b-o2nlgwlih7] .project-content ol {
    padding-left: 1.6em;
    margin: 0 0 1em;
}

[b-o2nlgwlih7] .project-content li {
    margin: 0.3em 0;
    opacity: 0.87;
}

[b-o2nlgwlih7] .project-content blockquote {
    border-left: 3px solid var(--color-highland-green);
    margin: 1.2em 0;
    padding: 0.5em 1.2em;
    background: rgba(94, 122, 42, 0.07);
    border-radius: 0 8px 8px 0;
}

[b-o2nlgwlih7] .project-content blockquote p {
    margin: 0;
}

[b-o2nlgwlih7] .project-content hr {
    border: none;
    border-top: 1px solid var(--color-cinder);
    margin: 2.5em 0;
}

[b-o2nlgwlih7] .project-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 0.9rem;
}

[b-o2nlgwlih7] .project-content th,
[b-o2nlgwlih7] .project-content td {
    border: 1px solid var(--color-cinder);
    padding: 10px 14px;
    text-align: left;
}

[b-o2nlgwlih7] .project-content th {
    background: var(--color-tephra);
    font-weight: 600;
    color: var(--color-text-primary);
}

[b-o2nlgwlih7] .project-content td {
    opacity: 0.87;
}
/* _content/PS-ForgeAndFable/Components/Components/Programming/ProgrammingListView.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   ProgrammingListView — scoped styles
   ══════════════════════════════════════════════ */

/* ── Loading / error states ── */

.projects-loading[b-qe46lcg3b2] {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.projects-error[b-qe46lcg3b2] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* ══════════════════════════════════════════════
   Tag filter
   ══════════════════════════════════════════════ */

.projects-tag-filter[b-qe46lcg3b2] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.projects-active-tags[b-qe46lcg3b2] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.projects-active-tag[b-qe46lcg3b2] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    padding: 4px 10px 4px 12px;
    border-radius: 999px;
    background: rgba(156, 194, 64, 0.15);
    color: var(--color-lichen-flash);
    border: 1px solid rgba(156, 194, 64, 0.38);
}

.projects-active-tag-remove[b-qe46lcg3b2] {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    font-size: 0.72rem;
    padding: 0 1px;
    line-height: 1;
    transition: opacity 0.12s ease;
}

.projects-active-tag-remove:hover[b-qe46lcg3b2] {
    opacity: 1;
}

.projects-filter-clear[b-qe46lcg3b2] {
    font-size: 0.75rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    opacity: 0.5;
    padding: 2px 6px;
    text-decoration: underline;
    transition: opacity 0.12s ease;
}

.projects-filter-clear:hover[b-qe46lcg3b2] {
    opacity: 1;
}

.projects-tag-search-wrapper[b-qe46lcg3b2] {
    position: relative;
    width: 260px;
}

.projects-tag-search[b-qe46lcg3b2] {
    width: 100%;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    border-radius: 8px;
    color: var(--color-text-primary);
    padding: 8px 14px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.projects-tag-search[b-qe46lcg3b2]::placeholder {
    color: var(--color-text-muted);
    opacity: 0.45;
}

.projects-tag-search:focus[b-qe46lcg3b2] {
    border-color: rgba(156, 194, 64, 0.5);
}

.projects-tag-suggestions[b-qe46lcg3b2] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    max-height: 220px;
    overflow-y: auto;
}

.projects-tag-suggestion[b-qe46lcg3b2] {
    padding: 8px 14px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background 0.1s ease, color 0.1s ease;
}

.projects-tag-suggestion:hover[b-qe46lcg3b2] {
    background: var(--color-cinder);
    color: var(--color-text-primary);
}

.projects-filter-count[b-qe46lcg3b2] {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.5;
    margin: 0;
    white-space: nowrap;
}
/* _content/PS-ForgeAndFable/Components/Components/Programming/ProgrammingSubPageView.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   ProgrammingSubPageView — scoped styles
   ══════════════════════════════════════════════ */

/* ── Loading / error states ── */

.projects-loading[b-z7t3hdxipm] {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.projects-error[b-z7t3hdxipm] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* ── Header block ── */

.project-detail-header[b-z7t3hdxipm] {
    margin-bottom: 32px;
}

.project-detail-title[b-z7t3hdxipm] {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    line-height: 1.2;
}

/* ── Sub-page parent label ── */

.project-subpage-parent-label[b-z7t3hdxipm] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    margin-top: 6px;
}

/* ══════════════════════════════════════════════
   Rendered markdown body
   ══════════════════════════════════════════════ */

.project-content[b-z7t3hdxipm] {
    color: var(--color-text-primary);
    line-height: 1.8;
    font-size: 1rem;
}

[b-z7t3hdxipm] .project-content h1,
[b-z7t3hdxipm] .project-content h2,
[b-z7t3hdxipm] .project-content h3,
[b-z7t3hdxipm] .project-content h4,
[b-z7t3hdxipm] .project-content h5,
[b-z7t3hdxipm] .project-content h6 {
    color: var(--color-text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2em;
    margin-bottom: 0.6em;
}

[b-z7t3hdxipm] .project-content h1 { font-size: 1.75rem; }
[b-z7t3hdxipm] .project-content h2 { font-size: 1.4rem; border-bottom: 1px solid var(--color-cinder); padding-bottom: 0.3em; }
[b-z7t3hdxipm] .project-content h3 { font-size: 1.15rem; }
[b-z7t3hdxipm] .project-content h4 { font-size: 1rem; }

[b-z7t3hdxipm] .project-content p {
    margin: 0 0 1.1em;
    opacity: 0.87;
}

[b-z7t3hdxipm] .project-content .project-img-wrap {
    display: block;
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 24px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
    max-height: 260px;
    line-height: 0;
}

[b-z7t3hdxipm] .project-content .project-img-wrap img {
    display: block;
    max-height: 260px;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
}

[b-z7t3hdxipm] .project-content .project-img-hint {
    display: none;
}

[b-z7t3hdxipm] .project-content a {
    color: var(--color-lichen-flash);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

[b-z7t3hdxipm] .project-content a:hover {
    border-bottom-color: var(--color-lichen-flash);
}

[b-z7t3hdxipm] .project-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--color-lichen-flash);
    font-family: 'Courier New', Courier, monospace;
}

[b-z7t3hdxipm] .project-content pre {
    background: var(--color-ash-plain);
    border: 1px solid var(--color-cinder);
    padding: 18px 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.2em 0;
}

[b-z7t3hdxipm] .project-content pre code {
    background: none;
    padding: 0;
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

[b-z7t3hdxipm] .project-content ul,
[b-z7t3hdxipm] .project-content ol {
    padding-left: 1.6em;
    margin: 0 0 1em;
}

[b-z7t3hdxipm] .project-content li {
    margin: 0.3em 0;
    opacity: 0.87;
}

[b-z7t3hdxipm] .project-content blockquote {
    border-left: 3px solid var(--color-highland-green);
    margin: 1.2em 0;
    padding: 0.5em 1.2em;
    background: rgba(94, 122, 42, 0.07);
    border-radius: 0 8px 8px 0;
}

[b-z7t3hdxipm] .project-content blockquote p {
    margin: 0;
}

[b-z7t3hdxipm] .project-content hr {
    border: none;
    border-top: 1px solid var(--color-cinder);
    margin: 2.5em 0;
}

[b-z7t3hdxipm] .project-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 0.9rem;
}

[b-z7t3hdxipm] .project-content th,
[b-z7t3hdxipm] .project-content td {
    border: 1px solid var(--color-cinder);
    padding: 10px 14px;
    text-align: left;
}

[b-z7t3hdxipm] .project-content th {
    background: var(--color-tephra);
    font-weight: 600;
    color: var(--color-text-primary);
}

[b-z7t3hdxipm] .project-content td {
    opacity: 0.87;
}
/* _content/PS-ForgeAndFable/Components/Components/Programming/ProjectCard.razor.rz.scp.css */
/* ── ProjectCard ──────────────────────────────────────────────────────────── */

.project-card[b-vgu555235o] {
    background: var(--color-tephra);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.project-card:hover[b-vgu555235o],
.project-card:focus-visible[b-vgu555235o] {
    transform: translateY(-4px);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(156, 194, 64, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* ── Featured star ── */

.project-card-featured-star[b-vgu555235o] {
    margin-left: auto;
    color: #f5c542;
    line-height: 0;
    flex-shrink: 0;
    pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

/* ── Cover image ── */

.project-card-cover[b-vgu555235o] {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-ash-plain);
    flex-shrink: 0;
}

.project-card-cover img[b-vgu555235o] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-cover img[b-vgu555235o] {
    transform: scale(1.03);
}

.project-card-cover--placeholder[b-vgu555235o] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hidden by default; revealed by the placeholder class whether set at render time or added by onerror */
.project-card-placeholder-icon[b-vgu555235o] {
    display: none;
}

.project-card-cover--placeholder .project-card-placeholder-icon[b-vgu555235o] {
    display: flex;
    color: rgba(176, 188, 202, 0.5);
}

.project-card-cover--placeholder[b-vgu555235o]  svg {
    width: 64px !important;
    height: 64px !important;
}

/* ── Card body ── */

.project-card-body[b-vgu555235o] {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

/* ── Meta badges row ── */

.project-card-meta[b-vgu555235o] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 2px;
}

.project-card-badge[b-vgu555235o] {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
}

.project-card-badge--complete[b-vgu555235o]    { background: rgba(156, 194, 64, 0.15); color: var(--color-lichen-flash); }
.project-card-badge--in-progress[b-vgu555235o] { background: rgba(200, 170, 60, 0.15); color: #c8b44a; }
.project-card-badge--abandoned[b-vgu555235o]   { background: rgba(180, 80, 70, 0.15);  color: #c07070; }
.project-card-badge--status[b-vgu555235o]      { background: rgba(138, 155, 168, 0.12); color: var(--color-text-muted); }

/* ── Title & description ── */

.project-card-title[b-vgu555235o] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.project-card-desc[b-vgu555235o] {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Language badges ── */

.project-card-languages[b-vgu555235o] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}

.project-lang-badge[b-vgu555235o] {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 2px 8px;
    border-radius: 999px;
}

/* ── Tags ── */

.project-card-tags[b-vgu555235o] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.project-card-tag[b-vgu555235o] {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(94, 122, 42, 0.2);
    color: var(--color-highland-green);
    letter-spacing: 0.03em;
}

/* ── Footer row: date + optional GitHub hint icon ── */

.project-card-footer[b-vgu555235o] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

.project-card-date[b-vgu555235o] {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.55;
}

.project-card-repo-hint[b-vgu555235o] {
    color: var(--color-text-muted);
    opacity: 0.35;
    line-height: 0;
    transition: opacity 0.15s ease;
}

.project-card:hover .project-card-repo-hint[b-vgu555235o] {
    opacity: 0.7;
}
/* _content/PS-ForgeAndFable/Components/Components/Shared/FeatureNav.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   Feature Navigation — timeline bubble nav
   ────────────────────────────────────────────── */

.feature-nav-section[b-2g8390qmyh] {
    padding: 56px 24px 140px; /* tall bottom padding so speech bubbles have room */
    position: relative;
    overflow: visible;
}

/* Track: horizontal flex row with a line drawn through the centre */
.feature-nav-track[b-2g8390qmyh] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(32px, 7vw, 96px);
}

.feature-nav-track[b-2g8390qmyh]::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(
        to right,
        transparent,
        var(--mud-palette-primary) 15%,
        var(--mud-palette-primary) 85%,
        transparent
    );
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* ── Item wrapper — this IS the anchor ── */
.feature-nav-item[b-2g8390qmyh] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* ── Pill button ── */
.feature-nav-btn[b-2g8390qmyh] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 999px;
    background-color: var(--mud-palette-surface);
    border: 2px solid var(--mud-palette-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
    position: relative;
    z-index: 1;
}

/* Hover: fill the pill + double-ring glow */
.feature-nav-item:hover .feature-nav-btn[b-2g8390qmyh] {
    background-color: var(--mud-palette-primary);
    color: #fff;
    box-shadow:
        0 0 0 3px var(--mud-palette-background),
        0 0 0 5px var(--mud-palette-primary);
}

.feature-nav-btn-label[b-2g8390qmyh] {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

/* ── Speech bubble card ── */
.feature-nav-card[b-2g8390qmyh] {
    position: absolute;
    top: calc(100% + 12px); /* stem fills this gap exactly */
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: 230px;

    background: var(--mud-palette-surface);
    border-radius: 12px;
    padding: 14px 16px;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);

    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 20;
}

/* Triangle stem — points upward from card top to button */
.feature-nav-card[b-2g8390qmyh]::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid var(--mud-palette-surface);
}

/* Reveal on hover */
.feature-nav-item:hover .feature-nav-card[b-2g8390qmyh] {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Card typography */
.feature-card-title[b-2g8390qmyh] {
    margin: 0 0 6px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
}

.feature-card-body[b-2g8390qmyh] {
    margin: 0 0 10px;
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--mud-palette-text-secondary);
}

.feature-card-explore[b-2g8390qmyh] {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mud-palette-primary);
    letter-spacing: 0.03em;
}

/* ── Responsive: stack on small screens ── */
@media (max-width: 600px) {
    .feature-nav-section[b-2g8390qmyh] {
        padding-bottom: 48px;
    }

    .feature-nav-track[b-2g8390qmyh] {
        flex-direction: column;
        gap: 20px;
    }

    .feature-nav-track[b-2g8390qmyh]::before {
        display: none;
    }

    .feature-nav-item[b-2g8390qmyh] {
        width: 100%;
        max-width: 300px;
    }

    .feature-nav-btn[b-2g8390qmyh] {
        width: 100%;
        justify-content: center;
    }

    /* On mobile: always show the card, no hover needed */
    .feature-nav-card[b-2g8390qmyh] {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        width: 100%;
        margin-top: 8px;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    }

    .feature-nav-card[b-2g8390qmyh]::before {
        display: none;
    }

    .feature-nav-item:hover .feature-nav-btn[b-2g8390qmyh] {
        box-shadow: none;
    }
}
/* _content/PS-ForgeAndFable/Components/Components/Shared/Lightbox.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   Lightbox — Gallery thumbnails + overlay
   ══════════════════════════════════════════════ */

.blb-gallery[b-r34x3vqbqj] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .blb-gallery[b-r34x3vqbqj] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Individual thumbnail button ── */

.blb-thumb[b-r34x3vqbqj] {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    cursor: zoom-in;
    padding: 0;
    border: none;
    background: var(--color-ash-plain);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.2s ease;
}

.blb-thumb:hover[b-r34x3vqbqj] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.blb-thumb:focus-visible[b-r34x3vqbqj] {
    outline: 2px solid rgba(156, 194, 64, 0.6);
    outline-offset: 2px;
}

.blb-thumb img[b-r34x3vqbqj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.blb-thumb:hover img[b-r34x3vqbqj] {
    transform: scale(1.04);
    filter: brightness(0.72);
}

/* ── Zoom-hint overlay icon ── */

.blb-thumb-hint[b-r34x3vqbqj] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    color: #fff;
}

.blb-thumb:hover .blb-thumb-hint[b-r34x3vqbqj] {
    opacity: 1;
}

.blb-thumb-hint svg[b-r34x3vqbqj] {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

/* ── Expand / collapse toggle ── */

.blb-gallery-toggle[b-r34x3vqbqj] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.55;
    padding: 4px 2px;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.blb-gallery-toggle:hover[b-r34x3vqbqj] {
    opacity: 1;
    color: var(--color-lichen-flash);
}

.blb-gallery-toggle svg[b-r34x3vqbqj] {
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   Lightbox overlay
   ══════════════════════════════════════════════ */

.blb-overlay[b-r34x3vqbqj] {
    position: fixed;
    inset: 0;
    z-index: 1400; /* must exceed MudBlazor drawer (1200) and app bar (1300) */
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none; /* suppress default focus ring on the container */
}

/* ── Semi-transparent backdrop (click to close) ── */

.blb-backdrop[b-r34x3vqbqj] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

/* ── Centred content panel ── */

.blb-panel[b-r34x3vqbqj] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 92vw;
    max-height: 92vh;
    padding: 12px;
}

/* ── Close button ── */

.blb-close[b-r34x3vqbqj] {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-tephra);
    border: 1px solid var(--color-cinder);
    color: var(--color-text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.15s ease, border-color 0.15s ease;
    z-index: 2;
}

.blb-close:hover[b-r34x3vqbqj] {
    background: var(--color-cinder);
    border-color: rgba(156, 194, 64, 0.4);
}

/* ── Full-size image ── */

.blb-img[b-r34x3vqbqj] {
    max-width: 88vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.85);
    display: block;
}

/* ── "View full image" link ── */

.blb-link[b-r34x3vqbqj] {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    opacity: 0.55;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.blb-link:hover[b-r34x3vqbqj] {
    opacity: 1;
}
/* _content/PS-ForgeAndFable/Components/Layout/AppFooter.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   App Footer — copyright line
   ────────────────────────────────────────────── */

.app-footer[b-xjocs9i1bi] {
    text-align: center;
    padding: 20px 16px 24px;
    border-top: 1px solid var(--color-tephra);
    opacity: 0.45;
}

.app-footer-text[b-xjocs9i1bi] {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
}
/* _content/PS-ForgeAndFable/Components/Layout/HomeLayout.razor.rz.scp.css */
/*
 * Home Layout scoped styles.
 * The full-height flex rules for .mud-main-content live in site.css
 * (scoped via .home-layout) because ::deep does not reliably pierce
 * MudBlazor's rendered elements from a Blazor layout file.
 */
/* _content/PS-ForgeAndFable/Components/Layout/MainLayout.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   Main Layout — drawer footer pinning & content fade
   ────────────────────────────────────────────── */

/*
 * Makes the drawer contents a flex column so MudSpacer pushes
 * AppFooter to the very bottom of the sidebar.
 */
.drawer-layout[b-7w8wsjfe3d] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/*
 * Gradient tail pinned to the bottom of MudMainContent.
 * Because .main-layout .mud-main-content has min-height: calc(100vh - 64px)
 * and position: relative (both set in site.css), this element always sits
 * at the very bottom of the visible page area. It dissolves the content's
 * background tone into darkness rather than ending with a hard line.
 */
.page-fade-tail[b-7w8wsjfe3d] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(10, 9, 7, 0.65) 100%
    );
    pointer-events: none;
}
/* _content/PS-ForgeAndFable/Components/Pages/Builds.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   Builds.razor — scoped styles
   Only the back-button lives in the page itself;
   all other styles have moved to the child
   component CSS files.
   ══════════════════════════════════════════════ */

.back-btn[b-riu6jio9bi] {
    margin-left: -8px;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.back-btn:hover[b-riu6jio9bi] {
    opacity: 1;
}
/* _content/PS-ForgeAndFable/Components/Pages/Career.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   Career Page
   ────────────────────────────────────────────── */

.career-page[b-0oends8oll] {
    padding-top: 48px;
    padding-bottom: 64px;
}

/* ── Header ── */
.career-header[b-0oends8oll] {
    border-left: 3px solid var(--mud-palette-primary);
    padding-left: 16px;
}

.career-title[b-0oends8oll] {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.career-subtitle[b-0oends8oll] {
    opacity: 0.6;
}

/* ── Employer Cards ── */
.career-card[b-0oends8oll] {
    height: 100%;
    background: var(--mud-palette-surface);
    border-radius: 12px;
    padding: 24px;
    border-left: 3px solid var(--mud-palette-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.career-card:hover[b-0oends8oll] {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.career-company[b-0oends8oll] {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
}

.career-roles[b-0oends8oll] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.career-role[b-0oends8oll] {
    font-size: 0.85rem;
    color: var(--mud-palette-text-secondary);
}

/* Promoted role shown in Highland Green */
.career-role--promoted[b-0oends8oll] {
    color: var(--color-highland-green);
    font-weight: 600;
}

/* Small upward arrow between roles to indicate progression */
.career-role-arrow[b-0oends8oll] {
    font-size: 0.75rem;
    color: var(--mud-palette-primary);
    opacity: 0.5;
    line-height: 1;
}

/* ── Resume Section ── */
.career-resume-section[b-0oends8oll] {
    padding-top: 16px;
    text-align: center;
}

.career-resume-intro[b-0oends8oll] {
    margin: 0 auto 48px;
    max-width: 400px;
    opacity: 0.65;
    line-height: 1.7;
}

/* Pill centred on a fading line — mirrors FeatureNav track */
.career-resume-track[b-0oends8oll] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
}

.career-resume-track[b-0oends8oll]::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--mud-palette-primary) 20%,
        var(--mud-palette-primary) 80%,
        transparent
    );
    opacity: 0.25;
    pointer-events: none;
}

.career-resume-pill[b-0oends8oll] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 999px;
    background-color: var(--mud-palette-surface);
    border: 2px solid var(--mud-palette-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    text-decoration: none;
    color: var(--mud-palette-text-primary);
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

.career-resume-pill:hover[b-0oends8oll] {
    background-color: var(--mud-palette-primary);
    color: #fff;
    box-shadow:
        0 0 0 3px var(--mud-palette-background),
        0 0 0 5px var(--mud-palette-primary);
}

.career-resume-pill-label[b-0oends8oll] {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}
/* _content/PS-ForgeAndFable/Components/Pages/Home.razor.rz.scp.css */
/* ──────────────────────────────────────────────
   Home Page — layout shell
   ────────────────────────────────────────────── */

/*
 * Stretches to fill the flex column established by HomeLayout on
 * MudMainContent, then passes that direction down to its children
 * so CareerNav can claim the remaining height via flex: 1.
 */
.home-page-layout[b-bzfwhssw7i] {
    display: flex;
    flex-direction: column;
    flex: 1;
}
/* _content/PS-ForgeAndFable/Components/Pages/Programming.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   Programming.razor — scoped styles
   Only the back-button lives in the page itself;
   all other styles have moved to the child
   component CSS files.
   ══════════════════════════════════════════════ */

.back-btn[b-iwfg3ztgc1] {
    margin-left: -8px;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.back-btn:hover[b-iwfg3ztgc1] {
    opacity: 1;
}
