.breadcrumb {
  list-style: none;
  display: flex;
  padding: 10px 15px 0px 0px;
  border-radius: 6px;
}

.breadcrumb li {
  position: relative;
  margin-right: 15px;
  padding-right: 15px;
}

.breadcrumb li::after {
  content: ">";
  position: absolute;
  right: 0;
  color: #cc3300;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  text-decoration: none;
  color: #cc3300;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li:last-child {
  color: #cc3300;
  font-weight: bold;
}