/*
    Striped 2026 layout system — locked.

    Ranges
      Mobile        < 768px
      Tablet        768–1199px
      Desktop       1200–1599px
      Wide desktop  ≥ 1600px

    Tokens
      Page max        --s26-page-max
      Page pad        --s26-page-pad
      Date / rail     --s26-date-width
      Hero            --s26-hero-max + --s26-image-ratio
      Body            --s26-body-max
      Figures / code  --s26-figure-max / --s26-block-max

    Page kinds
      listing   body.listing-2026  [data-s26-folder]
      article   body.article-detail-2026
      folder    same listing shell; empty folders get a placeholder card

    New folder: copy theme/layout/folder.html, set data-s26-folder to a
    key in folderCatalog, leave #content > .inner empty or drop in cards
    from theme/layout/listing-card.html.
    6C: Checklist, Context, Concept, Code, Conclusion, Comments.
    Copy theme/layout/checklist.html after the hero, comments.html after tags.
    Disqus loads from data-s26-comments.
    Do not invent new widths.
*/

:root {
    --s26-bg: #f5f6f8;
    --s26-ink: #1e2630;
    --s26-muted: #66717f;
    --s26-border: rgba(30, 38, 48, 0.12);
    --s26-soft: #f8fafc;
    --s26-code-bg: #0d1117;
    --s26-cyan: #4bc7d8;
    --s26-violet: #8d7cf6;
    --s26-amber: #d9903d;
    --s26-green: #3aa875;
    --s26-brand: #C64B64;
    --s26-brand-rgb: 198, 75, 100;
    --s26-sidebar-bg: #364050;
    --s26-sidebar-panel: #111824;
    --s26-sidebar-text: #f3f5f7;
    --s26-sidebar-muted: #929baa;
    --s26-sidebar-width: 300px;
    --s26-page-max: 100%;
    --s26-page-pad: clamp(1rem, 4vw, 1.25rem);
    --s26-date-width: 72px;
    --s26-date-gap: 0px;
    --s26-hero-max: 100%;
    --s26-figure-max: 100%;
    --s26-block-max: 100%;
    --s26-body-max: none;
    --s26-heading-size: clamp(1.2rem, 4.8vw, 1.45rem);
    --s26-card-radius: 12px;
    --s26-card-border: 1px solid rgba(var(--s26-brand-rgb), 0.2);
    --s26-card-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
    --s26-card-pad: 1.05em 1.25em;
    --s26-title-size: clamp(1.35rem, 6.2vw, 1.75rem);
    --s26-image-ratio: 16 / 9;
}

@media screen and (min-width: 768px) {
    :root {
        --s26-date-width: 80px;
        --s26-page-pad: clamp(1.15rem, 3vw, 1.75rem);
        --s26-title-size: clamp(1.55rem, 3.6vw, 2.15rem);
        --s26-heading-size: clamp(1.3rem, 2.8vw, 1.6rem);
    }
}

@media screen and (min-width: 1200px) {
    :root {
        --s26-page-max: 1200px;
        --s26-page-pad: clamp(1.75rem, 3vw, 2.5rem);
        --s26-date-width: 100px;
        --s26-title-size: clamp(2rem, 2.4vw, 2.6rem);
    }

    .article-detail-2026 {
        --s26-date-width: 110px;
        --s26-hero-max: min(100%, 880px);
        --s26-figure-max: min(100%, 880px);
        --s26-block-max: min(100%, 880px);
        --s26-body-max: 760px;
        --s26-heading-size: clamp(1.4rem, 2vw, 1.7rem);
    }
}

@media screen and (min-width: 1600px) {
    :root {
        --s26-page-max: 1500px;
        --s26-date-width: 110px;
        --s26-title-size: clamp(2.1rem, 2vw, 2.75rem);
    }

    .article-detail-2026 {
        --s26-date-width: 120px;
        --s26-hero-max: min(100%, 920px);
        --s26-figure-max: min(100%, 920px);
        --s26-block-max: min(100%, 920px);
        --s26-body-max: 760px;
    }
}

.striped-2026-page {
    background: #eef1f4;
}

.striped-2026-page a {
    color: var(--s26-brand);
}

.striped-2026-page a:hover {
    color: #9f394f;
}

.striped-2026-page input:focus,
.striped-2026-page button:focus,
.striped-2026-page a:focus {
    outline: 2px solid rgba(var(--s26-brand-rgb), 0.42);
    outline-offset: 3px;
}

.striped-2026-page #titleBar .title {
    display: none;
}

.striped-2026-page #titleBar .toggle {
    height: 100%;
    width: 52px;
}

.striped-2026-page #titleBar .toggle:before {
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    height: 100%;
    left: 0;
    line-height: 44px;
    top: 0;
    width: 52px;
}

.striped-2026-page #sidebar.sidebar-2026 {
    background: var(--s26-sidebar-bg);
    background-image: url("images/bg01.png");
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08), 18px 0 50px rgba(15, 23, 42, 0.08);
    color: var(--s26-sidebar-muted);
    display: flex;
    flex-direction: column;
    height: 100vh !important;
    max-height: 100vh !important;
    min-height: 0 !important;
    overflow: hidden;
    padding: 30px 22px 18px 22px;
    text-shadow: none;
    width: 300px;
}

