/* post-style.css - Mastigold.in Special */

/* 1. पोस्ट का मुख्य डब्बा */
.post-main-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* 2. इमेज स्टाइल - जो कंटेंट के साथ फिट होगी */
.post-img-wrap {
    width: 100%;
    max-width: 450px; /* फोटो की चौड़ाई PC पर */
    height: auto;
    border-radius: 10px;
    margin: 0 0 20px 0; /* नीचे गैप */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 3. इमेज को कंटेंट के साथ लपेटने के लिए (Wrapping) */
/* अगर आप फोटो को लेफ्ट रखना चाहते हैं */
.img-left {
    float: left;
    margin: 0 20px 15px 0 !important;
}

/* 4. पोस्ट का टेक्स्ट (लिखावट) */
.post-body-text {
    font-size: 19px;
    line-height: 1.8;
    color: #222;
    text-align: justify; /* दोनों तरफ से बराबर */
}

/* 5. पैराग्राफ के बीच की दूरी */
.post-body-text p {
    margin-bottom: 20px;
}

/* 6. मोबाइल के लिए सुधार (Mobile Responsive) */
@media (max-width: 768px) {
    .post-img-wrap {
        float: none !important; /* मोबाइल पर फोटो बीच में आ जाएगी */
        max-width: 100%;
        display: block;
        margin: 0 auto 20px auto !important;
    }
    
    .post-body-text {
        font-size: 17px; /* मोबाइल पर थोड़ा छोटा फॉन्ट */
        line-height: 1.7;
    }

    .post-main-card {
        padding: 15px;
    }
}

/* 7. क्लियर फिक्स (ताकि लेआउट न बिगड़े) */
.post-body-text::after {
    content: "";
    clear: both;
    display: table;
}