/* 📝 professional Blog Content Styling */
.blog-post-page {
    width: 100%;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.blog-post-full {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Typography */
.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    word-wrap: break-word;
}

.entry-content h1, .entry-content h2, .entry-content h3, 
.entry-content h4, .entry-content h5, .entry-content h6 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.entry-content h1 { font-size: 2.25rem; }
.entry-content h2 { font-size: 1.875rem; border-bottom: 1px solid #e2e8f0; padding-bottom: 0.5rem; }
.entry-content h3 { font-size: 1.5rem; }

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

/* Lists */
.entry-content ul, .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Blockquotes */
.entry-content blockquote {
    border-left: 4px solid #4f46e5;
    background: #f8fafc;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #475569;
}

/* Images */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Links */
.entry-content a {
    color: #4f46e5;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.entry-content a:hover {
    color: #3730a3;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-post-full {
        padding: 1rem;
    }
    .entry-content {
        font-size: 1rem;
    }
    .entry-content h1 { font-size: 1.75rem; }
    .entry-content h2 { font-size: 1.5rem; }
}

/* Post Header Specifics */
.post-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-header h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.post-category-tag {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}