/* Simple two-column layout for the blog index */
        .blog-container {
            display: flex;
            gap: 2rem;
        }
        .blog-posts {
            flex: 4; /* Posts take up 4/5 of the space */
        }
        .tags-pane {
            flex: 1; /* Tags pane takes up 1/5 of the space */
            border-left: 1px solid #ccc;
            padding-left: 2rem;
        }