.striped-2026-page .sidebar-identity {
    margin: 0 0 24px 0;
    padding: 98px 0 0 0;
    position: relative;
    text-align: center;
}

.striped-2026-page #sidebar .sidebar-identity:before,
.striped-2026-page #sidebar .sidebar-nav:before,
.striped-2026-page #sidebar .sidebar-nav-section:before,
.striped-2026-page #sidebar .sidebar-mark:before {
    display: none;
}

.striped-2026-page .sidebar-name {
    background-color: var(--s26-brand);
    background-image: url("images/bg01.png");
    border-radius: 0.22em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0.15em 0.45em rgba(0, 0, 0, 0.18);
    color: #fff;
    display: block;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 1.82em;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 0.95;
    margin-top: 0;
    padding: 62px 0.45em 0.62em 0.45em;
    text-decoration: none;
}

.striped-2026-page .sidebar-name span {
    display: block;
}

.striped-2026-page .sidebar-avatar {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    background: #fff;
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 0.18em 0.5em rgba(0, 0, 0, 0.28);
    display: block;
    height: 148px;
    left: 50%;
    margin: 0;
    object-fit: cover;
    object-position: 50% 8%;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    user-select: none;
    width: 148px;
    z-index: 1;
}

.striped-2026-page .sidebar-identity p {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.12em;
    font-weight: 700;
    line-height: 1.45;
    margin: 1em 0 0 0;
}

.striped-2026-page #sidebar .sidebar-nav {
    flex: 1 1 auto;
    margin: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.striped-2026-page .sidebar-nav-section {
    margin: 0 0 30px 0;
    padding: 0;
}

.striped-2026-page .sidebar-nav-section:last-child {
    margin-bottom: 16px;
}

.striped-2026-page .sidebar-emoji,
.striped-2026-page .sidebar-icon {
    display: inline-flex;
    flex: 0 0 auto;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
    width: 1.35em;
}

.striped-2026-page svg.sidebar-icon {
    fill: currentColor;
    height: 0.95em;
    width: 0.95em;
}

.striped-2026-page .sidebar-nav-section h2 {
    align-items: center;
    color: #f3b5c1;
    display: flex;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 0.82em;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.14em;
    line-height: 1;
    margin: 0 0 13px 0;
    padding-left: 0;
    position: relative;
    text-transform: uppercase;
}

.striped-2026-page .sidebar-nav-section h2 .sidebar-emoji {
    font-size: 1.35em;
    width: 1.15em;
}

.striped-2026-page .sidebar-nav-section--learning h2 {
    color: #f3b5c1;
}

.striped-2026-page .sidebar-nav-section--build h2 {
    color: #e0b07a;
}

.striped-2026-page .sidebar-nav-section--writing h2 {
    color: #7fd4e0;
}

.striped-2026-page .sidebar-nav-section--about h2 {
    color: #b5a8f6;
}

.striped-2026-page .sidebar-nav-section--social h2 {
    color: #8ec8a8;
}

.striped-2026-page #sidebar.sidebar-2026 .sidebar-nav-section--social ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35em 0.75em;
}

.striped-2026-page #sidebar.sidebar-2026 .sidebar-nav-section--social li {
    box-shadow: none;
    flex: 0 0 auto;
    padding: 0;
}

.striped-2026-page #sidebar.sidebar-2026 .sidebar-nav-section--social li a {
    min-height: 0;
    padding: 0.15em 0;
}

.striped-2026-page #nav.sidebar-nav ul {
    list-style: none;
    margin: 0;
}

.striped-2026-page #nav.sidebar-nav li {
    border: 0;
    margin: 0;
    position: relative;
}

.striped-2026-page #nav.sidebar-nav li a {
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: rgba(243, 245, 247, 0.72);
    display: flex;
    font-size: 0.96em;
    font-weight: 600;
    gap: 0.85em;
    min-height: 38px;
    padding: 0.3em 0 0.3em 0.85em;
    text-decoration: none;
    transform-origin: left center;
    transition: color 160ms ease, transform 160ms ease, text-shadow 160ms ease;
}

.striped-2026-page #nav.sidebar-nav li a:hover {
    color: #f3b5c1;
    text-shadow: 0 0 18px rgba(var(--s26-brand-rgb), 0.28);
    transform: translateX(4px) scale(1.055);
}

.striped-2026-page #nav.sidebar-nav li.current:before {
    background: var(--s26-brand);
    border-radius: 999px;
    content: '';
    height: 24px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 3px;
}

.striped-2026-page #nav.sidebar-nav li.current a {
    color: #f3b5c1;
    font-weight: 700;
}

.striped-2026-page #nav.sidebar-nav li.current a,
.striped-2026-page #nav.sidebar-nav li:hover a {
    background: transparent;
}

