/* Blog Tags */
.inflanar-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inflanar-blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inflanar-blog-tag span {
    font-size: 12px;
    opacity: 0.7;
}

.inflanar-blog-tag:hover {
    background: #ff6b00;
    color: #fff;
}

/* =========================
   AUTO BLOG CONTENT FIX
========================= */

.blog-content-auto {
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
}

.blog-content-auto h1,
.blog-content-auto h2,
.blog-content-auto h3 {
    font-weight: 700;
}

.blog-content-auto h3{
    font-size: 20px;
}

.blog-content-auto p {
    margin-bottom: 16px;
}

.blog-content-auto img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}




/* Breadcrumb Section */
.inflanar-breadcrumb {
    position: relative;
    height: 200px;
    background: linear-gradient(
        135deg,
        #9adcf8 0%,
        #b9e3ec 30%,
        #d9c7f2 55%,
        #f6c0d9 70%,
        #f7b58a 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Soft texture overlay */
.inflanar-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Title */
.breadcrumb-title {
    font-size: 40px;
    font-weight: 600;
    color: #0b5d3b;
    margin-bottom: 8px;
}

/* Breadcrumb text */
.breadcrumb-home {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Home link */
.breadcrumb-home a {
    color: #0b5d3b;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

/* Dash */
.breadcrumb-home .dash {
    margin: 0 6px;
}

/* ------------------
   Mobile Responsive
------------------- */
@media (max-width: 767px) {

    .breadcrumb-title {
        font-size: 28px;
    }

    .breadcrumb-home {
        font-size: 14px;
    }

    /* Home on separate line */
    .breadcrumb-home a {
        display: block;
        margin-bottom: 4px;
    }
}






