/* yesu.dev styles */

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

:root {
    --bg: #0a0a10;
    --bg-2: #0d0d15;
    --surface: #10101c;
    --surface-2: #16162a;
    --surface-3: #1c1c34;
    --border: #1a1a2a;
    --border-2: #252540;
    --border-3: #2f2f50;
    --green: #00e57a;
    --green-soft: #00b864;
    --green-dim: rgba(0,229,122,0.10);
    --green-glow: rgba(0,229,122,0.18);
    --blue: #5aa9ff;
    --blue-dim: rgba(90,169,255,0.10);
    --blue-glow: rgba(90,169,255,0.18);
    --orange: #ff9a4d;
    --orange-dim: rgba(255,154,77,0.10);
    --orange-glow: rgba(255,154,77,0.18);
    --red: #ff4866;
    --red-dim: rgba(255,72,102,0.10);
    --red-glow: rgba(255,72,102,0.18);
    --purple: #bd8aff;
    --purple-dim: rgba(189,138,255,0.10);
    --text: #ecedf5;
    --text-dim: #b4b6c8;
    --muted: #666880;
    --muted-2: #3a3c52;
    --muted-3: #26283a;
    --mono: 'JetBrains Mono',ui-monospace,Menlo,monospace;
    --sans: 'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
    --serif: 'Instrument Serif',Georgia,serif;
    --ease: cubic-bezier(0.22,1,0.36,1);
    --ease-2: cubic-bezier(0.16,1,0.3,1);
}

html {
    scroll-behavior: smooth;
}

html, body {
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-feature-settings: "ss01","cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
}

    /* Subtle grain + scanlines */
    body::after {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 998;
        opacity: 0.4;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    }

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 999;
        background: repeating-linear-gradient(0deg,transparent 0px,transparent 2px,rgba(0,0,0,0.06) 2px,rgba(0,0,0,0.06) 3px);
        mix-blend-mode: multiply;
    }

/* Ambient cursor glow (easter egg #1) */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(0,229,122,0.05) 0%,transparent 60%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%,-50%);
    transition: opacity 0.4s var(--ease);
    opacity: 0;
    will-change: transform;
    mix-blend-mode: screen;
}

    .cursor-glow.active {
        opacity: 1;
    }

::selection {
    background: var(--green-dim);
    color: var(--green);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

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

    ::-webkit-scrollbar-thumb:hover {
        background: var(--border-3);
    }

/* === NAV === */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid var(--border);
    background: rgba(10,10,16,0.78);
    backdrop-filter: saturate(140%) blur(20px);
    -webkit-backdrop-filter: saturate(140%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--green);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    transition: opacity 0.2s var(--ease);
}

    .nav-logo:hover {
        opacity: 0.85;
    }

    .nav-logo .dim {
        color: var(--muted);
    }

.nav-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    margin-left: 10px;
    box-shadow: 0 0 0 0 var(--green-glow);
    animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--green-glow);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
        box-shadow: 0 0 0 8px transparent;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

    .nav-links a {
        font-size: 13px;
        color: var(--text-dim);
        text-decoration: none;
        font-family: var(--mono);
        font-weight: 400;
        cursor: pointer;
        letter-spacing: 0.01em;
        position: relative;
        padding: 4px 0;
        transition: color 0.2s var(--ease);
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            height: 1px;
            width: 0;
            transition: width 0.3s var(--ease);
        }

        .nav-links a[data-page="plugins"]:hover, .nav-links a[data-page="plugins"].active {
            color: var(--blue);
        }

            .nav-links a[data-page="plugins"]:hover::after, .nav-links a[data-page="plugins"].active::after {
                width: 100%;
                background: var(--blue);
            }

        .nav-links a[data-page="recipes"]:hover, .nav-links a[data-page="recipes"].active {
            color: var(--orange);
        }

            .nav-links a[data-page="recipes"]:hover::after, .nav-links a[data-page="recipes"].active::after {
                width: 100%;
                background: var(--orange);
            }

        .nav-links a[data-page="blog"]:hover, .nav-links a[data-page="blog"].active {
            color: var(--red);
        }

            .nav-links a[data-page="blog"]:hover::after, .nav-links a[data-page="blog"].active::after {
                width: 100%;
                background: var(--red);
            }

        .nav-links a[data-page="home"]:hover, .nav-links a[data-page="home"].active {
            color: var(--green);
        }

            .nav-links a[data-page="home"]:hover::after, .nav-links a[data-page="home"].active::after {
                width: 100%;
                background: var(--green);
            }

