


.breadcrumbs {
    color: black;
}
.breadcrumbs a {
    color:inherit;
}

body.single-events .breadcrumbs { background: var(--green-darker); color: white; }
body.single-post .breadcrumbs { background: var(--blue-darker); color: white; }

.breadcrumbs ul { display: flex; align-items: flex-end; font-size: 14px; padding:24px 0;}
.breadcrumbs ul li {
    font-size: inherit;
    line-height: 17px; font-weight: 400;
    color: inherit;

}

.breadcrumbs ul li:not(:last-child)::after {content:"\2022"; padding: 0 0.75em; font-weight: inherit;  }



.breadcrumbs a {
    transition: all 0.2s ease; cursor: pointer;
    text-decoration: none;
    padding: 0 0;
    background-image: linear-gradient(currentColor, currentColor), linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background-position: 0 100%, 0 100%;
    background-repeat: no-repeat, no-repeat;
    background-size: 0 1px, 100% 1px;
    transition: background-size .2s;

}


.breadcrumbs a { background-size: 100% 1px, 100% 1px }
.breadcrumbs a:hover {
    background-size: 100% 100%, 100% 100%; color: white;

}



body:not(.hashero) .breadcrumbs a:hover {
    background-image: linear-gradient(black, black), linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background-size: 100% 100%, 100% 100%; color: white;

}

.breadcrumbs a:focus-visible {box-shadow: 0 0 0 1px white, 0 0 0 3px var(--green); border-radius: 2px; }

body.single-events .breadcrumbs a:focus-visible {box-shadow: 0 0 0 1px var(--green-darker), 0 0 0 3px var(--yellow); border-radius: 2px; }



@media all and (max-width: 899px) {

    .breadcrumbs {
        display: none;
    }

}