.striped-2026-page .track-number {
    color: rgba(146, 155, 170, 0.76);
    font-family: monospace;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.04em;
    min-width: 2.2em;
}

.striped-2026-page #nav.sidebar-nav li.current .track-number,
.striped-2026-page #nav.sidebar-nav li a:hover .track-number {
    color: #f3b5c1;
}

.striped-2026-page .sidebar-mark {
    flex: 0 0 auto;
    margin: 0;
    padding: 4px 0 0 0;
}

.striped-2026-page .sidebar-mark img {
    display: block;
    height: auto;
    max-width: 100%;
    pointer-events: none;
    user-select: none;
    width: 100%;
}

.striped-2026-page #copyright,
.striped-2026-page #sidebar.sidebar-2026 #copyright {
    flex: 0 0 auto;
    margin: 0;
    padding: 16px 0 0 0;
    text-align: left;
}

.striped-2026-page #copyright:before,
.striped-2026-page #sidebar.sidebar-2026 #copyright:before {
    display: none;
}

.striped-2026-page #copyright li,
.striped-2026-page #sidebar.sidebar-2026 #copyright li {
    color: rgba(146, 155, 170, 0.72);
    font-size: 0.74em;
    line-height: 1.5;
}

.striped-2026-page #content {
    margin-left: 0;
    overflow-x: hidden;
    padding-inline: var(--s26-page-pad);
    width: 100%;
}

.striped-2026-page #content > .inner {
    margin-inline: auto;
    max-width: var(--s26-page-max);
    min-width: 0;
    width: min(100%, var(--s26-page-max));
}

@media screen and (min-width: 1200px) {
    .striped-2026-page {
        min-width: 0 !important;
    }

    .striped-2026-page .box.post h2 {
        font-size: var(--s26-title-size) !important;
        line-height: 1.05;
    }

    .striped-2026-page .box.post header {
        margin-bottom: 0;
        padding-top: 0;
    }

    .article-detail-2026 .article-2026 > .article-6c {
        display: none;
    }

    .article-detail-2026 .article-2026 > .article-rail {
        align-self: stretch;
        box-sizing: border-box;
        display: block;
        grid-column: 1 !important;
        height: auto;
        justify-self: start;
        margin: 0;
        max-width: var(--s26-date-width);
        min-height: 12em;
        overflow: hidden;
        position: relative;
        width: var(--s26-date-width) !important;
        z-index: 0;
    }

    .article-detail-2026 .article-rail__track {
        height: 100%;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .article-detail-2026 .article-rail__line {
        background: rgba(30, 38, 48, 0.22);
        border-radius: 2px;
        bottom: 12px;
        left: 50%;
        position: absolute;
        top: 12px;
        transform: translateX(-50%);
        width: 2px;
    }

    .article-detail-2026 .article-rail__stops {
        height: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
    }

    .article-detail-2026 .article-rail__stops li {
        margin: 0;
        padding: 0;
    }

    .article-detail-2026 .article-rail__stop {
        background: #eef1f4;
        border: 1.5px solid rgba(30, 38, 48, 0.38);
        border-radius: 999px;
        display: block;
        font-size: 0;
        height: 10px;
        left: 50%;
        overflow: hidden;
        position: absolute;
        transform: translate(-50%, -50%);
        width: 10px;
        z-index: 1;
    }

    .article-detail-2026 .article-rail__stop.is-done {
        background: var(--s26-brand);
        border-color: var(--s26-brand);
    }

    .article-detail-2026 .article-rail__stop.is-done:after {
        color: #fff;
        content: '✓';
        display: block;
        font-size: 7px;
        font-weight: 700;
        line-height: 10px;
        text-align: center;
    }

    .article-detail-2026 .article-rail__stop.is-covered {
        opacity: 0;
    }

    .article-detail-2026 .article-rail__marker {
        align-items: center;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        left: 0;
        max-width: 100%;
        pointer-events: none;
        position: absolute;
        top: 0;
        transform: translateY(0);
        width: 100%;
        will-change: transform;
        z-index: 2;
    }

    .article-detail-2026 .article-rail__pin {
        background: var(--s26-brand);
        border-radius: 999px;
        box-shadow: 0 0 0 4px rgba(var(--s26-brand-rgb), 0.16);
        flex: 0 0 auto;
        height: 12px;
        margin: 0;
        width: 12px;
    }

    .article-detail-2026 .article-rail__label {
        color: var(--s26-brand);
        font-family: monospace;
        font-size: 0.56em;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.15;
        margin: 0.35em 0 0 0;
        max-width: 100%;
        overflow: hidden;
        padding: 0 4px;
        text-align: center;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
        width: 100%;
    }

    .striped-2026-page #sidebar.sidebar-2026 {
        height: 100vh !important;
        left: 0;
        max-height: 100vh !important;
        min-height: 0 !important;
        overflow: hidden;
        position: fixed;
        top: 0;
    }

    .striped-2026-page #sidebar.sidebar-2026 #copyright {
        flex: 0 0 auto;
        margin: 0;
        padding-top: 16px;
        text-align: left;
    }

    .striped-2026-page #content {
        margin-left: var(--s26-sidebar-width);
        padding-inline: var(--s26-page-pad);
        width: calc(100% - var(--s26-sidebar-width));
    }

    .striped-2026-page #content > .inner {
        margin-inline: auto;
        max-width: var(--s26-page-max);
        width: min(100%, var(--s26-page-max));
    }

    .striped-2026-page.listing-2026 .card-media {
        border-radius: 14px;
        justify-self: center;
        margin: 0.45em auto 1.25em;
        max-width: none;
        width: 78%;
    }

    .striped-2026-page.listing-2026 .card-media a,
    .striped-2026-page.listing-2026 .card-media img,
    .striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) img.featured {
        border-radius: 0;
        object-fit: cover;
    }

    .striped-2026-page.listing-2026 .card-dek {
        margin-right: 1.25em;
        width: auto;
    }
}