.page, .post-page {
    display: none;
    min-height: calc(100vh - 65px);
    flex-direction: column;
    position: relative;
    z-index: 2;
}

    .page.active, .post-page.active {
        display: flex;
        animation: fadein 0.45s var(--ease-2);
    }

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(8px);
        filter: blur(4px);
    }

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

/* === HERO === */
.hero {
    padding: 6rem 2.5rem 5rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,rgba(0,229,122,0.06) 0%,transparent 65%);
    pointer-events: none;
    animation: drift 18s var(--ease) infinite alternate;
}

.hero-glow-2 {
    position: absolute;
    bottom: -300px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,rgba(255,72,102,0.04) 0%,transparent 65%);
    pointer-events: none;
    animation: drift 22s var(--ease) infinite alternate-reverse;
}

@keyframes drift {
    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(60px,-40px);
    }
}

.hero-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--green);
    letter-spacing: 0.18em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.45rem 0.875rem;
    background: var(--green-dim);
    border: 1px solid rgba(0,229,122,0.2);
    border-radius: 999px;
    font-weight: 500;
}

    .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 8px var(--green);
    }

.hero h1 {
    font-size: clamp(48px,8vw,92px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin-bottom: 2rem;
    max-width: 1100px;
}

    .hero h1 em {
        color: var(--green);
        font-style: italic;
        font-family: var(--serif);
        font-weight: 400;
        letter-spacing: -0.02em;
    }

.hero-sub {
    font-size: clamp(16px,1.6vw,19px);
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 620px;
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero-meta {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    padding: 0.25rem 0;
    transition: transform 0.3s var(--ease);
}

    .hero-stat:hover {
        transform: translateY(-3px);
    }

.hero-stat-num {
    font-family: var(--mono);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    transition: text-shadow 0.3s var(--ease);
}

.hero-stat:hover .hero-stat-num {
    text-shadow: 0 0 20px currentColor;
}

.hero-stat-num.blue {
    color: var(--blue);
}

.hero-stat-num.orange {
    color: var(--orange);
}

.hero-stat-num.red {
    color: var(--red);
}

.hero-stat-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

.cursor {
    display: inline-block;
    width: 4px;
    height: 0.8em;
    background: var(--green);
    animation: blink 1.1s steps(2,end) infinite;
    vertical-align: -0.06em;
    margin-left: 6px;
    border-radius: 1px;
    box-shadow: 0 0 12px var(--green);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* === SECTIONS === */
.sections {
    padding: 5rem 2.5rem 4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.section {
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    font-weight: 500;
}

.section-title-main {
    font-family: var(--sans);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    text-transform: none;
    letter-spacing: -0.025em;
}

.section-title .sl {
    color: var(--muted-2);
    font-weight: 400;
}

.section-title.blue {
    color: var(--blue);
}

.section-title.orange {
    color: var(--orange);
}

.section-title.red {
    color: var(--red);
}

.section-link {
    font-family: var(--mono);
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0;
    transition: gap 0.2s var(--ease),opacity 0.2s var(--ease);
}

    .section-link:hover {
        gap: 10px;
        opacity: 0.8;
    }

    .section-link.blue {
        color: var(--blue);
    }

    .section-link.orange {
        color: var(--orange);
    }

    .section-link.red {
        color: var(--red);
    }

/* === CARDS === */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 1.25rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    cursor: pointer;
    transition: border-color 0.3s var(--ease),background 0.3s var(--ease),transform 0.4s var(--ease),box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%),rgba(255,255,255,0.04),transparent 40%);
        opacity: 0;
        transition: opacity 0.3s var(--ease);
        pointer-events: none;
    }

    .card:hover::before {
        opacity: 1;
    }

    .card.blue:hover {
        border-color: rgba(90,169,255,0.3);
        background: var(--surface-2);
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(90,169,255,0.08),0 0 0 1px rgba(90,169,255,0.1);
    }

    .card.orange:hover {
        border-color: rgba(255,154,77,0.3);
        background: var(--surface-2);
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(255,154,77,0.08),0 0 0 1px rgba(255,154,77,0.1);
    }

    .card.red:hover {
        border-color: rgba(255,72,102,0.3);
        background: var(--surface-2);
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(255,72,102,0.08),0 0 0 1px rgba(255,72,102,0.1);
    }

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 11px;
    font-family: var(--mono);
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
}

    .card-icon.blue {
        background: var(--blue-dim);
        color: var(--blue);
        box-shadow: inset 0 0 0 1px rgba(90,169,255,0.2);
    }

    .card-icon.orange {
        background: var(--orange-dim);
        color: var(--orange);
        box-shadow: inset 0 0 0 1px rgba(255,154,77,0.2);
    }

    .card-icon.red {
        background: var(--red-dim);
        color: var(--red);
        box-shadow: inset 0 0 0 1px rgba(255,72,102,0.2);
    }

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.card-motto {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 0.55rem;
    letter-spacing: 0.005em;
    line-height: 1.35;
}

