/* Minimalist Blog Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
}

.post-container {
    max-width: 820px;
    margin: 60px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

/* Typography */
.post-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #111;
    line-height: 1.2;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.lead {
    font-size: 1.25rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 30px;
}

h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    color: #222;
}

p {
    margin-bottom: 20px;
}

/* Images */
figure {
    margin: 40px 0;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

figcaption {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 10px;
}

/* Lists */
ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Footer */
.post-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-style: italic;
    text-align: center;
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-container {
        margin: 20px auto;
    }
    .post-title {
        font-size: 2rem;
    }
}
