/* =========================================
   l00t — Breadcrumbs
   Used on single post, single indicator,
   taxonomy archives, and search results.
   ========================================= */

.l00t-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;

    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 0 2rem;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: lowercase;
    line-height: 1.4;
}

.l00t-crumb-link {
    color: rgba(200, 210, 255, 0.65);
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.l00t-crumb-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(200, 210, 255, 0.5);
}

.l00t-crumb-sep {
    color: rgba(200, 210, 255, 0.25);
    user-select: none;
    font-weight: 400;
}

.l00t-crumb-current {
    color: rgba(200, 200, 210, 0.45);
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 700px) {
    .l00t-breadcrumbs {
        font-size: 0.78rem;
        padding: 0 1.25rem;
        gap: 0.4rem;
    }
    .l00t-crumb-current {
        max-width: 200px;
    }
}