.card-desc {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.7;
    font-weight: 400;
    flex: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.card-badge {
    font-family: var(--mono);
    font-size: 10px;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

    .card-badge.blue {
        background: rgba(90,169,255,0.1);
        color: var(--blue);
        border: 1px solid rgba(90,169,255,0.2);
    }

    .card-badge.orange {
        background: rgba(255,154,77,0.1);
        color: var(--orange);
        border: 1px solid rgba(255,154,77,0.2);
    }

    .card-badge.red {
        background: rgba(255,72,102,0.1);
        color: var(--red);
        border: 1px solid rgba(255,72,102,0.2);
    }

    .card-badge.green {
        background: var(--green-dim);
        color: var(--green);
        border: 1px solid rgba(0,229,122,0.2);
    }

    .card-badge.ref {
        background: var(--blue-dim);
        color: var(--blue);
        border: 1px solid rgba(90,169,255,0.2);
    }

    .card-badge.qol {
        background: var(--purple-dim);
        color: var(--purple);
        border: 1px solid rgba(189,138,255,0.2);
    }

.card-arrow {
    color: var(--muted-2);
    font-size: 18px;
    transition: color 0.25s var(--ease),transform 0.3s var(--ease);
    font-family: var(--mono);
    font-weight: 300;
}

.card:hover .card-arrow {
    color: var(--text);
    transform: translate(4px,-4px);
}

/* === PAGE HERO === */
.page-hero {
    padding: 5rem 2.5rem 3rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.page-hero-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

    .page-hero-tag::before {
        content: '';
        width: 18px;
        height: 1px;
    }

    .page-hero-tag.blue {
        color: var(--blue);
    }

        .page-hero-tag.blue::before {
            background: var(--blue);
        }

    .page-hero-tag.orange {
        color: var(--orange);
    }

        .page-hero-tag.orange::before {
            background: var(--orange);
        }

    .page-hero-tag.red {
        color: var(--red);
    }

        .page-hero-tag.red::before {
            background: var(--red);
        }

.page-hero h2 {
    font-size: clamp(40px,5.5vw,64px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
}

    .page-hero h2 em {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        letter-spacing: -0.02em;
    }

.page-hero-desc {
    font-size: 17px;
    color: var(--text-dim);
    margin-top: 1.25rem;
    line-height: 1.65;
    max-width: 560px;
}

.page-hero-count {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--muted);
    align-self: flex-end;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .page-hero-count::before {
        content: '·';
        font-size: 18px;
        color: var(--muted-2);
    }

/* === PLUGIN GRID === */
.plugin-grid {
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(360px,1fr));
    gap: 1.5rem;
    flex: 1;
}

.plugin-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: border-color 0.3s var(--ease),background 0.3s var(--ease),transform 0.4s var(--ease),box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .plugin-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%),rgba(90,169,255,0.06),transparent 40%);
        opacity: 0;
        transition: opacity 0.3s var(--ease);
        pointer-events: none;
    }

    .plugin-card:hover::before {
        opacity: 1;
    }

    .plugin-card:hover {
        border-color: rgba(90,169,255,0.3);
        background: var(--surface-2);
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(90,169,255,0.08),0 0 0 1px rgba(90,169,255,0.1);
    }

    .plugin-card.dim {
        opacity: 0.4;
        pointer-events: none;
    }

