/* ============================================
   Breadcrumbs Styling - Add to your CSS file
   ============================================ */

/* Remove any space between header and breadcrumbs */
#masthead {
    margin-bottom: 0 !important;
}

.site-content {
    padding-top: 0 !important;
}

/* Breadcrumbs Container */
.rank-math-breadcrumb {
    background: #f5f5f5;
    padding: 12px 0;
    margin: 0 !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #e6e6e6;
}

.rank-math-breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Breadcrumbs Text */
.rank-math-breadcrumb p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Breadcrumbs Links */
.rank-math-breadcrumb a {
    color: #F16D2F;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rank-math-breadcrumb a:hover {
    color: #d64600;
    text-decoration: underline;
}

/* Current Page (last item) */
.rank-math-breadcrumb .last {
    color: #666;
    font-weight: 500;
}

/* Separator styling */
.rank-math-breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

/* RTL Support */
.rtl .rank-math-breadcrumb {
    text-align: right;
}

.rtl .rank-math-breadcrumb .separator {
    transform: rotate(180deg);
    display: inline-block;
}

/* Mobile Responsive */
@media screen and (max-width: 790px) {
    .rank-math-breadcrumb {
        padding: 10px 0;
        font-size: 13px;
        margin: 0 !important;
        margin-bottom: 15px !important;
    }
    
    .rank-math-breadcrumb p {
        font-size: 12px;
    }
    
    .rank-math-breadcrumb .separator {
        margin: 0 5px;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) and (min-width: 791px) {
    .rank-math-breadcrumb {
        padding: 11px 0;
    }
}