/* Astra override – yeh strong rakha */
.ast-separate-container .ast-article-single,
.ast-separate-container .entry-content,
.ast-container,
.site-main .ast-container,
.single .entry-header,
.single .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* Page background */
body.single {
    background: #f8fafc;
}

/* Main container */
#dw-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Breadcrumb */
.dw-article-bc {
    text-align: center;
    font-size: 14px;
    margin-bottom: 24px;
    color: #64748b;
}
.dw-article-bc a {
    color: #3b82f6;
    text-decoration: none;
}

/* Header */
.dw-entry-header {
    text-align: center;
    margin-bottom: 32px;
}
.dw-entry-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 auto 12px;
    max-width: 900px;
}
.dw-entry-meta {
    font-size: 14px;
    color: #6b7280;
}

/* Featured Image – size control */
.dw-entry-image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.dw-entry-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Grid */
.dw-article-body-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
}

/* Content */
.dw-actual-content {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-size: 18px;
    line-height: 1.75;
}
.dw-actual-content h2 { font-size: 28px; margin: 40px 0 20px; }
.dw-actual-content h3 { font-size: 22px; margin: 32px 0 16px; }

/* Sidebar */
.dw-sidebar-inner {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.dw-side-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center; /* mobile ke liye center */
}
.dw-side-box h4 {
    margin-bottom: 12px;
    font-size: 18px;
}
.dw-side-btn {
    display: block;
    margin: 12px auto 0;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
}
.dw-side-btn:not(.gold) {
    background: #3b82f6;
    color: white;
}
.dw-side-btn.gold {
    background: #f59e0b;
    color: white;
}

/* Share buttons */
.dw-share {
    position: fixed;
    left: 16px;
    top: 40%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}
.dw-share-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-weight: bold;
    color: #334155;
    text-decoration: none;
}

/* Reading bar */
.dw-reading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #3b82f6;
    width: 0;
    z-index: 9999;
    transition: width 0.2s ease;
}

/* Premium Breadcrumb Box */
.dw-article-bc {
    text-align: center;
    margin: 0 0 40px 0;
    padding: 0 20px;
}
.dw-breadcrumb-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 50px;
    padding: 12px 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    max-width: 95%;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.dw-breadcrumb-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.dw-bc-arrow {
    color: #94a3b8;
    margin: 0 8px;
    font-size: 18px;
    font-weight: bold;
}
.dw-bc-separator {
    color: #cbd5e1;
    margin: 0 10px;
    font-weight: 300;
}
.dw-bc-current {
    color: #0f172a;
    font-weight: 600;
}
.dw-breadcrumb-box a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}
.dw-breadcrumb-box a:hover {
    color: #1d4ed8;
}

/* Category Tags (PDF Solutions wala blue pill) */
.dw-post-categories {
    text-align: center;
    margin: 1.5rem 0 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.dw-category-tag {
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.dw-category-tag:hover {
    background: rgba(59, 130, 246, 0.25);
    color: #1d4ed8;
    transform: translateY(-2px);
}

/* Underline completely remove kar do */
.dw-entry-title,
.dw-entry-meta,
.dw-actual-content p a,
.dw-actual-content h2 a,
.dw-actual-content h3 a,
.dw-post-categories a,
.dw-breadcrumb-box a {
    text-decoration: none !important;
    background-image: none !important;
}

.dw-entry-title:hover,
.dw-actual-content a:hover,
.dw-post-categories a:hover {
    color: #3b82f6;
    text-decoration: none !important; /* hover pe bhi nahi */
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .dw-article-body-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dw-sidebar-inner {
        position: static;
    }
    .dw-entry-title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    #dw-blog-container {
        padding: 30px 15px;
    }
    .dw-entry-title {
        font-size: 32px;
    }
    .dw-actual-content {
        padding: 24px;
        font-size: 17px;
    }
    .dw-share {
        display: none;
    }
    .dw-breadcrumb-box {
        padding: 10px 18px;
        font-size: 14px;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    .dw-bc-arrow, .dw-bc-separator {
        margin: 0 6px;
    }
    .dw-article-bc {
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .dw-entry-title {
        font-size: 28px;
    }
    .dw-entry-image {
        margin: 20px 0;
    }
    .dw-entry-image img {
        max-height: 300px;
    }
}