.plugin-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.plugin-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--blue-dim);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(90,169,255,0.2);
}

    .plugin-card-icon.dim {
        background: var(--muted-3);
        color: var(--muted);
        box-shadow: inset 0 0 0 1px var(--border-2);
    }

.plugin-badge {
    font-family: var(--mono);
    font-size: 10px;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

    .plugin-badge.blue {
        background: rgba(90,169,255,0.1);
        color: var(--blue);
        border: 1px solid rgba(90,169,255,0.2);
    }

    .plugin-badge.soon {
        background: rgba(255,72,102,0.08);
        color: var(--red);
        border: 1px solid rgba(255,72,102,0.2);
    }

    .plugin-badge.tbd {
        background: transparent;
        color: var(--muted-2);
        border: 1px solid var(--muted-3);
    }

.plugin-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.plugin-card-motto {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 0.85rem;
    letter-spacing: 0.005em;
    line-height: 1.4;
}

.plugin-card-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

    .plugin-card-desc code {
        font-family: var(--mono);
        font-size: 12.5px;
        background: var(--surface-3);
        padding: 0.15rem 0.4rem;
        border-radius: 4px;
        color: var(--blue);
        border: 1px solid var(--border-2);
    }

.plugin-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    font-family: var(--mono);
    font-size: 10.5px;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    background: var(--surface-2);
    color: var(--text-dim);
    border: 1px solid var(--border-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.plugin-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.plugin-card-meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.plugin-card-link {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s var(--ease),opacity 0.2s var(--ease);
}

    .plugin-card-link:hover {
        gap: 10px;
        opacity: 0.8;
    }

    .plugin-card-link.dead {
        color: var(--muted-2);
        pointer-events: none;
    }

.plugin-card-actions {
    display: flex;
    gap: 0.5rem;
}

.plugin-action {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    padding: 0.45rem 0.875rem;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s var(--ease),border-color 0.2s var(--ease),color 0.2s var(--ease),gap 0.2s var(--ease);
    letter-spacing: 0.02em;
}

    .plugin-action.docs {
        color: var(--blue);
        background: var(--blue-dim);
        border: 1px solid rgba(90,169,255,0.25);
    }

        .plugin-action.docs:hover {
            background: rgba(90,169,255,0.15);
            border-color: rgba(90,169,255,0.45);
            gap: 9px;
        }

/* === RECIPE LIST === */
.recipe-list {
    padding: 2.5rem 2.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    max-width: 1100px;
    width: 100%;
    align-self: center;
}

.recipe-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    transition: border-color 0.3s var(--ease),background 0.3s var(--ease),transform 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* category hue (default: lava/orange); .cat-* classes override.
       --cat-hover-bg is surface-2 blended with ~7% of the category color. */
    --cat-color: var(--orange);
    --cat-border: rgba(255,154,77,0.22);
    --cat-hover-bg: #261f2c;
}

    .recipe-item.cat-fun {
        --cat-color: var(--green);
        --cat-border: rgba(0,229,122,0.22);
        --cat-hover-bg: #142430;
    }

    .recipe-item.cat-ref {
        --cat-color: var(--blue);
        --cat-border: rgba(90,169,255,0.22);
        --cat-hover-bg: #1b2039;
    }

    .recipe-item.cat-qol {
        --cat-color: var(--purple);
        --cat-border: rgba(189,138,255,0.22);
        --cat-hover-bg: #221e39;
    }

    .recipe-item.cat-sql {
        --cat-color: var(--red);
        --cat-border: rgba(255,72,102,0.22);
        --cat-hover-bg: #261a2e;
    }

    .recipe-item:hover {
        border-color: var(--cat-border);
        background: var(--cat-hover-bg);
    }

.recipe-item-left {
    flex: 1;
    min-width: 0;
}

.recipe-item-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.recipe-cat {
    font-family: var(--mono);
    font-size: 10px;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid;
}

    .recipe-cat.lava {
        background: var(--orange-dim);
        color: var(--orange);
        border-color: rgba(255,154,77,0.2);
    }

    .recipe-cat.fun {
        background: var(--green-dim);
        color: var(--green);
        border-color: rgba(0,229,122,0.2);
    }

    .recipe-cat.ref {
        background: var(--blue-dim);
        color: var(--blue);
        border-color: rgba(90,169,255,0.2);
    }

    .recipe-cat.qol {
        background: var(--purple-dim);
        color: var(--purple);
        border-color: rgba(189,138,255,0.2);
    }

    .recipe-cat.sql {
        background: rgba(255,72,102,0.08);
        color: var(--red);
        border-color: rgba(255,72,102,0.2);
    }

.recipe-difficulty {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
    font-weight: 500;
}

.recipe-item-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.recipe-item-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
}

