[comp="breadcrumbs"] {
    background: var(--color-primary);
    padding: 0;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* gap: 10px; */
    /* border: 1px solid #ababab; */
    border-radius: var(--border-radius);
    overflow: hidden;
}

[comp="breadcrumbs"] .link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    gap: 5px;
}

[comp="breadcrumbs"] .link:not(:first-child) {
    background: #0000004d;
    /* border-left: 1px solid #ffffff; */
}

[comp="breadcrumbs"] .link:not(:first-child):not(:last-child) {
    background: #0000001c;
}

@media screen and (max-width: 768px) {
    [comp="breadcrumbs"] .link {
        font-size: 12px;
        line-height: 1.1;
    }
}
