@import url('research.css');

/* Blog-specific styles */

/* Add padding to the main content body of blog posts */
.content-page .content-body {
    padding: 1rem 2rem;
}

/* Style for pre-formatted text blocks, like poems or code */
.content-body pre {
    background-color: #1a1a1a;
    border-left: 3px solid var(--accent-yellow);
    padding: 1.5rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: "IBM Plex Mono", monospace;
    color: var(--text-primary);
    margin: 1.5rem 0;
} 