.recipe-arrow {
    color: var(--muted-2);
    font-size: 20px;
    font-family: var(--mono);
    font-weight: 300;
    transition: color 0.25s var(--ease),transform 0.3s var(--ease);
    flex-shrink: 0;
}

.recipe-item:hover .recipe-arrow {
    color: var(--cat-color);
    transform: translate(3px,-3px);
}

/* === BLOG LIST === */
.blog-list {
    padding: 2.5rem 2.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex: 1;
    max-width: 900px;
    width: 100%;
    align-self: center;
}

.blog-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.875rem;
    cursor: pointer;
    transition: border-color 0.3s var(--ease),background 0.3s var(--ease),transform 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    /* tag hue (default: red); .tag-* classes override.
       --cat-hover-bg is surface-2 blended with ~7% of the tag color. */
    --cat-color: var(--red);
    --cat-border: rgba(255,72,102,0.22);
    --cat-hover-bg: #261a2e;
}

    .blog-item.tag-story {
        --cat-color: var(--green);
        --cat-border: rgba(0,229,122,0.22);
        --cat-hover-bg: #142430;
    }

    .blog-item.tag-musings {
        --cat-color: var(--blue);
        --cat-border: rgba(90,169,255,0.22);
        --cat-hover-bg: #1b2039;
    }

    .blog-item.tag-findings {
        --cat-color: var(--orange);
        --cat-border: rgba(255,154,77,0.22);
        --cat-hover-bg: #261f2c;
    }

    .blog-item:hover {
        border-color: var(--cat-border);
        background: var(--cat-hover-bg);
        transform: translateY(-2px);
    }

.blog-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    font-family: var(--mono);
    font-size: 10px;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid;
}

    .blog-tag.story {
        background: var(--green-dim);
        color: var(--green);
        border-color: rgba(0,229,122,0.2);
    }

    .blog-tag.musings {
        background: var(--blue-dim);
        color: var(--blue);
        border-color: rgba(90,169,255,0.2);
    }

    .blog-tag.findings {
        background: var(--orange-dim);
        color: var(--orange);
        border-color: rgba(255,154,77,0.2);
    }

.blog-item-date {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.blog-item-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.blog-item-excerpt {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

.blog-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.blog-item-readtime {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.blog-item-arrow {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--cat-color);
    letter-spacing: 0.04em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s var(--ease);
}

.blog-item:hover .blog-item-arrow {
    gap: 10px;
}

/* === POST PAGE === */
.post-nav {
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 900px;
    width: 100%;
    align-self: center;
}

.post-nav-back {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-dim);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    letter-spacing: 0.02em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s var(--ease),gap 0.2s var(--ease);
}

    .post-nav-back:hover {
        color: var(--red);
        gap: 10px;
    }

.post-nav-sep, .post-nav-crumb {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted-2);
}

