/* Apple Premium Markdown Styling */
.post-body blockquote {
    margin: 40px 0;
    padding-left: 24px;
    border-left: 3px solid var(--apple-text);
    font-style: italic;
    color: var(--apple-secondary);
}

.post-body h2 {
    text-transform: none !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 60px 0 20px;
    letter-spacing: -0.03em;
    color: var(--apple-text);
}

.post-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--apple-text);
}

.post-body p {
    margin-bottom: 24px;
}

.post-body ul, .post-body ol {
    margin: 24px 0;
    padding-left: 20px;
}

.post-body li {
    margin-bottom: 12px;
}

.post-body code {
    font-family: "SF Mono", Menlo, monospace;
    background: var(--apple-border);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.post-body pre {
    background: #1d1d1f;
    color: #f5f5f7;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 30px 0;
}

.post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.post-body hr {
    border: 0;
    border-top: 1px solid var(--apple-border);
    margin: 50px 0;
}

/* Fix for light blue links in dark mode */
.post-body a {
    color: var(--apple-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.post-body a:hover {
    border-bottom-color: var(--apple-blue);
}

body.dark .post-body a {
    color: var(--apple-link);
}
