/* General Body & Layout */
body {
    background-color: #fdfdfd;
    color: #333333;
    font-family: Georgia, serif;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Links */
a, a:visited {
    color: #0055bb;
    text-decoration: none;
}

a:hover, a:active {
    text-decoration: underline;
}

/* Header & Navigation */
.site-header {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.site-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.5em;
    margin: 0;
}

.site-title a {
    color: #333333;
    font-weight: bold;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.site-nav li {
    display: inline-block;
    margin-right: 20px;
}

.site-nav a {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.5em; }

p {
    margin-bottom: 1.5em;
}

/* Page & Post Content */
.page-content, .post-content {
    margin-bottom: 2em;
}

.post-header {
    margin-bottom: 1.5em;
}

.post-title {
    font-size: 2em;
    margin-bottom: 0.2em;
}

.post-meta {
    color: #828282;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
}

/* Lists (Blog posts, talks, etc.) */
.post-list {
    list-style: none;
    padding-left: 0;
}

.post-list li {
    margin-bottom: 2em;
}

.post-list h3 {
    margin-top: 0;
    margin-bottom: 0.25em;
}

.post-list h3 a {
    color: #333;
}

.post-list .post-meta {
    display: block;
}


/* Footer */
.site-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 40px;
    color: #828282;
    font-size: 0.9em;
    text-align: center;
}

/* Code Highlighting */
pre, code {
    font-family: Menlo, Consolas, Monaco, "Courier New", monospace;
    font-size: 0.9em;
}

.highlight {
    background: #f3f3f3;
    border-radius: 4px;
    padding: 1em;
    margin-bottom: 1.5em;
    overflow-x: auto;
}

pre {
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .site-title {
        font-size: 2em;
    }
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
}