.cyno-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.cyno-title__heading {
  color: var(--fs-color-primary);
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.cyno-title__view-more {
  display: flex;
  align-items: center;
}

.cyno-title__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  padding: 6px 15px;
  color: var(--fs-color-primary);
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 120px;
}
.cyno-title__link:hover {
  background-color: var(--fs-color-primary) !important;
  color: #fff;
}

.cyno-title__link i {
  margin-right: 8px;
  font-size: 14px;
}

.cyno-title__line {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  display: flex;
}

.cyno-title__line--yellow {
  width: 100px;
  height: 100%;
  background-color: var(--fs-color-secondary);
}

.cyno-title__line--gray {
  flex: 1;
  height: 100%;
  background-color: #e0e0e0;
}

.page-header-custom {
    padding: 0 16px
}
.page-header-wrapper .page-breadcrumbs.uppercase {
    text-transform: unset !important;
}

.page-header-wrapper .page-breadcrumbs > p {
    line-height: 1.6;
}