.page-hero {
  position: relative;
  flex-direction: column;
  /* margin-bottom: 3rem; */
}
.blog-hero {
  position: relative;
  flex-direction: column;
}

.page-hero .page-hero__image-wrapper,
.blog-hero .page-hero__image-wrapper {
  position: relative;
  display: flex;
}
.page-hero .page-hero__inner,
.blog-hero .page-hero__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
}
.meta_title_wrapper {
  display: grid;
}
.page-hero .page-hero__text-wrapper,
.blog-hero .page-hero__text-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  --color-text: 255, 255, 255;
  color: rgb(var(--color-text));
  gap: 8px;
}
.page-hero .page-hero__image,
.blog-hero .page-hero__image {
  width: 100%;
  min-height: 200px;
  max-height: 250px;
  object-fit: cover;
  height: auto;
}
.article-hero__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 759px) {
  .page-hero .page-hero__image,
  .blog-hero .page-hero__image:not(.has_long_description) {
    height: 180px;
  }
  .page-hero .page-hero__text-wrapper,
  .blog-hero .page-hero__text-wrapper {
    gap: 4px;
  }
}
.page-hero .page-hero__description.no_image,
.blog-hero .page-hero__description.no_image {
  margin-top: 20px;
}
@media (max-width: 959px) {
  .page-hero .page-hero__description.no_image,
  .blog-hero .page-hero__description.no_image {
    margin-top: 10px;
  }
}
.page-hero .page-hero__description,
.blog-hero .page-hero__description {
  width: 35rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 759px) {
  .page-hero .page-hero__description,
  .blog-hero .page-hero__description {
    width: 100%;
  }
}
.page-hero__title {
  font-weight: 600;
}
.page-hero:not(.has-page-image) .page-hero__title,
.blog-hero:not(.has-page-image) .page-hero__title {
  margin-top: 40px;
}

@media (max-width: 959px) {
  .page-hero:not(.has-page-image) .page-hero__title,
  .blog-hero:not(.has-page-image) .page-hero__title {
    margin-top: 20px;
  }
}

.breadcrumbs {
  margin: 40px 0px;
  font-size: 13px;
}
.page-hero__mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.page-hero__meta_wrapper {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
