/* ===============================
   BLOG PAGE SPACING FIX - ADORA
   =============================== */

/* Main Blog Container */
.blog-container,
.single-post .post-content,
.post-content {
    max-width: 850px;
    margin: 20px auto !important;
    padding: 25px !important;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

/* Remove Excess Top Gap */
.single-post {
    padding-top: 10px !important;
}

.post-meta {
    margin-bottom: 10px !important;
}

/* Headings Spacing */
h1 {
    margin-bottom: 15px !important;
}

h2 {
    margin-top: 25px !important;
    margin-bottom: 10px !important;
    font-size: 22px;
}

h3 {
    margin-top: 15px !important;
    margin-bottom: 5px !important;
}

/* Paragraph Spacing */
p {
    margin-bottom: 12px !important;
    line-height: 1.6;
}

/* List Spacing */
ul {
    margin-top: 8px !important;
    margin-bottom: 12px !important;
    padding-left: 20px;
}

ul li {
    margin-bottom: 6px !important;
}

/* Featured Image Fix */
.post-thumbnail,
.blog-featured-image,
.blog-img {
    margin-bottom: 15px !important;
}

.post-thumbnail img {
    max-height: 350px;
    object-fit: cover;
}

/* Hide Empty Image Container */
.post-thumbnail:empty {
    display: none !important;
}

/* FAQ Compact Design */
.faq-item,
.faq-section div {
    margin-bottom: 12px !important;
    padding: 10px 12px !important;
    background: #fafafa;
    border-radius: 6px;
}

/* Remove Extra Bottom Space */
.blog-footer,
.post-footer {
    margin-top: 20px !important;
    padding-top: 10px !important;
}

/* Reduce Sidebar Gap */
.sidebar-widget {
    margin-bottom: 20px !important;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    .blog-container,
    .post-content {
        padding: 18px !important;
        margin: 15px !important;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }
}