/* ==============================
   BLOG GLOBAL STYLE
============================== */

body {
    background-color: #f8f9fa;
}

.blog-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.blog-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-logo img {
    height: 40px;
}

.blog-nav a {
    margin-left: 18px;
    font-size: 14px;
    font-weight: 700;   /* 🔥 change 600 → 700 */
    color: #333;
    text-decoration: none;
}


.blog-nav a:hover {
    color: ##763c18;
}

/* ==============================
   BLOG CONTENT
============================== */

.blog-article {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
}

.blog-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-content h2 {
    margin-top: 30px;
    font-size: 22px;
}

.blog-content h3 {
    margin-top: 22px;
    font-size: 18px;
}

/* ==============================
   TABLE OF CONTENTS
============================== */

.blog-toc {
    background: #f1f3f5;
    border-radius: 6px;
    padding: 15px;
}

.blog-toc ul {
    margin-top: 10px;
    padding-left: 18px;
}

.blog-toc li {
    margin-bottom: 6px;
}

.blog-toc li.toc-sub {
    margin-left: 15px;
}

/* ==============================
   SIDEBAR
============================== */

.blog-sidebar {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
}

.blog-sidebar h5 {
    font-size: 18px;
    margin-bottom: 12px;
}

.blog-sidebar ul {
    padding-left: 18px;
}

.blog-sidebar ul li {
    margin-bottom: 8px;
}

.blog-sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.blog-sidebar ul li a:hover {
    color: #0d6efd;
}

/* ==============================
   COMMENTS
============================== */

.comment-box {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* ==============================
   BLOG FOOTER
============================== */

.blog-footer {
    background: #0b1c2d;
    color: #cfd6dd;
    padding: 40px 0 20px;
}

.blog-footer h5,
.blog-footer h6 {
    color: #ffffff;
}

.blog-footer a {
    color: #cfd6dd;
    text-decoration: none;
}

.blog-footer a:hover {
    color: #ffffff;
}

.blog-footer hr {
    border-color: rgba(255,255,255,0.1);
}
/* FIX SIDEBAR OVERFLOW ISSUE */
.blog-sidebar {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 25px;
    }
}
/* BETTER SPACING */
.container.py-5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
.blog-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.blog-footer {
  background: #0b1c2d;
  color: #fff;
  padding: 40px 0;
}
.blog-sidebar {
    position: sticky;
    top: 90px; /* header height ke baad */
}

@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }
}

/* BLOG MENU BOLD FIX */
.navbar-nav .nav-link {
    font-weight: 700 !important;
    font-size: 15px;
    color: #222 !important;
}


