/* Rich text content styling with Hindi support - Mobile first */
.post-content {
    line-height: 1.8;
    font-size: 14px;
    color: #333;
    max-width: 100%;
    font-family: "Noto Sans", "Noto Sans Devanagari", Arial, sans-serif;
    padding: 1rem;
}

/* Image styling within post content */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    display: block;
}

/* Hindi text specific styling */
.post-content .hindi-text,
.post-content *[lang="hi"] {
    font-family: "Noto Sans Devanagari", "Noto Sans", Arial, sans-serif;
    line-height: 2.0;
    letter-spacing: 0.02em;
    word-spacing: 0.1em;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: "Noto Sans", "Noto Sans Devanagari", Arial, sans-serif;
}

/* TABLET STYLES */
@media (min-width: 768px) {
    .post-content {
        font-size: 16px;
        padding: 1.5rem;
    }
    
    .post-content h1,
    .post-content h2,
    .post-content h3,
    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin-top: 2rem;
        margin-bottom: 1.25rem;
    }
}

/* DESKTOP STYLES */
@media (min-width: 1024px) {
    .post-content {
        padding: 2rem;
    }
    
    .post-content h1,
    .post-content h2,
    .post-content h3,
    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin-top: 30px;
        margin-bottom: 15px;
    }
}

.post-content h1 {
    font-size: 2.5em;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.post-content h2 {
    font-size: 2em;
    color: #007cba;
}

.post-content h3 {
    font-size: 1.5em;
    color: #333;
}

.post-content p {
    margin-bottom: 20px;
    text-align: justify;
    font-family: "Noto Sans", "Noto Sans Devanagari", Arial, sans-serif;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
    font-family: "Noto Sans", "Noto Sans Devanagari", Arial, sans-serif;
}

.post-content li {
    margin-bottom: 8px;
    font-family: "Noto Sans", "Noto Sans Devanagari", Arial, sans-serif;
}

.post-content a {
    color: #007cba;
    text-decoration: none;
    border-bottom: 1px dotted #007cba;
}

.post-content a:hover {
    color: #005a8b;
    border-bottom: 1px solid #005a8b;
}

.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.post-content blockquote {
    border-left: 4px solid #007cba;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f8f9fa;
    font-style: italic;
}

.post-content strong {
    font-weight: 600;
    color: #222;
}

.post-content em {
    font-style: italic;
    color: #555;
}
