/* Blog Post Specific Styles */
.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    color: white;
}

/* Blog Post Header */
.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: #071924;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 15px;
}

.blog-post-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.blog-post-meta {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.blog-post-date, .blog-post-author, .blog-post-reading-time {
    margin-right: 5px;
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* Featured Image */
.blog-post-featured-image {
    margin-bottom: 30px;
}

.blog-post-featured-image img {
    width: 100%;
    border-radius: 5px;
}

/* Share Icons */
.blog-post-share {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.share-label {
    margin-right: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.share-icon {
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.share-icon:hover {
    color: white;
}

/* Blog Post Content */
.blog-post-content {
    margin-bottom: 50px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.blog-post-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
}

.blog-post-content h2 {
    font-size: 21px;
    margin: 40px 0 20px;
    color: white;
    line-height: 28px;
}


.blog-post-content h3 {
    font-size: 18px;
    margin: 30px 0 15px;
    color: white;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-quote {
    border-left: 4px solid #3a86ff;
    padding: 20px 30px;
    margin: 30px 0;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 20px;
    font-style: italic;
    color: white;
}

.blog-post-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.blog-post-image {
    margin: 30px 0;
}

.blog-post-image img {
    width: 100%;
    border-radius: 5px;
	display:none;
}

.blog-post-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.blog-post-list {
    margin: 20px 0 30px 25px;
}

.blog-post-list li {
    margin-bottom: 15px;
}

.blog-post-conclusion {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 5px;
    margin: 40px 0;
}

.blog-post-conclusion h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

/* Author Bio */
.blog-post-author-bio {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 50px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 5px 0;
    font-size: 20px;
}

.author-title {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 16px;
}

.author-description {
    font-size: 16px;
    line-height: 1.6;
}

/* Related Posts */
.blog-post-related {
 
    margin-bottom: 50px;
}

.related-title {
    margin-bottom: 20px;
    font-size: 24px;
}

.related-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
	flex-direction: column;
}

.related-post:hover {
    transform: translateY(-3px);
}

.related-image {
    height: 176px;
    object-fit: cover;
}

.related-content {
    padding: 10px 15px;
    flex: 1;
}

.related-post-title {
    font-size: 16px;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.related-post-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Comments Section */
.blog-post-comments {
    margin-bottom: 50px;
}

.comments-title {
    margin-bottom: 30px;
    font-size: 24px;
}

.comment-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.comment-form h4 {
    margin-top: 0;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 16px;
}

.comment-form textarea {
    resize: vertical;
}

.comments-list {
    margin-top: 30px;
}

.comment {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.comment-meta {
    margin-bottom: 10px;
}

.comment-author {
    color: white;
    margin-right: 10px;
}

.comment-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.comment-content {
    margin-bottom: 15px;
}

.comment-reply {
    color: #3a86ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.comment-reply-box {
    margin-top: 20px;
    margin-left: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #3a86ff;
    border-radius: 0 5px 5px 0;
}

.author-badge {
    background-color: #3a86ff;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	.blog-post-intro {
		font-size: 22px;
	}

	.blog-post-content h2 {
		font-size: 20px;
	}

	.blog-post-content h3 {
		font-size: 18px;
	}
	
    .blog-post-title {
        font-size: 22px;
    }
    
    .blog-post-meta {
        font-size: 14px;
    }
    
    .blog-post-content {
        font-size: 16px;
    }
    
    .blog-post-intro {
        font-size: 16px;
    }
    
    .blog-post-quote {
        font-size: 18px;
        padding: 15px 20px;
    }
    
    .blog-post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .related-posts {
        grid-template-columns: 1fr;
    }
}

.blog-post-content ul, .blog-post-content ol {
    margin: 11px 0 11px 35px;
	
}
.blog-post-content h2 ~ p {
  margin-left:15px!important;
}

.blog-post-content h3 ~ p {
  margin-left:15px!important;
}

.blog-post-content h2 ~ h3{
	padding-left:15px!important;
}

a{
color:white;
}