/* Individual Blog Post Styles */
.blog-post-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.blog-post-container {
    max-width: 1200px; /* Increased from 800px */
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.08);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.blog-post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #374151;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 1rem;
}

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

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

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

.blog-media-section {
    margin: 3rem 0;
}

.blog-media-item {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-media-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.blog-media-caption {
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.blog-post-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-to-blog {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0066cc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.blog-social-share {
    display: flex;
    gap: 0.75rem;
}

.blog-share-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.blog-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-share-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.blog-share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.blog-share-btn.linkedin:hover {
    background: #0077b5;
    color: white;
}

.blog-share-btn.email:hover {
    background: #ea4335;
    color: white;
}

.blog-share-btn.copy:hover {
    background: #10b981;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-post-container {
        max-width: 900px;
        margin: -1rem 1rem 0;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .blog-post-actions {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-post-container {
        max-width: none;
        margin: -1rem 1rem 0;
        padding: 2rem 1rem;
    }
    
    .blog-post-hero {
        padding: 3rem 1rem 1rem;
    }
} 