
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #000;
            background: #fff;
            padding: 2rem 2rem;
        }
        .container { max-width: 1000px; margin: 0 auto; }
        h1 {
            font-size: 2.25rem;
            font-weight: 300;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            border-bottom: 1px solid #000;
            padding-bottom: 0.75rem;
        }
        h2 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .main-content {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 3rem;
        }
        .sidebar-column {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }
        .links, .other-links {
            margin-bottom: 0;
        }
        .post {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .post:last-child { border-bottom: none; }
        .post h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        .post h3 a {
            text-decoration: none;
            color: #000;
        }
        .post h3 a:hover { opacity: 0.6; }
        .post .date {
            font-size: 0.75rem;
            color: #999;
            margin-bottom: 0.5rem;
        }
        .post p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }
        ul { list-style: none; }
        li { margin-bottom: 0.5rem; }
        a {
            color: #000;
            text-decoration: none;
            border-bottom: 1px solid #000;
        }
        a:hover { opacity: 0.6; }
        @media (max-width: 768px) {
            .main-content { grid-template-columns: 1fr; gap: 3rem; }
            .sidebar-column { gap: 2rem; }
        }
    