.post-hero {
    padding: 4rem 2.5rem 3rem;
    border-bottom: 1px solid var(--border);
    max-width: 900px;
    width: 100%;
    align-self: center;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-date, .post-readtime {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.post-hero h1 {
    font-size: clamp(32px,5vw,52px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    max-width: 780px;
}

    .post-hero h1 em {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        letter-spacing: -0.015em;
    }

.post-body {
    padding: 3.5rem 2.5rem 5rem;
    flex: 1;
    max-width: 720px;
    width: 100%;
    align-self: center;
}

    .post-body p {
        font-size: 17px;
        color: var(--text-dim);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-weight: 400;
    }

        .post-body p strong {
            color: var(--text);
            font-weight: 600;
        }

    .post-body h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--text);
        letter-spacing: -0.025em;
        margin: 3rem 0 1.25rem;
        line-height: 1.25;
    }

.callout {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: 0 10px 10px 0;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    position: relative;
}

    .callout::before {
        content: '';
        position: absolute;
        top: 0;
        left: -3px;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg,var(--red),transparent);
        opacity: 0.5;
    }

    .callout p {
        margin-bottom: 0 !important;
        font-style: italic;
        color: var(--text);
    }

/* === FOOTER === */
footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    background: rgba(10,10,16,0.4);
}

.footer-left {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 500;
}

    .footer-left .online {
        color: var(--green);
        position: relative;
    }

        .footer-left .online::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--green);
            margin-right: 6px;
            vertical-align: 1px;
            box-shadow: 0 0 8px var(--green);
            animation: pulse 2.4s var(--ease) infinite;
        }

    .footer-left .dot {
        color: var(--muted-2);
        margin: 0 0.625rem;
    }

.footer-right {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 500;
}

    .footer-right span {
        color: var(--text-dim);
    }

/* === DOCS VIEWER === */
.docs-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    flex: 1;
    min-height: 0;
}

.docs-sidebar {
    border-right: 1px solid var(--border);
    background: var(--bg-2);
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 65px;
    align-self: start;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
}

.docs-back {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-dim);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    letter-spacing: 0.02em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s var(--ease),gap 0.2s var(--ease);
}

    .docs-back:hover {
        color: var(--blue);
        gap: 10px;
    }

.docs-pkg {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.docs-pkg-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.docs-pkg-motto {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.35;
    letter-spacing: 0.005em;
    margin-top: -0.1rem;
}

.docs-pkg-tag {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--blue);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

.docs-version-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.docs-section-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
}

.docs-version {
    background: var(--surface);
    border: 1px solid var(--border-2);
    color: var(--text);
    font-family: var(--mono);
    font-size: 12px;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s var(--ease);
}

    .docs-version:hover {
        border-color: var(--blue);
    }

.docs-version-num {
    color: var(--blue);
    font-weight: 600;
}

.docs-version-meta {
    color: var(--muted);
    font-size: 10.5px;
}

.docs-tabs {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.docs-tab {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-dim);
    background: transparent;
    border: none;
    padding: 0.7rem 0.85rem;
    border-radius: 7px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s var(--ease),color 0.2s var(--ease);
    letter-spacing: -0.005em;
}

.docs-tab-num {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    background: var(--surface-2);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--border-2);
}

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

.docs-tab.active {
    background: var(--blue-dim);
    color: var(--blue);
}

    .docs-tab.active .docs-tab-num {
        background: rgba(90,169,255,0.15);
        border-color: rgba(90,169,255,0.3);
        color: var(--blue);
    }

.docs-toc {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.docs-toc-link {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-left: 2px solid transparent;
    transition: color 0.2s var(--ease),border-color 0.2s var(--ease);
    line-height: 1.45;
}

    .docs-toc-link.lvl-3 {
        padding-left: 1.5rem;
        font-size: 11.5px;
    }

    .docs-toc-link.lvl-4 {
        padding-left: 2.25rem;
        font-size: 11px;
    }

    .docs-toc-link:hover {
        color: var(--text-dim);
        border-left-color: var(--border-3);
    }

    .docs-toc-link.active {
        color: var(--blue);
        border-left-color: var(--blue);
    }

.docs-content {
    padding: 3rem 4rem 5rem;
    max-width: 880px;
    width: 100%;
    min-width: 0;
}

.docs-content-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
}

