/**
 * My CPT & Fields Builder — Frontend Styles
 * (Loaded on frontend for breadcrumbs, FAQ, query elements)
 */
.my-cpt-breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #646970;
}
.my-cpt-breadcrumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.my-cpt-breadcrumbs-item {
    display: flex;
    align-items: center;
}
.my-cpt-breadcrumbs-separator {
    margin: 0 8px;
    color: #c3c4c7;
}
.my-cpt-breadcrumbs-item a {
    color: var(--my-cpt-link, #2271b1);
    text-decoration: none;
}
.my-cpt-breadcrumbs-item a:hover {
    text-decoration: underline;
}
.my-cpt-breadcrumbs-current {
    color: var(--my-cpt-text, #1d2327);
    font-weight: 500;
}
