/* ── Component: Collections Page Header ──────────────────────────── */

.wb-cph {
    padding: 2.5rem 1rem 0 1rem;
}

/* ── Breadcrumbs ─────────────────────────────────────────────────── */
.wb-cph__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.25rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.wb-cph__breadcrumbs::-webkit-scrollbar {
    display: none;
}

.wb-cph__breadcrumbs a,
.wb-cph__breadcrumbs span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-ui);
    white-space: nowrap;
    flex-shrink: 0;
}

.wb-cph__breadcrumbs a:hover {
    color: var(--primary);
}

.wb-cph__breadcrumbs i {
    font-size: 0.55rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ── Title ───────────────────────────────────────────────────────── */
.wb-cph__title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 1rem;
    line-height: 1.1;
}

/* ── Description ─────────────────────────────────────────────────── */
.wb-cph__description {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.75;
    margin: 0;
    font-family: var(--font-body);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .wb-cph {
        padding: 1.5rem 1rem 1.25rem;
    }

    .wb-cph__title {
        font-size: 2rem;
    }
}