.page-header {
  position: relative;
}

.page-header .page-header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-header .page-header__title {
  color: #051c2b;
  font-family: "Geologica", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  max-width: 768px;
  width: 100%;
  margin: 0;
  text-wrap: pretty;
}

.page-header .page-header__description {
  color: #334155;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
  margin-top: 20px;
  text-align: center;
  max-width: 768px;
  width: 100%;
  text-wrap: pretty;
}

.page-header .page-header__breadcrumbs {
  margin: 0;
  margin-top: 30px;
}

.page-header .page-header__breadcrumbs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-header .page-header__breadcrumbs-item > a,
.page-header .page-header__breadcrumbs-item > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #051c2b;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  text-decoration: none !important;
}

.page-header .page-header__breadcrumbs-item > a:hover,
.page-header .page-header__breadcrumbs-item > a:focus {
  color: #5691c8;
  text-decoration: underline !important;
}

.page-header .page-header__breadcrumbs-separator {
  font-size: 14px;
}

.page-header .page-header__separator {
  display: none;
  width: 100%;
  height: 1px;
  background: #cbd5e1;
  margin-top: 30px;
}

@media (width <= 768px) {
  .page-header .page-header__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    max-width: 100%;
  }

  .page-header .page-header__description {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-top: 10px;
    text-align: left;
    max-width: 100%;
  }

  .page-header .page-header__breadcrumbs {
    width: 100%;
    margin-top: 10px;
  }

  .page-header .page-header__breadcrumbs-list {
    gap: 6px;
    justify-content: flex-start;
  }

  .page-header .page-header__separator {
    margin-top: 10px;
    display: block;
  }
}
