/* Shared breadcrumb navigation for itinerary pages.
   Sits directly below the compact sticky header, above the hero. */

.vht-breadcrumb {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.vht-breadcrumb__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.65rem 1rem;
}

.vht-breadcrumb__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem; /* ~14.4px */
    line-height: 1.45;
    color: #9ca3af;
}

.vht-breadcrumb__item {
    display: inline-flex;
    align-items: baseline;
    flex: 0 0 auto;
    min-width: 0;
}

/* Keep Home / Tours fixed; let the current title absorb overflow and wrap. */
.vht-breadcrumb__item:last-child {
    flex: 1 1 auto;
}

.vht-breadcrumb__item + .vht-breadcrumb__item::before {
    content: ">";
    display: inline-block;
    margin: 0 0.45rem;
    color: #d1d5db;
    font-weight: 400;
    flex-shrink: 0;
}

/* Hebrew trail reads right-to-left: בית < טיולים < … */
[dir="rtl"] .vht-breadcrumb__item + .vht-breadcrumb__item::before {
    content: "<";
}

.vht-breadcrumb__link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.vht-breadcrumb__link:hover {
    color: #4b5563;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vht-breadcrumb__current {
    color: #4b5563;
    font-weight: 600;
    overflow-wrap: break-word;
    word-break: normal;
}

@media (min-width: 640px) {
    .vht-breadcrumb__list {
        font-size: 0.9375rem; /* 15px */
    }
}