.docs-crumb {
    color: var(--muted);
}

.docs-crumb-sep {
    color: var(--muted-2);
}

.docs-crumb-current {
    color: var(--blue);
    font-weight: 500;
}

/* Markdown styles */
.md-body {
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 1.78;
}

    .md-body h1 {
        font-size: 38px;
        font-weight: 800;
        color: var(--text);
        letter-spacing: -0.03em;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .md-body h2 {
        font-size: 26px;
        font-weight: 700;
        color: var(--text);
        letter-spacing: -0.025em;
        line-height: 1.2;
        margin: 3rem 0 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
        scroll-margin-top: 90px;
    }

        .md-body h2:first-of-type {
            border-top: none;
            padding-top: 0;
            margin-top: 2.25rem;
        }

    .md-body h3 {
        font-size: 19px;
        font-weight: 700;
        color: var(--text);
        letter-spacing: -0.02em;
        line-height: 1.3;
        margin: 2.25rem 0 0.85rem;
        scroll-margin-top: 90px;
    }

    .md-body h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text);
        letter-spacing: -0.01em;
        margin: 1.75rem 0 0.6rem;
        scroll-margin-top: 90px;
    }

        .md-body h2 .md-anchor,
        .md-body h3 .md-anchor,
        .md-body h4 .md-anchor {
            opacity: 0;
            color: var(--blue);
            text-decoration: none;
            font-weight: 400;
            margin-left: 0.5rem;
            transition: opacity 0.2s var(--ease);
            font-family: var(--mono);
            font-size: 0.7em;
        }

        .md-body h2:hover .md-anchor,
        .md-body h3:hover .md-anchor,
        .md-body h4:hover .md-anchor {
            opacity: 0.6;
        }

        .md-body h2 .md-anchor:hover,
        .md-body h3 .md-anchor:hover,
        .md-body h4 .md-anchor:hover {
            opacity: 1;
        }

    .md-body p {
        margin-bottom: 1.1rem;
    }

    .md-body strong {
        color: var(--text);
        font-weight: 600;
    }

    .md-body em {
        color: var(--text);
        font-style: italic;
    }

    .md-body a {
        color: var(--blue);
        text-decoration: none;
        border-bottom: 1px solid rgba(90,169,255,0.3);
        transition: border-color 0.2s var(--ease);
    }

        .md-body a:hover {
            border-bottom-color: var(--blue);
        }

    .md-body code {
        font-family: var(--mono);
        font-size: 0.86em;
        background: var(--surface-2);
        border: 1px solid var(--border-2);
        padding: 0.12em 0.4em;
        border-radius: 4px;
        color: var(--blue);
        white-space: nowrap;
    }

    .md-body pre {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 1.25rem 1.5rem;
        margin: 1.25rem 0;
        overflow-x: auto;
        font-family: var(--mono);
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-dim);
        position: relative;
    }

        .md-body pre code {
            background: none;
            border: none;
            padding: 0;
            white-space: pre;
            color: inherit;
            font-size: inherit;
        }

        .md-body pre .lang-tag {
            position: absolute;
            top: 0.5rem;
            right: 0.75rem;
            font-family: var(--mono);
            font-size: 10px;
            color: var(--muted);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 500;
        }

    .md-body ul, .md-body ol {
        margin: 0.75rem 0 1.25rem 1.5rem;
    }

    .md-body li {
        margin-bottom: 0.45rem;
        line-height: 1.7;
    }

        .md-body li > ul, .md-body li > ol {
            margin-top: 0.4rem;
            margin-bottom: 0.4rem;
        }

    .md-body ul {
        list-style: none;
        padding-left: 0.25rem;
    }

        .md-body ul > li {
            position: relative;
            padding-left: 1.25rem;
        }

            .md-body ul > li::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0.78em;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: var(--blue);
                opacity: 0.5;
            }

            .md-body ul > li.task-item::before {
                display: none;
            }

            .md-body ul > li.task-item {
                padding-left: 0;
            }

                .md-body ul > li.task-item input[type=checkbox] {
                    margin-right: 0.6rem;
                    accent-color: var(--blue);
                    transform: translateY(1px);
                }

    .md-body ol {
        list-style: decimal;
        padding-left: 0.5rem;
    }

        .md-body ol li::marker {
            color: var(--muted);
            font-family: var(--mono);
            font-size: 0.9em;
        }

    .md-body blockquote {
        margin: 1.5rem 0;
        padding: 1rem 1.25rem;
        background: var(--surface);
        border: 1px solid var(--border);
        border-left: 3px solid var(--blue);
        border-radius: 0 8px 8px 0;
        color: var(--text-dim);
    }

        .md-body blockquote p {
            margin-bottom: 0.6rem;
        }

            .md-body blockquote p:last-child {
                margin-bottom: 0;
            }

        .md-body blockquote strong:first-child {
            color: var(--blue);
        }

    .md-body hr {
        border: none;
        border-top: 1px solid var(--border);
        margin: 2.5rem 0;
    }

    .md-body table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
        font-size: 14px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
        display: block;
        overflow-x: auto;
    }

        .md-body table thead {
            background: var(--surface-2);
        }

        .md-body table th {
            font-family: var(--mono);
            font-size: 11px;
            font-weight: 600;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 0.85rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-2);
        }

        .md-body table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
            color: var(--text-dim);
            line-height: 1.6;
        }

        .md-body table tbody tr:last-child td {
            border-bottom: none;
        }

        .md-body table tbody tr:hover {
            background: var(--surface-2);
        }