.striped-2026-page .box.post:has(> .info) {
    align-items: stretch;
    column-gap: 0;
    display: grid;
    grid-template-columns: var(--s26-date-width) minmax(0, 1fr);
    margin-left: 0;
    max-width: none;
    position: relative;
    width: 100%;
}

.striped-2026-page:not(.listing-2026) .box.post:has(> .info)::before {
    background: #fff;
    border: var(--s26-card-border);
    border-radius: var(--s26-card-radius);
    box-shadow: var(--s26-card-shadow);
    content: '';
    grid-column: 1 / 3;
    grid-row: 1;
    margin: 0 0 1.5em 0;
    min-height: 5.75em;
    pointer-events: none;
}

.article-detail-2026 .article-2026:has(> .info)::before {
    display: none;
}

.article-detail-2026 .article-2026 > header {
    background: transparent;
    box-shadow: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.striped-2026-page .box.post:has(> .info) > * {
    grid-column: 2;
    min-width: 0;
}

.striped-2026-page.article-detail-2026 .box.post.article-2026 > .article-rail {
    grid-column: 1 !important;
    justify-self: start;
    max-width: var(--s26-date-width);
    overflow: hidden;
    width: var(--s26-date-width) !important;
}

.striped-2026-page .box.post:has(> .info) > header,
.striped-2026-page .box.post > .info {
    align-self: stretch;
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0 0 1.5em 0;
    min-height: 5.75em;
}

.striped-2026-page .box.post:has(> .info) > header {
    display: flex;
    flex-direction: column;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    padding: 0.95em 1.25em 1em !important;
    position: relative;
    z-index: 1;
}

.striped-2026-page .box.post:has(> .info) > header h2 {
    font-size: var(--s26-title-size);
    line-height: 1.05;
    margin: 0;
}

.striped-2026-page .box.post > .info {
    align-items: center;
    background: #f6eef1;
    background-image: none;
    border-radius: 12px 0 0 12px;
    bottom: auto !important;
    display: flex;
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    left: auto !important;
    overflow: hidden;
    padding: 0.85em 0.5em;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: var(--s26-date-width) !important;
    z-index: 1;
}

.striped-2026-page .box.post > .info:after {
    background: rgba(var(--s26-brand-rgb), 0.16);
    bottom: 14px;
    content: '';
    position: absolute;
    right: 0;
    top: 14px;
    width: 1px;
}

.striped-2026-page .box.post .author {
    display: none;
}

.striped-2026-page .box.post > .info .date {
    border-bottom: 0;
    color: #8a939e;
    display: block;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 1.18em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: none;
}

.striped-2026-page .box.post > .info .date .day,
.striped-2026-page .box.post > .info .date .month,
.striped-2026-page .box.post > .info .date .year {
    display: block;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.striped-2026-page .box.post > .info .date .day {
    color: #1e2630;
    font-size: 1.55em;
    font-weight: 700;
    margin: 0.18em 0;
}

.striped-2026-page .box.post > .info .date .year {
    color: #8a939e;
    font-size: 0.58em;
}

.striped-2026-page .box.post > .info .date .month span,
.striped-2026-page .box.post > .info .date .year span,
.striped-2026-page .box.post > .info .stats {
    display: none;
}

.article-2026 {
    color: var(--s26-ink);
    font-size: 1.03em;
}

.article-2026 .article-kicker {
    color: var(--s26-muted);
    font-family: monospace;
    font-size: 0.74em;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin: 0 0 1em 0;
    text-transform: uppercase;
}

.article-6c {
    border-bottom: 1px solid var(--s26-border);
    border-top: 1px solid var(--s26-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.55em 1.15em;
    margin: 0 0 1.6em 0;
    padding: 0.85em 0;
}

.article-6c a {
    color: var(--s26-muted);
    font-family: monospace;
    font-size: 0.74em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.article-6c a:hover {
    color: var(--s26-brand);
}

.article-6c a[hidden] {
    display: none;
}

.article-rail {
    display: none;
}

.striped-2026-page.article-detail-2026 {
    scroll-behavior: smooth;
}

.striped-2026-page.article-detail-2026 #content {
    overflow-x: clip;
}

.article-c {
    margin: 0;
    scroll-margin-top: 5.5em;
}

.article-c__label {
    color: var(--s26-brand);
    font-family: monospace;
    font-size: 0.74em;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin: 2.1em 0 0.55em 0;
    text-transform: uppercase;
}

.article-6c + .article-c .article-c__label {
    margin-top: 0.35em;
}

.article-c > h3:first-of-type {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.article-c .article-next,
.article-c.comments-block {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.article-2026 .section-label {
    color: var(--s26-brand);
    font-family: monospace;
    font-size: 0.74em;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin: 0 0 1em 0;
    text-transform: uppercase;
}

.article-2026 .article-dek {
    color: #46515f;
    font-size: 1.04em;
    line-height: 1.62;
    margin-inline: auto;
    max-width: var(--s26-body-max);
}

.article-2026 > p,
.article-2026 > ul,
.article-2026 > ol,
.article-2026 > h3,
.article-2026 > .article-summary,
.article-2026 > .key-note,
.article-2026 > .article-next,
.article-2026 > .article-tags,
.article-2026 > .article-6c,
.article-2026 .article-c > p,
.article-2026 .article-c > ul,
.article-2026 .article-c > ol,
.article-2026 .article-c > h3,
.article-2026 .article-c > .article-summary,
.article-2026 .article-c > .key-note,
.article-2026 .article-c > .article-next {
    margin-inline: auto;
    max-width: var(--s26-body-max);
    width: 100%;
}

.article-2026 > .article-c,
.article-2026 > .comments-block {
    margin-inline: auto;
    max-width: none;
    min-width: 0;
    width: 100%;
}

.article-2026 > .article-figure,
.article-2026 .article-c > figure {
    margin-inline: auto;
    max-width: var(--s26-figure-max);
    width: min(100%, var(--s26-figure-max));
}

.article-2026 .article-c > .highlight,
.article-2026 .article-c > .live-demo {
    margin-inline: auto;
    max-width: var(--s26-block-max);
    width: min(100%, var(--s26-block-max));
}

.article-2026 .article-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55em;
    margin: 1.1em 0 0 0;
}

.article-2026 .article-meta-strip span {
    border: 0;
    border-left: 1px solid var(--s26-border);
    border-radius: 0;
    color: #4e5b68;
    display: inline-flex;
    font-family: monospace;
    font-size: 0.78em;
    line-height: 1;
    padding: 0 0 0 0.65em;
}

.article-2026 .article-meta-strip span:first-child {
    border-left: 0;
    color: var(--s26-brand);
    font-weight: 700;
    padding-left: 0;
}

.article-date-badge {
    display: none;
}

.article-date-badge span,
.article-date-badge small {
    color: var(--s26-muted);
    display: block;
    font-size: 0.82em;
    letter-spacing: 0.08em;
}

.article-date-badge small {
    border-top: 1px solid rgba(30, 38, 48, 0.08);
    margin-top: 0.65em;
    padding-top: 0.65em;
}

.article-date-badge .article-reading-progress {
    color: #46515f;
}

.article-date-badge .article-reading-progress b {
    color: var(--s26-brand);
    font-weight: 700;
}

.article-2026 h3 {
    border-top: 1px solid var(--s26-border);
    font-size: var(--s26-heading-size);
    line-height: 1.25;
    margin-top: 2.2em;
    padding-top: 1.2em;
}

.article-2026 p,
.article-2026 li {
    color: #384452;
}

.article-2026 p code,
.article-2026 li code {
    background: #eef2f5;
    border: 1px solid rgba(30, 38, 48, 0.08);
    border-radius: 0.35em;
    color: #1e2630;
    padding: 0.08em 0.34em;
}

.article-summary {
    border-left: 3px solid var(--s26-brand);
    margin: 1.8em auto;
    padding: 0.1em 0 0.1em 1.2em;
}

.article-summary p {
    color: #2d3946;
    font-size: 1.08em;
    line-height: 1.72;
    max-width: var(--s26-body-max);
}

.article-figure {
    margin: 2em auto;
    width: min(100%, var(--s26-figure-max));
}

.article-figure img,
.article-2026 p[align="center"] img {
    background: #fff;
    border: 1px solid var(--s26-border);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: min(72vh, 42rem);
    max-width: 100%;
    object-fit: contain;
    padding: 0;
    width: auto !important;
}

.article-figure--wide img {
    max-height: none;
    max-width: 100%;
    width: 100% !important;
}

.article-2026 > .article-figure--wide img {
    aspect-ratio: var(--s26-image-ratio);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
    height: auto;
    max-height: none;
    max-width: var(--s26-hero-max);
    object-fit: cover;
    transform: translateY(-4px);
    width: min(100%, var(--s26-hero-max)) !important;
}

.article-c .article-figure--wide img {
    aspect-ratio: var(--s26-image-ratio);
    height: auto;
    object-fit: contain;
}

.article-figure figcaption {
    color: var(--s26-muted);
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    line-height: 1.55;
    margin: 0.85em auto 0 auto;
    max-width: 100%;
    text-align: center;
}

.key-note {
    background: var(--s26-soft);
    border: 1px solid var(--s26-border);
    border-left: 4px solid var(--s26-brand);
    border-radius: 12px;
    margin: 1.75em auto;
    padding: 1.05em 1.15em;
}

.key-note strong {
    color: #17202b;
    display: block;
    font-family: monospace;
    font-size: 0.76em;
    letter-spacing: 0.12em;
    margin-bottom: 0.45em;
    text-transform: uppercase;
}

.key-note p {
    margin: 0;
}

.key-note--mental {
    border-left-color: var(--s26-violet);
}

.key-note--warning {
    border-left-color: var(--s26-amber);
}

.key-note--result {
    border-left-color: var(--s26-green);
}

.live-demo {
    background: #111823;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
    display: grid;
    gap: clamp(1rem, 2.4vw, 1.6em);
    grid-template-columns: minmax(0, 1fr);
    margin: 2.25em auto;
    max-width: var(--s26-block-max);
    overflow: hidden;
    padding: clamp(1.1em, 2.4vw, 1.5em);
    width: min(100%, var(--s26-block-max));
}

@media screen and (min-width: 1200px) {
    .live-demo {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
}

.live-demo h3,
.live-demo p {
    color: #f5f8fb;
}

.live-demo h3 {
    border: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    margin: 0 0 0.65em 0;
    padding: 0;
}

.live-demo .section-label {
    color: #f3b5c1;
}

.live-demo__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
    margin: 1.15em 0 0.75em 0;
}

.live-demo input[type="file"] {
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.live-demo .file-picker,
.live-demo input[type="button"] {
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.88em;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    margin: 0;
    min-height: 42px;
    padding: 0.85em 1.05em;
    text-decoration: none;
}

.live-demo .file-picker {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f5f8fb;
}

.live-demo .file-picker:hover {
    background: rgba(var(--s26-brand-rgb), 0.14);
    border-color: rgba(var(--s26-brand-rgb), 0.52);
}

.live-demo input[type="button"] {
    background: var(--s26-brand);
    border: 0;
    color: #fff;
}

.live-demo input[type="button"]:hover:not(:disabled) {
    background: #b3445a;
}

.live-demo input[type="button"]:disabled {
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: 0.55;
}

.live-demo .demo-status {
    color: #b8c2d1;
    font-size: 0.9em;
    margin: 0;
}

.live-demo__preview {
    align-items: center;
    aspect-ratio: var(--s26-image-ratio);
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    display: flex;
    min-height: 0;
    overflow: hidden;
    width: 100%;
}

.live-demo__preview img {
    display: block;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
}

.article-2026 .highlight {
    background: var(--s26-code-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.16);
    margin: 1.4em auto 2em auto;
    max-width: var(--s26-block-max);
    overflow: hidden;
    position: relative;
    width: min(100%, var(--s26-block-max));
}

.striped-2026-page .box.post.post-excerpt header > div,
.striped-2026-page .box.post.post-excerpt header .card-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.42em;
    margin-top: 0.7em;
}

.striped-2026-page .card-chip,
.striped-2026-page .box.post.post-excerpt header .folder,
.striped-2026-page .box.post.post-excerpt header .tag a {
    background: #f3f5f7;
    border: 1px solid rgba(30, 38, 48, 0.08);
    border-radius: 999px;
    color: #4e5b68 !important;
    display: inline-flex;
    font-size: 0.74em;
    font-weight: 700;
    gap: 0.4em;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 0.42em 0.72em;
    text-decoration: none !important;
}

.striped-2026-page .card-chip--folder,
.striped-2026-page .box.post.post-excerpt header .folder {
    background: rgba(var(--s26-brand-rgb), 0.1);
    border-color: rgba(var(--s26-brand-rgb), 0.22);
    color: var(--s26-brand) !important;
}

.striped-2026-page .card-chip:hover,
.striped-2026-page .box.post.post-excerpt header .folder:hover,
.striped-2026-page .box.post.post-excerpt header .tag a:hover {
    border-color: rgba(var(--s26-brand-rgb), 0.4);
    color: #9f394f !important;
}

.striped-2026-page .box.post.post-excerpt header > div > i,
.striped-2026-page .box.post.post-excerpt header > div > .fa {
    display: none;
}

.striped-2026-page .card-chip i,
.striped-2026-page .card-chip .fa {
    display: inline-block;
    font-size: 0.9em;
    line-height: 1;
}

.striped-2026-page .folder-kicker {
    color: var(--s26-muted);
    font-family: monospace;
    font-size: 0.74em;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 0 0 1.15em 0;
    text-transform: uppercase;
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) {
    align-items: start;
    background: #fff;
    border: var(--s26-card-border);
    border-radius: var(--s26-card-radius);
    box-shadow: var(--s26-card-shadow);
    margin: 0 0 1.75em 0;
    overflow: hidden;
    padding: 0 0 1.15em 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026):hover {
    border-color: rgba(var(--s26-brand-rgb), 0.38);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > header,
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > .info {
    align-self: stretch;
    border-bottom: 0;
    margin: 0;
    min-height: 0;
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > header {
    padding: var(--s26-card-pad) 1.25em 0.85em !important;
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > .info {
    background: #f6eef1;
    border-radius: 0;
    min-height: 100%;
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > h2[align],
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > h2[style],
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > h3,
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > h4,
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > ul,
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > p:has(> br:only-child) {
    display: none;
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) p,
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) li {
    color: #46515f;
    font-size: 1.02em;
    line-height: 1.65;
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) p code,
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) li code {
    background: none;
    border: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.striped-2026-page.listing-2026 .card-media {
    aspect-ratio: var(--s26-image-ratio);
    background: #f3f5f7;
    border: 1px solid var(--s26-border);
    border-radius: 10px;
    grid-column: 2;
    margin: 0 1.25em 1em;
    overflow: hidden;
}

.striped-2026-page.listing-2026 .card-media a,
.striped-2026-page.listing-2026 .card-media img,
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) img.featured {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
    height: 100%;
    margin: 0;
    max-height: none;
    max-width: none;
    object-fit: contain;
    width: 100% !important;
}

.striped-2026-page.listing-2026 .card-dek {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    grid-column: 2;
    line-clamp: 3;
    margin: 0 1.25em 0.85em;
    overflow: hidden;
}

.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > p:not(.card-dek),
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > p[align],
.striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > a[rel="bookmark"] + p[align="center"] {
    display: none;
}

.striped-2026-page .card-more {
    grid-column: 2;
    margin: 0 1.25em;
}

.striped-2026-page .card-more a {
    color: var(--s26-brand);
    font-size: 0.92em;
    font-weight: 700;
    text-decoration: none;
}

.striped-2026-page .card-more a:after {
    content: ' →';
}

.striped-2026-page .card-more a:hover {
    color: #9f394f;
}

.striped-2026-page .content-card--empty {
    background: #fff;
    border: var(--s26-card-border);
    border-radius: var(--s26-card-radius);
    box-shadow: var(--s26-card-shadow);
    color: var(--s26-muted);
    padding: 1.4em 1.25em;
}

.striped-2026-page .box.post img.featured {
    border: 1px solid var(--s26-border);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
    display: block;
    height: auto;
    margin: 0 auto 1.4em auto;
    max-height: 240px;
    max-width: min(520px, 92%);
    object-fit: contain;
    width: auto !important;
}

.striped-2026-page.article-detail-2026 .box.post.post-excerpt:not(.article-2026) img {
    border-radius: 14px;
    height: auto;
    max-height: none;
    max-width: min(100%, var(--s26-figure-max));
    width: 100%;
}

.article-2026 .highlight:before {
    background: #161b22;
    border-bottom: 1px solid rgba(var(--s26-brand-rgb), 0.35);
    color: #c9d1d9;
    content: "code";
    display: block;
    font-family: monospace;
    font-size: 0.78em;
    letter-spacing: 0.08em;
    padding: 0.65em 1em;
    text-transform: uppercase;
}

.article-2026 .highlight pre {
    background: transparent;
    color: #d6deeb;
    margin: 0;
    max-height: clamp(16rem, 52vh, 32.5rem);
    overflow: auto;
    padding: clamp(0.9em, 2vw, 1.2em);
}

.article-2026 .highlight code {
    color: inherit;
    font-family: monospace;
    font-size: 0.9em;
    line-height: 1.72;
}

.article-2026 .highlight .c,
.article-2026 .highlight .c1,
.article-2026 .highlight .cm,
.article-2026 .highlight .cs {
    color: #8b949e;
}

.article-2026 .highlight .k,
.article-2026 .highlight .kc,
.article-2026 .highlight .kd,
.article-2026 .highlight .kn,
.article-2026 .highlight .kr,
.article-2026 .highlight .ow {
    color: #ff7b72;
}

.article-2026 .highlight .s,
.article-2026 .highlight .s1,
.article-2026 .highlight .s2,
.article-2026 .highlight .sd {
    color: #a5d6ff;
}

.article-2026 .highlight .n,
.article-2026 .highlight .na,
.article-2026 .highlight .nb,
.article-2026 .highlight .nc,
.article-2026 .highlight .nf,
.article-2026 .highlight .nn,
.article-2026 .highlight .nv {
    color: #d2a8ff;
}

.article-2026 .highlight .m,
.article-2026 .highlight .mi,
.article-2026 .highlight .mf,
.article-2026 .highlight .bp {
    color: #79c0ff;
}

.article-2026 .highlight .o,
.article-2026 .highlight .p {
    color: #c9d1d9;
}

.article-next,
.article-tags {
    border-top: 1px solid var(--s26-border);
    margin-top: 2.5em;
    padding-top: 1.5em;
}

.article-2026 > .comments-block {
    border-top: 1px solid var(--s26-border);
    margin-inline: auto;
    margin-top: 2.75em;
    max-width: none;
    padding-top: 2em;
    width: 100%;
}

.comments-block > .article-c__label,
.comments-block > h3,
.comments-block > p {
    margin-inline: auto;
    max-width: var(--s26-body-max);
    width: 100%;
}

.comments-block > .article-c__label {
    margin-top: 0;
}

.comments-block #disqus_thread {
    margin-inline: auto;
    margin-top: 1.25em;
    max-width: var(--s26-block-max);
    min-height: 12rem;
    width: min(100%, var(--s26-block-max));
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65em;
}

.article-tags .section-label {
    flex: 0 0 100%;
    margin-bottom: 0.25em;
}

.article-tags a {
    background: #eef2f5;
    border: 1px solid rgba(30, 38, 48, 0.08);
    border-radius: 999px;
    color: #46515f;
    font-size: 0.84em;
    line-height: 1;
    padding: 0.62em 0.82em;
    text-decoration: none;
}

.article-tags a:hover {
    background: rgba(var(--s26-brand-rgb), 0.09);
    border-color: rgba(var(--s26-brand-rgb), 0.34);
    color: #9f394f;
}

.comments-block h3 {
    border: 0;
    margin-top: 0;
    padding-top: 0;
}

@media screen and (max-width: 1199px) {
    .striped-2026-page #sidebar.sidebar-2026 {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        padding: 28px 24px calc(64px + env(safe-area-inset-bottom, 0px)) 24px;
        width: 300px;
    }

    .striped-2026-page #sidebar.sidebar-2026 .sidebar-nav {
        flex: 0 0 auto;
        overflow: visible;
    }

    .striped-2026-page #sidebar.sidebar-2026 {
        -moz-transform: translateX(-300px);
        -webkit-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        transform: translateX(-300px);
    }

    .striped-2026-page.sidebar-visible #content,
    .striped-2026-page.sidebar-visible #titleBar {
        -moz-transform: translateX(300px);
        -webkit-transform: translateX(300px);
        -ms-transform: translateX(300px);
        transform: translateX(300px);
    }

    .striped-2026-page.sidebar-visible #sidebar.sidebar-2026 {
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .article-c {
        scroll-margin-top: calc(44px + 1.25em);
    }

    .live-demo {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .striped-2026-page #titleBar {
        display: block;
    }

    .striped-2026-page #content {
        margin-left: 0;
        margin-top: 44px;
        padding-inline: var(--s26-page-pad);
        width: 100%;
    }

    .striped-2026-page.listing-2026 {
        --s26-card-pad: 0.9em 1em;
    }

    .striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > header {
        padding: 0.9em 1em 0.75em !important;
    }

    .striped-2026-page.listing-2026 .card-media,
    .striped-2026-page.listing-2026 .card-dek,
    .striped-2026-page.listing-2026 .card-more {
        margin-left: 1em;
        margin-right: 1em;
    }

    .striped-2026-page #sidebar.sidebar-2026 #copyright {
        flex: 0 0 auto;
        margin: 0;
        text-align: left;
    }
}

