/*
.left-block {
    width: 100%;
    
}

.right-block {
    width: 100%;
}

.body-block {
    justify-content: center;
}

.article-img {
    max-width: 100%;
}

.top-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
    */

    /* Blog Post Page Container */
.blog-post-page-container {
    display: flex;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', sans-serif !important; 
}

/* Post Content Section */
.post-content-section {
    width: 70%;
}

/* Featured Image: Reduced Size for Better Readability */
.featured-image-small img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Post Content Styling */
.post-content h1 {
    font-size: 2rem;
    color: #004080;
    margin-bottom: 20px;
}

.post-meta p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-body h2 {
    font-size: 1.5rem;
    color: #004080;
    margin-top: 20px;
    margin-bottom: 10px;
}

.post-body p {
    line-height: 1.6;
    margin-block-end: 1rem;
}

.post-body a {
    color: #0000EE;
}

.post-body h3, h4, h5, h6 {
    color: var(--base-heading);
    margin: 1rem 0;
}

.post-body h3 {
    font-size: 19px;
    line-height: 1.2;
}

.post-body h4 {
    font-size: 16px;
    line-height: 1.2;
}

.post-body li {
    line-height: 1.6;
    margin-bottom: 10px;
}

.post-body ul,ol {
    margin-bottom: 1rem;
}

.post-body blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #004080; /* Highlight with a border */
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #f9f9f9; 
}

/* Related Posts Section */
.related-posts h3 {
    font-size: 1.5rem;
    color: #004080;
    margin-bottom: 20px;
}

.related-post {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-post-info h4 {
    font-size: 1.2rem;
    color: #004080;
    margin: 0;
    line-height: 1.2;
}

.related-post-info h4 a {
    color: #004080;
    text-decoration: none;
}

.related-post-info h4 a:hover {
    text-decoration: underline;
}

.related-post-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.2;
}

/* Ad Space */
.ad-space {
    background-color: #f0f4fa;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
}

/* Footer Section */
.site-footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

pre code {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #333;
    display: block;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}


/* Responsive Design */
@media (max-width: 768px) {
    

    .featured-image-small img {
        width: 100%;
    }

    .related-post {
        flex-direction: column;
        align-items: center;
    }

    .related-post img {
        width: 100%;
        height: auto;
    }

    .related-post-info h4 {
        text-align: center;
    }

    .related-post-info p {
        text-align: center;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
   
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    

}

@media only screen and (max-width: 992px) {
    .blog-post-page-container {
        flex-direction: column;
    }

    .post-content-section,
    .right-sidebar {
        width: 100%;
    }
}