.ornament {
  position: relative;
  transition: width 0.5s ease-in-out;
}

.ornament::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 8%;               
  bottom: 8%;
  width: 8px;
  background-color: var(--bs-primary);
  transition: width 0.3s ease-in-out;
  z-index: 1;
  /*mix-blend-mode: multiply;*/
}

.card.ornament:hover::before  {
  width: 100% ; 
  
}

.branding {

    height: 50px;

}

.search-block-form {
    display: flex;
    gap: 20px;
}

.region-topnav {
    margin-inline: auto;
}

.hero-ornament {
  transform: translateY(0%);
  z-index: 1;
  padding: 20px 30px;
}


.hero-ornament::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 100%;
  background-color: currentcolor;
}