/* 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;
}
/* Table of Contents - Clean Style */
.toc-container {
    background-color: #fcfcfc;
    border: 1px solid #e1e1e1;
    border-left: 5px solid #d90429; /* आपकी थीम का लाल रंग */
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.toc-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* बुलेट्स को पूरी तरह हटाने के लिए */
.toc-container ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.toc-container li {
    list-style: none !important;
    list-style-type: none !important;
    background: none !important; /* अगर कोई इमेज बुलेट है तो उसे हटाएगा */
    padding: 6px 0 6px 20px !important;
    position: relative;
}

/* कस्टम छोटा तीर (Arrow) - यह बहुत प्रोफेशनल लगता है */
.toc-container li::before {
    content: "→"; 
    position: absolute;
    left: 0;
    color: #d90429;
    font-weight: bold;
}
.toc-container {
    clear: both !important;
    display: block;
    margin: 30px 0 !important; /* ऊपर और नीचे 30px की जगह */
    background-color: #f9f9f9;
    border-left: 5px solid #d90429;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.toc-container a {
    color: #1a73e8 !important; /* High Contrast Blue */
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.toc-container a:hover {
    color: #d90429 !important;
    text-decoration: underline;
}

/* Sub-headings (h3) को थोड़ा और अंदर खिसकाएं */
.toc-level-3 {
    margin-left: 25px !important;
}