/* Minimalist blog styling with serif fonts */

:root {
    --max-width: 700px;
    --spacing: 1.5rem;
    --text-color: #333;
    --secondary-color: #666;
    --link-color: #0066cc;
}

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Header */
header {
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2rem;
    font-weight: normal;
}

header h1 a {
    color: var(--text-color);
    text-decoration: none;
}

header h1 a:hover {
    text-decoration: underline;
}

/* Post list (homepage) */
.post-list article {
    margin-bottom: var(--spacing);
}

.post-list h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 0.25rem;
}

.post-list a {
    color: var(--text-color);
    text-decoration: none;
}

.post-list a:hover {
    text-decoration: underline;
}

time {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Individual post page */
.back-link {
    margin-bottom: 2rem;
}

.back-link a {
    color: var(--link-color);
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}

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

.post h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.post-content {
    margin: 2rem 0;
}

.post-content h1 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: normal;
}

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

.post-content a {
    color: var(--link-color);
}

.post-content ul,
.post-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #ddd;
    color: var(--secondary-color);
    font-style: italic;
}

.post-content code {
    background: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.post-content pre {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 3px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

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

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

/* Footer */
footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: var(--secondary-color);
    font-size: 0.9rem;
}
