/* ==============================
   BLOGS – DESKTOP GAP FIX
   ============================== */

.canary-blog-minihead {
    background: #fff8f0;
    position: relative;
    z-index: 1;

    /* 🔥 MAIN FIX */
    margin-top: 120px;   /* pushes section BELOW header */
    padding: 30px 0 25px;
}

/* Center content */
.canary-blog-minihead-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

/* Orange title */
.canary-blog-title {
    margin: 0 0 6px;
    font-size: 42px;
    font-weight: 700;
    color: #f5a623;
}

/* Breadcrumb reset */
.canary-blog-breadcrumb {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex;
    gap: 8px;
    font-size: 14px;
}

.canary-blog-breadcrumb li {
    list-style: none !important;
    color: #9a9a9a;
}

.canary-blog-breadcrumb li a {
    color: #6f6f6f;
    text-decoration: none;
}

.canary-blog-breadcrumb li::after {
    content: "/";
    margin-left: 8px;
    color: #ccc;
}

.canary-blog-breadcrumb li:last-child::after {
    display: none;
}

/* ==============================
   MOBILE
   ============================== */
@media (max-width: 767px) {
    .canary-blog-minihead {
        margin-top: 95px;   /* smaller header on mobile */
        padding: 20px 0 18px;
    }

    .canary-blog-title {
        font-size: 28px;
    }
}



 .bsm-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: linear-gradient(to bottom, rgba(241, 238, 238, 0.8), rgba(0, 0, 0, 0.0));
        transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }

    /* Main navigation */
    .bsm-nav {
        font-size: 14px;
        font-weight: 600;
        color: #ef9b11;
        text-decoration: none;
        padding: 8px 14px;
        display: inline-block;
        line-height: 1.2;
        transition: 0.25s ease;
        display: flex;
        align-items: center;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

   .bsm-nav>ul>li>a{
    color: #ef9b11;
   }

    .bsm-topbar a{
        margin-left: 18px;
        white-space: nowrap;
        cursor: pointer;
        color: #ef9b11;
        transition: color 0.3s ease;
    }