/* ==========================================================================
   TIER-1 BREADCRUMBS: NO SHADOW, NO BACKGROUNDS, BEFORE PAGE TITLE
   ========================================================================== */

/* 1. Breadcrumb Container (Placed Above Title) */
.mcb-breadcrumb-wrapper {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 20px auto 0 auto !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
    position: relative !important;
}

/* 2. Circular Home SVG Button (ZERO SHADOW) */
.mcb-crumb-home-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(148, 163, 184, 0.4) !important;
    background: transparent !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: none !important; /* ZERO SHADOW */
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
    padding: 0 !important;
}

.mcb-crumb-home-btn svg {
    stroke: currentColor !important;
    transition: stroke 0.2s ease, transform 0.2s ease !important;
}

.mcb-crumb-home-btn:hover {
    border-color: #7c3aed !important;
    color: #7c3aed !important;
    transform: scale(1.05) !important;
    box-shadow: none !important; /* ZERO SHADOW */
}

.mcb-crumb-home-btn:hover svg {
    stroke: #7c3aed !important;
}

/* 3. Vector Chevron Separator (>) */
.mcb-crumb-separator {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #94a3b8 !important;
    opacity: 0.6 !important;
    padding: 0 2px !important;
    user-select: none !important;
}

.mcb-crumb-separator svg {
    stroke: currentColor !important;
}

/* 4. Breadcrumb Links (NO BACKGROUND) */
.mcb-crumb-link {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    text-decoration: none !important;
    padding: 2px 4px !important;
    background: transparent !important; /* ZERO BACKGROUND */
    transition: color 0.15s ease !important;
}

.mcb-crumb-link:hover {
    color: #7c3aed !important;
    background: transparent !important; /* ZERO BACKGROUND */
    text-decoration: underline !important;
}

/* 5. Current Active Page (TEXT HIGHLIGHT ONLY, ZERO BACKGROUND) */
.mcb-crumb-current {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #7c3aed !important; /* Purple Text Highlight */
    background: transparent !important; /* ZERO BACKGROUND */
    padding: 2px 4px !important;
    border-radius: 0 !important;
    letter-spacing: 0.2px !important;
}

/* 6. Mobile Responsiveness */
@media screen and (max-width: 850px) {
    .mcb-breadcrumb-wrapper {
        gap: 6px !important;
        margin: 14px auto 0 auto !important;
        padding: 0 16px !important;
    }

    .mcb-crumb-home-btn {
        width: 28px !important;
        height: 28px !important;
    }

    .mcb-crumb-link,
    .mcb-crumb-current {
        font-size: 12.5px !important;
        padding: 1px 3px !important;
    }
}