/* Single Page Global */
.extent-single-blog-container, .extent-single-pr-container { padding: 40px 0; background: #fff; }
.single-blog-flex { display: flex; gap: 30px; }
.blog-main-content { flex: 2.5; }
.blog-sidebar { flex: 1; }

/* Article Styling */
.blog-entry-title, .pr-entry-title { font-size: 32px; color: #222; font-weight: 800; margin-bottom: 15px; }
.blog-meta, .pr-meta { font-size: 13px; color: #888; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.blog-text-content p, .pr-text-content p { line-height: 1.8; color: #444; margin-bottom: 20px; font-size: 15px; }

/* Sidebar Widget */
.sidebar-widget { border: 1px solid #ddd; }
.widget-title { background: #444; color: #fff; padding: 10px 15px; margin: 0; font-size: 16px; }
.widget-list { padding: 15px; }
.side-item { margin-bottom: 12px; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.side-item a { font-size: 14px; color: #004b87; font-weight: bold; text-decoration: none; }

/* Lists Container */
.pr-text-content ul {
    margin: 20px 0 30px 25px; /* List ko thoda right shift karne ke liye */
    padding: 0;
    list-style: none; /* Default dots hatakar custom lagayenge */
}

/* Individual List Item */
.pr-text-content ul li {
    position: relative;
    padding-left: 30px; /* Bullet aur text ke beech jagah */
    margin-bottom: 15px; /* Do points ke beech gap */
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}

/* Custom Bullet Icon (Dot) */
.pr-text-content ul li::before {
    content: "•"; /* Bullet symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: #004b87; /* Aapki brand ka blue color */
    font-weight: bold;
    font-size: 24px; /* Bullet ka size bada kiya */
    line-height: 1;
}

/* Bold text inside list (Agriculture, Defense etc.) */
.pr-text-content ul li strong {
    color: #222;
    font-weight: 700;
    display: inline-block;
    margin-right: 5px;
}

/* Numbered Lists (FAQs ke liye) */
.pr-text-content ol {
    margin: 20px 0 30px 25px;
    padding: 0;
    counter-reset: item;
}

.pr-text-content ol li {
    display: block;
    position: relative;
    margin-bottom: 12px;
    padding-left: 35px;
}

.pr-text-content ol li::before {
    content: counter(item) ". ";
    counter-increment: item;
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #004b87;
}