/**
 * Frontend styling for the Dynamic Breadcrumbs block.
 * Outputs a structured breadcrumb trail with the current post type's plural label as the middle crumb.
 */

.dd-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.dd-breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}


.dd-breadcrumbs__item a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.dd-breadcrumbs__item a:hover {
    opacity: 0.7;
    color: inherit;
    text-decoration: underline;
}

/* Current page crumb — not a link, slightly muted */
.dd-breadcrumbs__item--current {
    opacity: 0.6;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}
