
/* Blog Article Responsive Styles               
Make images, iframes, and tables responsive */

.post-content img,
.post-content iframe,
.post-content table {
    max-width: 100%;
    height: auto;
}

/* Center images */
.post-content img {
    display: block;
    margin: 0 auto;
}

/* Box container styling */
.box {
    padding: 1rem;
    box-sizing: border-box; /* Modern browsers */
}

/* Post content default styling 
.post-content {
    font-size: 1.1rem;
    line-height: 1.6;
}*/

/* Paragraph spacing */
.post-content p {
    margin-bottom: 1rem;
}

/* Links inside post content */
.post-content a {
    color: #007bff;
    text-decoration: underline;
}

.post-content a:hover {
    text-decoration: none;
}

/* ============================================ */
/* Responsive adjustments for mobile devices    */
/* ============================================ */
@media (max-width: 767px) {

    /* Box spacing for mobile */
    .blog.classic-view .post .box {
        margin-top: 1rem;
        padding: 0.5rem;
    }

    /* Post title smaller on mobile */
    .blog.classic-view .post .post-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    /* Post content adjustments */
    .blog.classic-view .post .post-content {
     
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    /* Ensure images remain centered */
    .blog.classic-view .post .post-content img {
        display: block;
        margin: 0 auto;
    }
}
