.c-breadcrumb {
padding-block: 26px;
border-bottom: 1px solid #ddd;
}
.c-breadcrumb__list {
display: flex;
column-gap: 15px;
font-size: 14px;
white-space: nowrap;
line-height: 1;
}
.c-breadcrumb__item {
display: flex;
align-items: center;
column-gap: 10px;
}
.c-breadcrumb__item:where(:last-of-type) {
color: var(--tcd-accent-color);
}
.c-breadcrumb__item-home {
font-size: 1.5em;
margin: -0.1em -0.2em -0.2em;
}
.c-breadcrumb__item-arrow {
font-size: 1.5em;
color: initial;
margin: -0.2em;
}
@media (any-hover: hover) {
.c-breadcrumb__item :where(a):hover {
color: var(--tcd-accent-color);
}
}
@media not all and (max-width: 991px) {
.c-breadcrumb__item>:where(span) {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
visibility: visible;
}
.c-breadcrumb__item:last-of-type {
flex: 1;
overflow: hidden;
}
}
@media (max-width: 991px) {
.c-breadcrumb {
padding-block: 17px;
}
.c-breadcrumb__list {
font-size: 12px;
overflow: auto hidden;
width: 100%;
padding-inline: 20px;
-ms-overflow-style: none;
scrollbar-width: none;
}
.c-breadcrumb__list::-webkit-scrollbar {
display: none;
}
.c-breadcrumb__item {
min-inline-size: auto;
}
}