@media screen and (max-width: 736px) {
    .striped-2026-page #content {
        margin-top: 44px;
    }

    .striped-2026-page #sidebar.sidebar-2026 {
        min-height: 100vh;
        padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
        width: min(300px, 86vw);
    }

    .striped-2026-page #sidebar.sidebar-2026 #copyright {
        flex: 0 0 auto;
        margin: 0;
        text-align: left;
    }

    .striped-2026-page #sidebar.sidebar-2026 {
        -moz-transform: translateX(-86vw);
        -webkit-transform: translateX(-86vw);
        -ms-transform: translateX(-86vw);
        transform: translateX(-86vw);
    }

    .striped-2026-page.sidebar-visible #content,
    .striped-2026-page.sidebar-visible #titleBar {
        -moz-transform: translateX(min(300px, 86vw));
        -webkit-transform: translateX(min(300px, 86vw));
        -ms-transform: translateX(min(300px, 86vw));
        transform: translateX(min(300px, 86vw));
    }

    .striped-2026-page.listing-2026 {
        --s26-card-pad: 0.75em 0.85em;
    }

    .striped-2026-page.listing-2026 article.box.post.post-excerpt:not(.article-2026) > header {
        padding: 0.75em 0.85em 0.65em !important;
    }

    .striped-2026-page.listing-2026 .card-media,
    .striped-2026-page.listing-2026 .card-dek,
    .striped-2026-page.listing-2026 .card-more {
        margin-left: 0.85em;
        margin-right: 0.85em;
    }

    .striped-2026-page .box.post > .info .date {
        font-size: 1em;
    }

    .striped-2026-page .box.post > .info .date .day {
        font-size: 1.28em;
    }

    .article-2026 .article-meta-strip span {
        width: 100%;
    }

    .article-figure img,
    .article-2026 p[align="center"] img {
        border-radius: 12px;
    }

    .live-demo {
        border-radius: 14px;
        padding: 1.1em;
    }

    .live-demo__actions {
        align-items: stretch;
        flex-direction: column;
    }
}
