/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 76px;
    padding: 4rem 0 !important;
}

.blog-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.blog-main-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-main-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Blog List Section */
.blog-list-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
    background: #f8f9fa;
    min-height: 60vh;
}

/* Blog Post Page Styles */
.blog-post-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 76px;
    padding: 3rem 0;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    opacity: 0.95;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.blog-post-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.blog-post-content strong {
    color: #2d3748;
    font-weight: 600;
}

.blog-post-content code {
    background: #f7fafc;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #e53e3e;
}

.blog-post-content pre {
    background: #2d3748;
    color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.blog-post-content pre code {
    background: transparent;
    color: #f7fafc;
    padding: 0;
}

.blog-post-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #718096;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.blog-navigation {
    background: #f8f9fa;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-nav-link:hover {
    color: #764ba2;
    text-decoration: none;
}

.back-to-blog {
    margin-bottom: 2rem;
}

.back-to-blog a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-blog a:hover {
    color: #764ba2;
    text-decoration: none;
}

@media (max-width: 768px) {
    .blog-main-title {
        font-size: 2rem;
    }
    
    .blog-main-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-content {
        padding: 2rem 0;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.3rem;
    }
}

