

.breadcrumb-list {
  display: flex;
  list-style: none;
  margin: 0;
  border-radius: 5px;
  padding-left: 0;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  font-family: var(--font-osw);
  position: relative;
  font-size: 18px;
  font-weight: 500;
}

.breadcrumb-list li + li::before {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 10px;
  color: #fff;
}

.breadcrumb-list li a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s;
}

.breadcrumb-list li a:hover {
  color: #0056b3;
}

.breadcrumb-list li a.active {
  font-weight: bold;
  color: #fff;
  font-family: var(--font-osw);
  position: relative;
  font-size: 18px;
  font-weight: 500;
}

.breadcrumb-list li a.active::before {
  content: "\f015"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  margin-right: 6px;
  color: #fff;
}

.breadcrumb-all-tile label {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  color: #fff;
  font-family: var(--font-osw);
}

.breadcrumb-all-tile p{
  color: #fff;
  font-family: var(--font-pop);
  font-family: 16px;
}

.breadcrumb-padding {
    position: relative; /* make parent positioning context */
}

.breadcrumb-padding .milestone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 31, 54, 0.5); /* semi-transparent */
    border-radius: 20px;
    z-index: 0; /* behind content */
}

.breadcrumb-padding .breadcrumb-all-tile {
    position: relative;
    z-index: 1; /* ensures content is above overlay */
}
