/**
 * Qing Breadcrumb widget styles.
 *
 * Trail reads "Weddings / Wedding Venues": muted links, a lighter separator,
 * and a darker current page. Colour/size defaults mirror the Hitched pattern
 * (#6c6c6c, 0.875rem).
 */

.qing-bc {
    font-family: "ProximaNova", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.qing-bc__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.3125rem;
}

/* Reset the theme's global list styling, which adds bullets and indent. */
.qing-bc__list > li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.qing-bc__item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

/* ---------- Links ---------- */
.qing-bc__link {
    color: #6c6c6c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.qing-bc__link:hover,
.qing-bc__link:focus-visible {
    color: #2f2b28;
    text-decoration: underline;
}

.qing-bc__link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* ---------- Plain text crumb ---------- */
.qing-bc__text {
    color: #6c6c6c;
}

/* ---------- Current page ---------- */
.qing-bc__current {
    color: #2f2b28;
}

/* ---------- Separator ---------- */
.qing-bc__sep {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    margin-right: 8px;
    color: #b3aca4;
    /* Never let the separator shrink when the trail is truncated. */
    flex: 0 0 auto;
    -webkit-user-select: none;
    user-select: none;
}

.qing-bc__sep svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: none;
    stroke: currentColor;
}

/* ---------- Single-line truncation ---------- */
/* Set by the Single Line control. The last crumb is the one allowed to clip. */
.qing-bc__list[style*="nowrap"] .qing-bc__item:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- Editor notice ---------- */
.qing-bc__notice {
    padding: 10px 14px;
    background: #fdf6e6;
    border: 1px solid #e8d9b0;
    border-radius: 4px;
    color: #6b5a2b;
    font-size: 14px;
}
