/**
 * KS SEO Boost - Breadcrumbs Styling
 */
.kssb-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 12px 0 16px;
    padding: 0;
    color: #64748b;
}

.kssb-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.15s ease, text-decoration 0.15s ease;
}

.kssb-breadcrumbs a:hover,
.kssb-breadcrumbs a:focus {
    color: #1d4ed8;
    text-decoration: underline;
}

.kssb-breadcrumb-sep {
    display: inline-block;
    margin: 0 6px;
    color: #94a3b8;
    user-select: none;
}

.kssb-breadcrumb-prefix {
    margin-right: 4px;
    color: #475569;
    font-weight: 500;
}

.kssb-breadcrumb-current {
    color: #334155;
    font-weight: 600;
}

@media (max-width: 600px) {
    .kssb-breadcrumbs {
        font-size: 0.85em;
        margin: 8px 0 12px;
    }
}
