/* Markdown content styles */
.post-content {
    text-align: left;
}

/* Hide title and date in individual posts */
.post-content h1 {
    display: none;
}

.post-content h1 + p {
    display: none;
}

.post-content ul {
    list-style-type: disc;
    margin: 0 auto 1rem auto;
    padding: 0;
    display: table;
    text-align: left;
}

.post-content ol {
    list-style-type: decimal;
    margin: 0 auto 1rem auto;
    padding: 0;
    display: table;
    text-align: left;
}

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

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

.post-content h2, 
.post-content h3, 
.post-content h4, 
.post-content h5, 
.post-content h6 {
    text-align: left;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.post-content strong {
    font-weight: bold;
    font-size: 1.125rem;
}

.post-content em {
    font-style: italic;
}

.post-content code {
    background-color: #374151;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.post-content pre {
    background-color: #1f2937;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1rem;
    text-align: left;
}

.post-content blockquote {
    border-left: 4px solid #89B4FA;
    padding-left: 1rem;
    margin-left: 1rem;
    margin-right: 0;
    font-style: italic;
    color: #9CA3AF;
    text-align: left;
} 