@media (max-width: 980px){
    .blog-wrapper .col-lg-4{
        width: 50%;
    }
}
@media (max-width: 540px){
    .blog-wrapper .col-lg-4{
        width: 100%;
    }
}


/* Responsive CSS for Blog Detail Images */
.blog-detail-wrapper .blod-detail-description img {
    width: 100% !important;
    max-width: 853px !important; 
    
    height: auto !important; 
    
    min-height: 250px; 
    object-fit: cover;
    
    border-radius: 15px;
    display: block;
    margin: 20px auto; 
}

@media (max-width: 1024px) {
    .blog-detail-wrapper .blod-detail-description img {
        max-width: 100% !important;
        border-radius: 12px;
    }
}

/* Sabhi Mobile Devices ke liye */
@media screen and (max-width: 991px) {
    .blog-detail-wrapper {
        margin-top: -40px !important; /* !important tab use karein agar koi aur style ise override kar raha ho */
    }
}


@media (max-width: 768px) {
    .blog-detail-wrapper .blod-detail-description img {
        min-height: auto; 
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .your-card-class {
        position: relative !important; 
        width: 100% !important;        
        margin-top: 20px;              
        top: auto;
        right: auto;
    }
}


/* Mobile View adjustments */
@media (max-width: 768px) {
    .blog-detail-title h3 { /* Apni class ka naam yahan likhein */
        font-size: 24px;   /* Font thoda chota kar diya */
        width: 100%;      /* Mobile par full width better lagti hai */
        line-height: 1.3; /* Behtar readability ke liye */
        margin-bottom: 15px;
    }
}