/* === RESPONSIVE === */
@media(max-width:900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

        .nav-links a {
            font-size: 12px;
        }

    .hero {
        padding: 4rem 1.5rem 3.5rem;
    }

    .sections {
        padding: 3.5rem 1.5rem 3rem;
        gap: 3.5rem;
    }

    .page-hero {
        padding: 3.5rem 1.5rem 2.25rem;
    }

    .plugin-grid, .recipe-list, .blog-list {
        padding: 2rem 1.5rem 3rem;
    }

    .post-nav {
        padding: 1.25rem 1.5rem;
    }

    .post-hero {
        padding: 2.75rem 1.5rem 2.25rem;
    }

    .post-body {
        padding: 2.5rem 1.5rem 4rem;
    }

        .post-body p {
            font-size: 16px;
        }

    footer {
        padding: 1.25rem 1.5rem;
    }

    .hero-stat-num {
        font-size: 38px;
    }

    .hero-meta {
        gap: 2rem;
    }

    .docs-shell {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
    }

    .docs-content {
        padding: 2.5rem 1.5rem 4rem;
    }

    .docs-toc {
        display: none;
    }
}

@media(max-width:600px) {
    nav {
        padding: 0.875rem 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero {
        padding: 3rem 1rem 2.5rem;
    }

    .hero-eyebrow {
        font-size: 10px;
        padding: 0.35rem 0.7rem;
    }

    .sections {
        padding: 2.5rem 1rem 2rem;
        gap: 3rem;
    }

    .page-hero {
        padding: 2.5rem 1rem 1.75rem;
    }

    .plugin-grid, .recipe-list, .blog-list {
        padding: 1.5rem 1rem 2.5rem;
    }

    .post-nav {
        padding: 1rem;
    }

    .post-hero {
        padding: 2rem 1rem 1.75rem;
    }

    .post-body {
        padding: 2rem 1rem 3rem;
    }

    footer {
        padding: 1rem;
    }

    .section-title-main {
        font-size: 22px;
    }

    .recipe-item, .blog-item, .card, .plugin-card {
        padding: 1.25rem;
    }

    .docs-content {
        padding: 2rem 1rem 3rem;
    }

    .md-body h1 {
        font-size: 30px;
    }

    .md-body h2 {
        font-size: 22px;
    }

    .md-body {
        font-size: 14.5px;
    }
}
