/* Blog Container */
[itemprop="articleBody"] {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.75;
    color: #2b2b2b;
    background-color: #ffffff;
}

/* Headings */
[itemprop="articleBody"] h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111 !important;
}

[itemprop="articleBody"] h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a !important;
    border-left: 4px solid #0d6efd;
    padding-left: 12px;
}

[itemprop="articleBody"] h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
    color: #222 !important;
}

/* Paragraphs */
[itemprop="articleBody"] p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Strong / Bold text */
[itemprop="articleBody"] strong {
    font-weight: 600;
    color: #000 !important;
}

/* Lists */
[itemprop="articleBody"] ul {
    margin: 1rem 0 1.5rem 1.2rem;
    padding-left: 1rem;
}

[itemprop="articleBody"] ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Nested Lists */
[itemprop="articleBody"] ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Highlight boxes (optional use later) */
[itemprop="articleBody"] .info-box {
    background: #f5f8ff;
    border-left: 4px solid #0d6efd;
    padding: 15px;
    margin: 1.5rem 0;
    border-radius: 4px;
}

/* Links */
[itemprop="articleBody"] a {
    color: #0d6efd;
    text-decoration: underline;
}

[itemprop="articleBody"] a:hover {
    text-decoration: underline;
}

/* Section spacing */
[itemprop="articleBody"] h2 + p,
[itemprop="articleBody"] h3 + p {
    margin-top: 0.5rem;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    [itemprop="articleBody"] {
        padding: 15px;
    }

    [itemprop="articleBody"] h1 {
        font-size: 1.8rem;
    }

    [itemprop="articleBody"] h2 {
        font-size: 1.4rem;
    }

    [itemprop="articleBody"] h3 {
        font-size: 1.1rem;
    }

    [itemprop="articleBody"] p,
    [itemprop="articleBody"] ul li {
        font-size: 0.95rem;
    }
}