.foc-directory-children {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.foc-directory-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f5f5f5;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    color: #111;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.foc-directory-pill__label {
    white-space: nowrap;
}

.foc-directory-pill:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}


/* Breadcrumbs */

.foc-breadcrumb {
    font-size: 13px;
    margin-bottom: 16px;
}

.foc-breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.foc-breadcrumb__item::after {
    content: "›";
    margin-left: 4px;
    color: rgba(0,0,0,0.4);
}

.foc-breadcrumb__item:last-child::after {
    content: "";
    margin: 0;
}

.foc-breadcrumb__link {
    text-decoration: none;
    color: rgba(0,0,0,0.7);
}

.foc-breadcrumb__link:hover {
    text-decoration: underline;
}

.foc-breadcrumb__current {
    font-weight: 500;
    color: #000;
}
