.section__pagehero {
  padding-top: 130px;
  min-height: 500px;
  padding-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.section__pagehero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black-50);
  z-index: 1;
}
.section__pagehero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__pagehero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section__pagehero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.section__pagehero__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section__pagehero__text {
  max-width: 520px;
}
.section__pagehero__links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.section__pagehero__link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section__pagehero__link .icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 992px) {
  .section__pagehero {
    min-height: 400px;
  }
}
