/* Single Post Content Styling */
.post-content h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    color: hsl(var(--foreground));
    margin-top: 3rem; /* mt-12 */
    margin-bottom: 1.5rem; /* mb-6 */
}

@media (min-width: 768px) {
    .post-content h2 {
        font-size: 2.25rem; /* md:text-4xl */
        line-height: 2.5rem;
    }
}

.post-content h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem;
    color: hsl(var(--foreground));
    margin-top: 2rem; /* mt-8 */
    margin-bottom: 1rem; /* mb-4 */
}

.post-content p {
    font-family: 'Crimson Pro', serif;
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem; /* mb-6 */
}

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

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}

.post-content li {
    margin-bottom: 0.5rem;
    font-family: 'Crimson Pro', serif;
    font-size: 1.125rem;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    border: 3px solid hsl(var(--border)); /* border-brutal */
    margin-bottom: 2rem;
    font-family: 'Syne', sans-serif;
}

.post-content th {
    background-color: hsl(var(--secondary));
    padding: 1rem;
    font-weight: 700;
    text-align: left;
    border: 1px solid hsl(var(--border));
}

.post-content td {
    padding: 1rem;
    border: 1px solid hsl(var(--border));
    font-family: 'Crimson Pro', serif;
}

.post-content blockquote {
    border-left: 4px solid hsl(var(--primary));
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: hsl(var(--muted-foreground));
}

.post-content a {
    color: hsl(var(--primary));
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.post-content a:hover {
    color: hsl(var(--accent));
}

.post-content img {
    border: 3px solid hsl(var(--border));
    margin-bottom: 1.5rem;
}
