/* Individual blog post styles */
.post {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.post-title {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.post-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 400;
}

.post-content {
    line-height: 1.7;
    color: #333;
    font-size: 1rem;
}

/* Post content typography */
.post-content h1,
.post-content h2,
.post-content h3 {
    margin: 2rem 0 1rem 0;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.post-content h1 { font-size: 1.75rem; }
.post-content h2 { font-size: 1.5rem; }
.post-content h3 { font-size: 1.25rem; }

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

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

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

.post-content blockquote {
    border-left: 4px solid #0066cc;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #495057;
    background: #f8f9fa;
}

/* Code blocks */
.post-content code {
    background: #f1f3f4;
    padding: 0.2rem 0.4rem;
    font-family: monospace;
    font-size: 0.9em;
    color: #d73a49;
}

.post-content pre {
    background: #f6f8fa;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid #e1e4e8;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: #333;
    font-size: 0.9rem;
}

/* Responsive design for posts */
@media (max-width: 768px) {
    .post {
        padding: 1rem;
    }
    
    .post-title {
        font-size: 1.75rem;
    }
} 