/* Blog Article Styles */

.blogViewDiv {
    padding: 2rem 0;
    margin-top:100px;
}

.blog_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333366;
}

.blog_meta {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.author_date {
    font-style: italic;
}

.author_read-time {
    font-weight: 500;
}

.blog_content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.blog_content h1,
.blog_content h2,
.blog_content h3,
.blog_content h4,
.blog_content h5,
.blog_content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog_content p {
    margin-bottom: 1.2rem;
}

.blog_content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

.blog_content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.blog_content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.blog_content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

#blogImage {
    border-radius: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.author {
    border-radius: 0.5rem;
}

.author_image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author_name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333366;
}

.author_details span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog_title {
        font-size: 2rem;
        text-align: center;
    }
    
    .blog_content {
        font-size: 1rem;
    }
    
    .blogViewDiv {
        padding: 1rem 0;
    }
    
    .blog_meta {
        text-align: center;
    }
    
    .blog_meta .col-12 {
        margin-bottom: 0.5rem;
    }
}

/* Iframe responsive fix */
iframe {
    max-width: 100% !important;
    border-radius: 0.375rem;
}