:root {
    --mainColor: #0f3d2e ;
    --secondColor: #d4af37;
    --textColor: #1a202c;
}

/* Base Typography */
#blog-content {
    color: #374151; /* Tailwind text-gray-700 */
    line-height: 1.75;
}

#blog-content p {
    margin-bottom: 1.25rem;
}

/* Headings */
#blog-content h2 {
    font-size: 1.75rem; 
    font-weight: 700;
    color: #111827; 
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb; /* Ek clean underline effect ke liye */
    padding-bottom: 0.5rem;
}

#blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* Bold & Highlights */
#blog-content strong,
#blog-content b {
    font-weight: 600;
    color: #111827; /* Thoda dark color strong text ke liye */
}

#blog-content mark,
#blog-content .highlight {
    background-color: #fef08a; /* Soft yellow highlight */
    color: #854d0e;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

/* Links */
#blog-content a {
    color: #2563eb; 
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease-in-out;
}

#blog-content a:hover {
    color: #1d4ed8;
}

/* Lists */
#blog-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

#blog-content li {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Fix: WYSIWYG editors often wrap li content in p tags */
#blog-content li p {
    display: inline;
    margin-bottom: 0;
}

/* Images */
#blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 2rem auto;
    display: block;
}