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

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #0A0A0F;
    --bg-elevated: #111118;
    --bg-tertiary: #1A1A24;
    --text: #F0EDE8;
    --text-muted: #7A7585;
    --accent: #F59E0B;
    --accent-dim: rgba(245, 158, 11, 0.1);
    --accent-glow: rgba(245, 158, 11, 0.18);
    --border: rgba(255, 255, 255, 0.07);
    --border-accent: rgba(245, 158, 11, 0.25);
    --green: #10B981;
    --green-dim: rgba(16, 185, 129, 0.1);
}

/* ─── Light Theme ────────────────────────────── */
[data-theme="light"] {
    --bg: #FAFAF8;
    --bg-elevated: #F2EFE9;
    --bg-tertiary: #E8E4DD;
    --text: #1A1714;
    --text-muted: #6B6560;
    --accent: #D97706;
    --accent-dim: rgba(217, 119, 6, 0.10);
    --accent-glow: rgba(217, 119, 6, 0.35);
    --border: rgba(0, 0, 0, 0.09);
    --border-accent: rgba(217, 119, 6, 0.30);
    --green: #059669;
    --green-dim: rgba(5, 150, 105, 0.12);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background 0.2s ease, color 0.2s ease;
}

/* ─── Layout ────────────────────────────────── */
.layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        order: -1;
        position: relative;
        top: 0;
        background: var(--bg-elevated);
        padding: 24px;
        border-radius: 12px;
        border: 1px solid var(--border);
    }

    .sidebar-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .sidebar-item {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* ─── Links ─────────────────────────────────── */
a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-dim);
    padding-bottom: 1px;
    transition: all 0.2s ease;
}

.link:hover {
    border-bottom-color: var(--accent);
    background: var(--accent-dim);
    padding-left: 2px;
    padding-right: 2px;
}

/* ─── Hero ──────────────────────────────────── */
.hero {
    padding: 0 0 56px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    background: var(--green-dim);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-green 2.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70%  { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-statement {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-statement strong {
    color: var(--text);
    font-weight: 500;
}

/* ─── Credential Badges ─────────────────────── */
.credential-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.badge {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-muted);
    letter-spacing: 0.2px;
    cursor: default;
    user-select: none;
}

.badge-primary {
    background: var(--accent-dim);
    border-color: var(--border-accent);
    color: var(--accent);
}

/* ─── Currently Building ────────────────────── */
.currently-building {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 44px;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: 2px solid var(--accent);
    border-radius: 0 8px 8px 0;
    max-width: 480px;
}

.cb-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.cb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cb-item:hover {
    color: var(--accent);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 var(--accent-glow);
    animation: pulse-amber 2.5s infinite;
}

@keyframes pulse-amber {
    0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
    70%  { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* ─── Navigation ────────────────────────────── */
.nav-main {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 14px;
}

.nav-main a {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
    padding-bottom: 2px;
}

.nav-main a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-main a:hover {
    color: var(--text);
}

.nav-main a:hover::after {
    transform: scaleX(1);
}

/* ─── Sections ──────────────────────────────── */
.section {
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

h2 {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 28px;
}

/* ─── Projects ──────────────────────────────── */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 22px 26px;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.project::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.project:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background: var(--bg-tertiary);
}

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

.project h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.project h3 a {
    color: var(--text);
    transition: color 0.2s ease;
}

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

.project > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.meta {
    font-size: 10px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: var(--accent-dim);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* ─── Sidebar ───────────────────────────────── */
.sidebar {
    position: sticky;
    top: 60px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 48px;
}

.sidebar-title {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
}

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

.sidebar-item span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Compact writing list in sidebar */
.sidebar-writing {
    display: flex;
    flex-direction: column;
}

.sidebar-post {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-post-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.sidebar-post-title:hover {
    color: var(--accent);
}

.sidebar-post-date {
    font-size: 11px;
    color: var(--text-muted);
}

/* ─── Footer ────────────────────────────────── */
.footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    grid-column: 1 / -1;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-email {
    font-size: 14px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
}

.social-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-credit {
    font-size: 12px;
    color: #3A3645;
}

/* ─── Project CTAs ───────────────────────────── */
.project-links {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: transparent;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
}

.project-link:hover {
    border-color: var(--border-accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.project-link-post {
    background: var(--accent-dim);
    border-color: var(--border-accent);
    color: var(--accent);
}

.project-link-post:hover {
    background: var(--accent-glow);
}

/* ─── Project Year ───────────────────────────── */
.project-year {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 6px;
    letter-spacing: 0;
}

/* ─── Project Cards ─────────────────────────── */
.project-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.project-header h3 {
    margin-bottom: 0;
}

.project-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.handcoded-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.building-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Featured (spotlight) project card */
.project-featured {
    background: var(--bg-tertiary);
    border-color: var(--border-accent);
    padding: 28px 32px;
}

.project-featured::before {
    opacity: 1;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(245, 158, 11, 0.3) 100%);
    width: 2px;
}

.project-featured h3 {
    font-size: 18px;
    font-weight: 600;
}

.project-featured .project-lede {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.55;
    font-weight: 500;
}

.project-featured .project-detail {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ─── Show More Button ──────────────────────── */
.show-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 9px 18px;
    background: var(--bg-elevated);
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.show-more:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-accent);
    color: var(--accent);
}

.section-footer {
    margin-top: 12px;
}

/* ─── Blog Post Article ─────────────────────── */
.post-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.2s ease;
}

.post-back:hover {
    color: var(--accent);
}

.post-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.post-header h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.post-date {
    font-size: 13px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.post-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.post-body p {
    margin-bottom: 24px;
}

.post-body h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-transform: none;
    color: var(--text);
    margin: 48px 0 16px;
    padding-bottom: 0;
    border-bottom: none;
}

.post-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 12px;
    letter-spacing: 0;
    text-transform: none;
}

.post-body ul,
.post-body ol {
    margin: 0 0 24px 24px;
}

.post-body li {
    margin-bottom: 8px;
    color: var(--text);
}

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

.post-body em {
    color: var(--text-muted);
}

.post-body a {
    color: var(--accent);
    border-bottom: 1px solid var(--accent-dim);
    padding-bottom: 1px;
    transition: border-color 0.2s ease;
}

.post-body a:hover {
    border-bottom-color: var(--accent);
}

.post-body code {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--accent);
    font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
}

.post-body pre {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 20px 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
    border-left: 2px solid var(--accent);
}

.post-body pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: var(--text);
}

.post-body blockquote {
    border-left: 2px solid var(--accent);
    padding: 12px 20px;
    margin: 28px 0;
    background: var(--accent-dim);
    border-radius: 0 6px 6px 0;
}

.post-body blockquote p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-style: italic;
}

.post-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
}

