/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

nav {
    margin-top: 1rem;
}

nav a {
    margin-right: 1rem;
    color: #666;
    text-decoration: none;
}

nav a:hover {
    color: #000;
}

main {
    margin-bottom: 2rem;
}

footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

/* Post styles */
.post {
    margin-bottom: 2rem;
}

.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
}

.post-meta time {
    margin-right: 1rem;
}

.post-categories a {
    color: #666;
    text-decoration: none;
}

.post-categories a:hover {
    color: #000;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.post-content h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.post-content code {
    background: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}

.post-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content blockquote {
    border-left: 4px solid #eee;
    padding-left: 1rem;
    margin-left: 0;
    color: #666;
}

/* Post list styles */
.posts {
    margin-top: 2rem;
}

.post-preview {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

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

.post-preview .post-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.post-preview .post-title a {
    color: #333;
    text-decoration: none;
}

.post-preview .post-title a:hover {
    color: #000;
}

.post-preview .post-meta {
    margin-bottom: 1rem;
}

.post-preview .post-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
} 


.hire-me-blurb {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #aaa;
  background: #eee;
}