.c-breadcrumb {
  padding: 16px 0;
  background: #000;
}
.c-breadcrumb ol {
  font-size: 1rem;
  list-style: none;
  width: min(100% - 80px, 1126px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb ol {
    width: auto;
    margin: 0 20px;
    font-size: 0.875rem;
  }
}
.c-breadcrumb ol li {
  display: inline;
  color: #fff;
}
.c-breadcrumb ol li:first-child {
  text-transform: uppercase;
}
.c-breadcrumb ol li + li::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 1em 0 0.75em;
  content: "/";
}
.c-breadcrumb ol li a {
  position: relative;
  color: #fff;
  text-decoration: none;
}
.c-breadcrumb ol li a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .c-breadcrumb ol li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left;
  }
}
.c-breadcrumb ol li a.focus-visible::after, .c-breadcrumb ol li a:focus-visible::after {
  transform: scale(1, 1);
  transform-origin: left;
}
.c-breadcrumb ol li [aria-current=page] {
  color: #fff;
  text-decoration: underline;
  pointer-events: none;
}