/* ─── Profile Photo ─────────────────────────── */
.profile-photo-wrap {
    margin-bottom: 28px;
    text-align: center;
}

.profile-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    border: 2px solid var(--border-accent);
    box-shadow: 0 0 0 0 var(--accent-glow);
    animation: photo-breathe 4s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

.profile-photo:hover {
    box-shadow: 0 0 28px 10px var(--accent-glow);
}

@keyframes photo-breathe {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50%       { box-shadow: 0 0 22px 8px var(--accent-glow); }
}

/* ─── Theme Toggle ──────────────────────────── */
#theme-toggle {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 100;
    padding: 0;
}

#theme-toggle:hover {
    border-color: var(--border-accent);
    color: var(--accent);
    background: var(--bg-tertiary);
}

/* ─── Entrance Animations ───────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-inner {
    animation: fadeUp 0.7s ease-out both;
}

.section {
    animation: fadeUp 0.7s ease-out both;
    animation-delay: 0.1s;
}

/* ─── Formerly Line ─────────────────────────── */
.hero-formerly {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: -20px;
    margin-bottom: 36px;
    letter-spacing: 0.1px;
}

.hero-formerly strong {
    color: var(--text-muted);
    font-weight: 600;
}

/* ─── Sidebar Traits ─────────────────────────── */
.sidebar-traits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px;
}

.sidebar-trait {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 20px;
    cursor: default;
    user-select: none;
}

/* ─── Work / Day Job ────────────────────────── */
.work-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 4px;
}

.work-card {
    padding: 18px 0 24px 22px;
    border-left: 2px solid var(--border);
    position: relative;
    transition: border-left-color 0.2s ease;
}

.work-card:last-child {
    padding-bottom: 4px;
}

.work-card::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--bg);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.work-card:first-child::before {
    background: var(--accent);
    border-color: var(--bg);
}

.work-card:hover {
    border-left-color: var(--border-accent);
}

.work-card:hover::before {
    background: var(--accent);
}

.work-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.work-company {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.work-tenure {
    font-size: 11px;
    color: var(--text-muted);
}

.work-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.work-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.work-bullets li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    padding-left: 14px;
    position: relative;
}

.work-bullets li::before {
    content: "·";
    position: absolute;
    left: 3px;
    color: var(--accent);
    font-weight: 700;
    line-height: 1.55;
}

.work-subroles {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.work-subrole-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

.work-subrole-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.1px;
}

.work-subrole-year {
    font-size: 11px;
    color: var(--text-muted);
}

.work-subrole + .work-subrole {
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

/* ─── Mobile ─────────────────────────────────── */
@media (max-width: 900px) {
    .sidebar {
        order: 2;
        position: relative;
        top: 0;
        background: var(--bg-elevated);
        padding: 24px;
        border-radius: 12px;
        border: 1px solid var(--border);
    }

    .sidebar-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .sidebar-item {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .layout {
        padding: 32px 16px;
    }

    h1 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .hero-statement {
        font-size: 16px;
    }

    .hero-eyebrow {
        font-size: 11px;
    }

    .currently-building {
        max-width: 100%;
    }

    .credential-badges {
        gap: 6px;
    }

    .badge {
        font-size: 11px;
        padding: 4px 9px;
    }

    .nav-main {
        gap: 20px;
    }

    .project {
        padding: 18px 20px;
    }

    .project-featured {
        padding: 20px 24px;
    }

    /* Blog rows: stack title above date on small screens */
    .blog-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .blog-date {
        order: -1;
        grid-column: auto;
    }

    /* Post articles */
    .post-container {
        padding: 32px 16px 60px;
    }

    .post-header h1 {
        font-size: 26px;
    }

    .post-body {
        font-size: 15px;
    }

    /* Toggle button stays top-right but smaller */
    #theme-toggle {
        width: 32px;
        height: 32px;
        top: 14px;
        right: 16px;
    }
}
