/* ==========================================================================
   Breadcrumb — shared editorial breadcrumb (Sprint 2 Faza D)
   Canonical home: replaces .breadcrumb-section in app.css and the editorial
   override in ad-show.css. Used on every detail page (ad show, neighborhood
   show, article show, agency show, category, author).

   Visual: cream surface, caps tracking 0.16em, middle-dot separator,
   taupe color → terracotta on hover, ink for the active page.
   ========================================================================== */

.breadcrumb-section {
    background: var(--cream);
    padding: 18px 0;
    border-bottom: 1px solid var(--hairline);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item,
.breadcrumb-item a {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--terracotta);
}

.breadcrumb-item.active {
    color: var(--ink);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '·';
    padding: 0 8px;
    color: var(--hairline-strong);
}
