/* ============================================
   article-desi.css - DK Community Global Style
   सभी आर्टिकल्स के लिए एक जैसी स्टाइल
   ============================================ */

/* --- Google Font (Noto Sans Devanagari) --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;600;700&display=swap');

/* --- बेसिक रीसेट और बॉडी --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Devanagari', Arial, sans-serif;
    line-height: 1.8;
    color: #222;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
}

/* --- हेडिंग्स --- */
h1 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 1.4rem;
    margin-top: 35px;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
    padding-left: 12px;
    font-weight: 600;
}

h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    color: #1e3a5f;
    font-weight: 600;
}

/* --- पैराग्राफ और लिस्ट --- */
p {
    margin-bottom: 15px;
}

ul, ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
}

/* --- इंट्रो बॉक्स --- */
.intro {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* --- पॉइंट बॉक्स --- */
.point {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

/* --- हाइलाइट / नोट --- */
.note {
    background: #fef9c3;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    margin: 15px 0;
}

/* --- आर्टिकल इमेज --- */
/* ==================== ARTICLE IMAGE ==================== */
.article-image {
    display: none;  /* पूरी इमेज गायब */
}

/* --- ऑथर --- */
.author {
    text-align: right;
    font-weight: 600;
    margin-top: 30px;
}

/* --- शेयर बटन --- */
.share-btn {
    display: block;
    margin: 30px auto;
    padding: 12px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Noto Sans Devanagari', Arial, sans-serif;
}

.share-btn:hover {
    background: #1d4ed8;
}

/* --- आर्टिकल बटन बॉक्स (Next/Prev Links) --- */
.article-btn-box {
    margin: 15px 0;
    text-align: center;
}

.article-btn-box a {
    display: inline-block;
    padding: 12px 20px;
    background: #f1f5f9;
    color: #1e40af;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.article-btn-box a:hover {
    background: #e0e7ff;
    border-color: #3b82f6;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 60px;
    padding: 35px 20px 25px;
    background: #f7f3eb;
    color: #4b5563;
    text-align: center;
    border-top: 1px solid #e5ddd0;
    font-family: 'Outfit', sans-serif;
}

/* Footer Main Links */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 22px;
}

.footer-links a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #b45309;
    text-decoration: underline;
}

/* Footer Categories */
.footer-categories {
    max-width: 900px;
    margin: 0 auto 22px;
    padding: 15px 12px;
    font-size: 14px;
    line-height: 2;
    border-top: 1px solid #e5ddd0;
    border-bottom: 1px solid #e5ddd0;
}

.footer-categories a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-categories a:hover {
    color: #b45309;
    text-decoration: underline;
}

/* Copyright */
.footer p {
    margin: 8px auto;
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
}

.footer p strong {
    color: #374151;
}

/* Description */
.footer .copy {
    max-width: 850px;
    margin: 12px auto 0;
    font-size: 12px;
    line-height: 1.8;
    color: #6b7280;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

    .footer {
        margin-top: 40px;
        padding: 30px 15px 22px;
    }

    .footer-links {
        gap: 7px 14px;
        margin-bottom: 18px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-categories {
        padding: 13px 8px;
        font-size: 13px;
        line-height: 2.2;
    }

    .footer p {
        font-size: 12px;
        line-height: 1.7;
    }

    .footer .copy {
        font-size: 11.5px;
        line-height: 1.8;
    }
}

/* --- रिस्पॉन्सिव --- */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    .footer-links a {
        display: inline-block;
        margin: 5px 8px;
    }
    .footer-categories a {
        display: inline-block;
        margin: 5px 8px;
    }
}