/* Blog Post Page Styles */

.blog-post-page {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-post-breadcrumb {
    font-size: 0.875rem;
    color: var(--gray-500, #6b7280);
    margin-bottom: 1.5rem;
}

.blog-post-breadcrumb a {
    text-decoration: none;
}

.blog-post-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .blog-post-title {
        font-size: 2.25rem;
    }
}

.blog-post-meta {
    display: flex;
    align-items: center;
    color: var(--gray-500, #6b7280);
    font-size: 0.875rem;
}

.blog-post-meta-separator {
    margin: 0 0.5rem;
}

.blog-post-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-height: 25rem;
    object-fit: contain;
    background-color: #ffffff;
}

.blog-post-image-container {
    margin-bottom: 2rem;
}

/* Prose Styles for Rich Content */
.prose {
    max-width: none;
}

.prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #404040;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: #374151;
    font-size: 1.125rem;
}

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

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
    color: #374151;
}

.prose a {
    color: #f15f23;
    text-decoration: underline;
    transition: color 0.2s;
}

.prose a:hover {
    color: #c2410c;
}

.prose strong {
    font-weight: 600;
    color: #1a1a1a;
}

.prose em {
    font-style: italic;
}

.prose blockquote {
    border-left: 4px solid #f15f23;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
}

.prose code {
    background-color: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.9em;
    color: #dc2626;
}

.prose pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.prose pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}

.prose img {
    border-radius: 0.5rem;
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.prose th, .prose td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.prose th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.prose hr {
    border: 0;
    border-top: 2px solid #e5e7eb;
    margin: 3rem 0;
}
