    /* ═══════════════════════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════════════════════ */
    :root {
        --bg: #0a0a0b;
        --bg2: #111113;
        --bg3: #18181c;
        --surface: #1e1e24;
        --surface2: #26262e;
        --border: rgba(255, 255, 255, 0.07);
        --border2: rgba(255, 255, 255, 0.13);
        --text: #f0ede8;
        --text2: #a09a90;
        --text3: #6b6560;
        --accent: #e8c547;
        --accent2: #d4a843;
        --accent-glow: rgba(232, 197, 71, 0.15);

        --radius: 5px;
        --radius-lg: 11px;
        --font-display: 'Playfair Display', Georgia, serif;
        --font-body: 'DM Sans', system-ui, sans-serif;
        --font-mono: 'DM Mono', 'Courier New', monospace;
        --max-w: 1280px;
        --trans: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ═══════════════════════════════════════════════════════
       RESET
    ═══════════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--font-body);
        line-height: 1.65;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    ul {
        list-style: none;
    }

    button {
        cursor: pointer;
        border: none;
        background: none;
        font-family: inherit;
        color: inherit;
    }

    img,
    svg {
        display: block;
        max-width: 100%;
    }

    [x-cloak] {
        display: none !important;
    }

    /* Grain */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 9998;
        pointer-events: none;
        opacity: .35;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    }

    ::-webkit-scrollbar {
        width: 5px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--surface2);
        border-radius: 3px;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(14px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* ═══════════════════════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════════════════════ */
    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ═══════════════════════════════════════════════════════
       PROGRESS BAR
    ═══════════════════════════════════════════════════════ */
    .progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 200;
        height: 3px;
        background: var(--ch);
        box-shadow: 0 0 10px color-mix(in srgb, var(--ch) 40%, transparent);
        pointer-events: none;
        transition: width .1s linear;
    }

    /* ═══════════════════════════════════════════════════════
       TOP BAR
    ═══════════════════════════════════════════════════════ */
    .topbar {
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        padding: 7px 0;
    }

    .topbar__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .topbar__date {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text3);
    }

    .topbar__channels {
        display: flex;
        gap: 16px;
    }

    .topbar__channels a {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .09em;
        color: var(--text3);
        transition: color var(--trans);
    }

    .topbar__channels a:hover,
    .topbar__channels a.active {
        color: var(--accent);
    }

    /* ═══════════════════════════════════════════════════════
       HEADER
    ═══════════════════════════════════════════════════════ */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(10, 10, 11, .94);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
    }

    .site-nav {
        display: flex;
        align-items: center;
        gap: 16px;
        height: 64px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .logo__icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 900;
        color: var(--bg);
        box-shadow: 0 0 18px var(--accent-glow);
    }

    .logo__text {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }

    .logo__name {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 700;
    }

    .logo__sub {
        font-size: 10px;
        color: var(--text3);
        text-transform: uppercase;
        letter-spacing: .14em;
        margin-top: 2px;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .icon-btn {
        width: 34px;
        height: 34px;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        background: var(--surface);
        color: var(--text2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        transition: all var(--trans);
    }

    .icon-btn:hover {
        border-color: var(--border2);
        color: var(--text);
    }

    .btn-subscribe-sm {
        padding: 7px 14px;
        border-radius: var(--radius);
        border: 1px solid rgba(232, 197, 71, .3);
        background: var(--accent-glow);
        color: var(--accent);
        font-size: 13px;
        font-weight: 700;
        transition: all var(--trans);
    }

    .btn-subscribe-sm:hover {
        background: var(--accent);
        color: var(--bg);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text2);
        border-radius: 2px;
    }

    /* Mobile drawer */
    .mobile-backdrop {
        position: fixed;
        inset: 0;
        z-index: 140;
        background: rgba(0, 0, 0, .6);
        backdrop-filter: blur(4px);
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 150;
        width: 275px;
        background: var(--bg2);
        border-left: 1px solid var(--border);
        padding: 60px 16px 24px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-drawer__close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--surface);
        color: var(--text2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .mobile-nav-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 13px;
        border-radius: var(--radius);
        font-size: 14px;
        font-weight: 500;
        color: var(--text2);
        transition: all var(--trans);
    }

    .mobile-nav-item:hover {
        background: var(--surface);
        color: var(--text);
    }

    .mobile-nav-item .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .mobile-divider {
        height: 1px;
        background: var(--border);
        margin: 6px 0;
    }

    /* ═══════════════════════════════════════════════════════
       CHANNEL HERO
    ═══════════════════════════════════════════════════════ */
    .ch-hero {
        padding: 60px 0 40px;
        border-bottom: 1px solid var(--border);
        background: linear-gradient(180deg, color-mix(in srgb, var(--ch) 5%, var(--bg)) 0%, var(--bg) 100%);
    }

    .ch-hero__inner {
        max-width: 740px;
    }

    .ch-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 7px 16px;
        border-radius: 100px;
        background: var(--ch-bg);
        border: 1px solid var(--ch-border);
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .12em;
        color: var(--ch);
        margin-bottom: 24px;
    }

    .ch-badge__dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--ch);
        box-shadow: 0 0 8px var(--ch);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .5;
            transform: scale(.8);
        }
    }

    .ch-title {
        font-family: var(--font-display);
        font-size: clamp(36px, 5vw, 60px);
        font-weight: 900;
        line-height: 1.06;
        letter-spacing: -2px;
        color: var(--text);
        margin-bottom: 18px;
    }

    .ch-title em {
        font-style: italic;
        color: var(--ch);
    }

    .ch-tagline {
        font-size: 17px;
        color: var(--text2);
        line-height: 1.7;
        font-weight: 300;
        margin-bottom: 36px;
        max-width: 600px;
    }

    .ch-stats {
        display: flex;
        gap: 32px;
        flex-wrap: wrap;
    }

    .ch-stats__item {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .ch-stats__num {
        font-family: var(--font-display);
        font-size: 26px;
        font-weight: 700;
        color: var(--text);
    }

    .ch-stats__item span:last-child {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text3);
        text-transform: uppercase;
        letter-spacing: .09em;
    }

    /* ═══════════════════════════════════════════════════════
       TOPIC TABS STRIP
    ═══════════════════════════════════════════════════════ */
    .ch-tabs {
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 64px;
        z-index: 90;
    }

    .ch-tabs__inner {
        display: flex;
        gap: 4px;
        padding: 10px 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ch-tabs__inner::-webkit-scrollbar {
        display: none;
    }

    .ch-tab {
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text2);
        transition: all var(--trans);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .ch-tab:hover {
        color: var(--text);
        background: var(--surface);
    }

    .ch-tab.active {
        background: var(--ch-bg);
        border: 1px solid var(--ch-border);
        color: var(--ch);
    }

    .ch-tab__count {
        font-family: var(--font-mono);
        font-size: 10px;
        margin-left: 5px;
        opacity: .7;
    }

    /* ═══════════════════════════════════════════════════════
       ARCHIVE LAYOUT  (main + sidebar)
    ═══════════════════════════════════════════════════════ */
    .archive-layout {
        padding: 36px 0 80px;
    }

    .archive-grid {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
        align-items: start;
    }

    /* ═══════════════════════════════════════════════════════
       FEATURED BANNER
    ═══════════════════════════════════════════════════════ */
    .featured-banner {
        display: flex;
        gap: 0;
        background: var(--surface);
        border: 1px solid var(--ch-border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-bottom: 28px;
        position: relative;
    }

    .featured-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, color-mix(in srgb, var(--ch) 6%, transparent) 0%, transparent 60%);
        pointer-events: none;
    }

    .featured-banner__body {
        padding: 28px 32px;
        flex: 1;
        min-width: 0;
    }

    .featured-banner__eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .featured-banner__star {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        flex-shrink: 0;
    }

    .featured-banner__label {
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: var(--ch);
    }

    .featured-banner__title {
        font-family: var(--font-display);
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 900;
        color: var(--text);
        line-height: 1.15;
        letter-spacing: -.5px;
        margin-bottom: 12px;
    }

    .featured-banner__title em {
        font-style: italic;
        color: var(--ch);
    }

    .featured-banner__excerpt {
        font-size: 14px;
        color: var(--text2);
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .featured-banner__meta {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-mono);
        font-size: 12px;
        color: var(--text3);
        flex-wrap: wrap;
    }

    .featured-banner__meta .dot {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--text3);
    }

    .featured-banner__image {
        width: 200px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 64px;
        background: linear-gradient(135deg, var(--bg3), var(--surface2));
        user-select: none;
    }

    .btn-read {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 11px 20px;
        background: var(--ch);
        color: var(--bg);
        border-radius: var(--radius);
        font-size: 13px;
        font-weight: 700;
        transition: all var(--trans);
    }

    .btn-read:hover {
        opacity: .88;
        transform: translateY(-1px);
    }

    /* ═══════════════════════════════════════════════════════
       FILTER BAR
    ═══════════════════════════════════════════════════════ */
    .filter-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 18px;
    }

    .search-field {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--surface);
        border: 1px solid var(--border2);
        border-radius: var(--radius);
        padding: 0 12px;
        flex: 1;
        min-width: 180px;
        height: 36px;
        transition: border-color var(--trans);
    }

    .search-field:focus-within {
        border-color: var(--ch);
    }

    .search-field svg {
        color: var(--text3);
        flex-shrink: 0;
    }

    .search-field input {
        background: none;
        border: none;
        outline: none;
        font-size: 14px;
        color: var(--text);
        width: 100%;
    }

    .search-field input::placeholder {
        color: var(--text3);
    }

    .sort-select {
        background: var(--surface);
        border: 1px solid var(--border2);
        border-radius: var(--radius);
        padding: 8px 12px;
        font-size: 13px;
        color: var(--text2);
        outline: none;
        cursor: pointer;
        transition: border-color var(--trans);
    }

    .sort-select:focus {
        border-color: var(--ch);
        color: var(--text);
    }

    .view-toggle {
        display: flex;
        gap: 3px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 3px;
    }

    .view-btn {
        width: 28px;
        height: 28px;
        border-radius: 3px;
        color: var(--text3);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--trans);
    }

    .view-btn.active {
        background: var(--ch-bg);
        color: var(--ch);
    }

    .filter-bar__results {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text3);
        white-space: nowrap;
    }

    /* ═══════════════════════════════════════════════════════
       TOPIC STRIP (inline pills)
    ═══════════════════════════════════════════════════════ */
    .topic-strip {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .topic-pill {
        padding: 5px 12px;
        border-radius: 100px;
        border: 1px solid var(--border);
        background: var(--surface);
        font-size: 12px;
        font-weight: 600;
        color: var(--text2);
        transition: all var(--trans);
    }

    .topic-pill:hover {
        border-color: var(--border2);
        color: var(--text);
    }

    .topic-pill.active,
    .topic-pill--all.active {
        background: var(--ch-bg);
        border-color: var(--ch-border);
        color: var(--ch);
    }

    .topic-pill__count {
        font-family: var(--font-mono);
        font-size: 10px;
        margin-left: 4px;
        opacity: .7;
    }

    .clear-chip {
        padding: 5px 12px;
        border-radius: 100px;
        border: 1px solid var(--border);
        background: var(--surface);
        font-size: 12px;
        font-weight: 600;
        color: var(--text3);
        transition: all var(--trans);
    }

    .clear-chip:hover {
        border-color: var(--news, #ef4444);
        color: var(--news, #ef4444);
    }

    /* ═══════════════════════════════════════════════════════
       POST CARDS — GRID VIEW
    ═══════════════════════════════════════════════════════ */
    .posts-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: all var(--trans);
        animation: fadeUp .35s ease both;
    }

    .card:hover {
        border-color: var(--border2);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
    }

    .card__thumb {
        aspect-ratio: 16/9;
        background: var(--bg3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        position: relative;
        overflow: hidden;
    }

    .card__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card__tag {
        position: absolute;
        top: 10px;
        left: 10px;
        font-family: var(--font-mono);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        padding: 4px 10px;
        border-radius: 100px;
    }

    .card__body {
        padding: 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .card__meta {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text3);
        display: flex;
        gap: 6px;
        align-items: center;
        flex-wrap: wrap;
    }

    .card__meta .dot {
        width: 2px;
        height: 2px;
        border-radius: 50%;
        background: var(--text3);
    }

    .card__title {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
        line-height: 1.3;
    }

    .card__title a:hover {
        color: var(--accent);
    }

    .card__excerpt {
        font-size: 13px;
        color: var(--text2);
        line-height: 1.6;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .author {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .author__avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--surface2);
        border: 1px solid var(--ch-border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        color: var(--ch);
        flex-shrink: 0;
    }

    .author__name {
        font-size: 12px;
        font-weight: 600;
        color: var(--text2);
    }

    .author__role {
        font-size: 10px;
        color: var(--text3);
        font-family: var(--font-mono);
    }

    .card__read-time {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text3);
    }

    /* ═══════════════════════════════════════════════════════
       POST CARDS — LIST VIEW
    ═══════════════════════════════════════════════════════ */
    .posts-list {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .list-card {
        display: flex;
        gap: 16px;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
        align-items: flex-start;
        animation: fadeUp .35s ease both;
        transition: all var(--trans);
    }

    .list-card:hover .list-card__title a {
        color: var(--ch);
    }

    .list-card__thumb {
        width: 72px;
        height: 72px;
        border-radius: var(--radius);
        background: var(--surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .list-card__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .list-card__body {
        flex: 1;
        min-width: 0;
    }

    .list-card__topic {
        font-family: var(--font-mono);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .09em;
        color: var(--ch);
        margin-bottom: 5px;
    }

    .list-card__title {
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 700;
        color: var(--text);
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .list-card__title a {
        transition: color var(--trans);
    }

    .list-card__excerpt {
        font-size: 13px;
        color: var(--text2);
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .list-card__meta {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text3);
        display: flex;
        gap: 6px;
        align-items: center;
        flex-wrap: wrap;
    }

    .list-card__meta .dot {
        width: 2px;
        height: 2px;
        border-radius: 50%;
        background: var(--text3);
    }

    /* ═══════════════════════════════════════════════════════
       NO RESULTS / LOAD MORE
    ═══════════════════════════════════════════════════════ */
    .no-results {
        text-align: center;
        padding: 56px 24px;
    }

    .no-results__icon {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .no-results__title {
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 8px;
    }

    .no-results__text {
        font-size: 14px;
        color: var(--text2);
    }

    .load-more-row {
        margin-top: 32px;
        text-align: center;
    }

    .btn-load-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        border-radius: var(--radius);
        background: var(--surface);
        border: 1px solid var(--border2);
        color: var(--text2);
        font-size: 14px;
        font-weight: 600;
        transition: all var(--trans);
    }

    .btn-load-more:hover:not(:disabled) {
        border-color: var(--ch);
        color: var(--ch);
    }

    .btn-load-more:disabled {
        opacity: .5;
        cursor: not-allowed;
    }

    .spinner {
        width: 14px;
        height: 14px;
        border: 2px solid var(--border2);
        border-top-color: var(--accent);
        border-radius: 50%;
        animation: spin .7s linear infinite;
    }

    /* ═══════════════════════════════════════════════════════
       RIGHT SIDEBAR
    ═══════════════════════════════════════════════════════ */
    .arch-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: sticky;
        top: 120px;
    }

    .arch-widget {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .arch-widget__hd {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .12em;
        color: var(--text3);
    }

    .arch-widget__bd {
        padding: 12px 16px;
    }

    /* Topic stat bars */
    .topic-stat {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
        cursor: pointer;
        transition: all var(--trans);
    }

    .topic-stat:last-child {
        border-bottom: none;
    }

    .topic-stat:hover .topic-stat__name {
        color: var(--ch);
    }

    .topic-stat__name {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 13px;
        color: var(--text2);
        width: 120px;
        flex-shrink: 0;
        transition: color var(--trans);
    }

    .topic-stat__bar-wrap {
        flex: 1;
        height: 4px;
        background: var(--surface2);
        border-radius: 2px;
        overflow: hidden;
    }

    .topic-stat__bar {
        height: 100%;
        background: var(--ch);
        border-radius: 2px;
        transition: width .4s ease;
    }

    .topic-stat__count {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text3);
        width: 28px;
        text-align: right;
        flex-shrink: 0;
    }

    /* Newsletter mini */
    .newsletter-mini-ch {
        background: linear-gradient(135deg, var(--surface) 0%, var(--bg3) 100%);
        border: 1px solid rgba(232, 197, 71, .15);
        border-radius: var(--radius-lg);
        padding: 20px;
    }

    .newsletter-mini-ch h4 {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 7px;
    }

    .newsletter-mini-ch p {
        font-size: 13px;
        color: var(--text2);
        margin-bottom: 14px;
        line-height: 1.55;
    }

    .form-input {
        width: 100%;
        background: var(--bg);
        border: 1px solid var(--border2);
        border-radius: var(--radius);
        padding: 10px 12px;
        color: var(--text);
        font-size: 14px;
        outline: none;
        transition: border-color var(--trans);
        display: block;
    }

    .form-input:focus {
        border-color: var(--accent);
    }

    .form-input::placeholder {
        color: var(--text3);
    }

    .btn-subscribe-ch {
        width: 100%;
        padding: 10px;
        border-radius: var(--radius);
        background: var(--accent);
        color: var(--bg);
        font-size: 13px;
        font-weight: 700;
        transition: all var(--trans);
        margin-top: 8px;
        display: block;
    }

    .btn-subscribe-ch:hover {
        background: var(--accent2);
    }

    /* Author item */
    .author-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
    }

    .author-item:last-child {
        border-bottom: none;
    }

    .author-item__av {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--surface2);
        border: 1px solid var(--ch-border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        color: var(--ch);
        flex-shrink: 0;
    }

    .author-item__name {
        font-size: 13px;
        font-weight: 600;
        color: var(--text);
    }

    .author-item__count {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text3);
    }

    /* Tags cloud */
    .tags-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .tag-pill {
        padding: 5px 11px;
        border-radius: 100px;
        border: 1px solid var(--border);
        background: var(--bg3);
        font-size: 12px;
        font-weight: 600;
        color: var(--text2);
        transition: all var(--trans);
    }

    .tag-pill:hover {
        border-color: var(--border2);
        color: var(--text);
    }

    .tag-pill.active {
        background: var(--ch-bg);
        border-color: var(--ch-border);
        color: var(--ch);
    }

    /* ═══════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════ */
    footer {
        background: var(--bg2);
        border-top: 1px solid var(--border);
    }

    .footer-compact {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 22px 0;
        flex-wrap: wrap;
    }

    .footer-compact p {
        font-size: 13px;
        color: var(--text3);
    }

    .footer-legal {
        display: flex;
        gap: 18px;
    }

    .footer-legal a {
        font-size: 13px;
        color: var(--text3);
        transition: color var(--trans);
    }

    .footer-legal a:hover {
        color: var(--text2);
    }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════ */
    @media (max-width:1024px) {
        .archive-grid {
            grid-template-columns: 1fr;
        }

        .arch-sidebar {
            position: static;
        }

        .featured-banner__image {
            width: 140px;
            font-size: 48px;
        }
    }

    @media (max-width:768px) {
        .posts-grid-2 {
            grid-template-columns: 1fr;
        }

        .topbar__channels {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .ch-title {
            font-size: 32px;
        }

        .featured-banner {
            flex-direction: column;
        }

        .featured-banner__image {
            width: 100%;
            height: 120px;
        }
    }

    @media (max-width:480px) {
        .container {
            padding: 0 16px;
        }

        .ch-hero {
            padding: 40px 0 28px;
        }
    }
