.page-topic-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.page-topic-wrapper .background {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.page-topic-wrapper .background .comp-image {
  height: 100%;
}
.page-topic-wrapper .background .comp-image .image-box {
  padding-top: 0 !important;
  height: 100%;
}
.page-topic-wrapper .background .comp-image .image-box img {
  object-fit: cover;
}
.page-topic-wrapper .headline-wrapper {
  position: relative;
}
.page-topic-wrapper .headline-wrapper::before {
  content: "";
  background: #000000;
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 0;
}
.page-topic-wrapper .headline-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.3) 85%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}
@media (max-width: 1200px) {
  .page-topic-wrapper .headline-wrapper::after {
    width: 100vw;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
  }
}
.page-topic-wrapper .headline-wrapper .headline {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  max-width: 1000px;
  font-weight: 400;
  font-size: 1.9rem;
  text-transform: inherit;
  color: var(--wp--preset--color--white);
  text-align: left;
  margin: 2rem auto 2rem 0;
  border-left: solid 10px #92BB44;
  padding-left: 15px;
  margin-top: 200px;
  margin-left: 2rem;
}
@media (max-width: 1400px) {
  .page-topic-wrapper .headline-wrapper .headline {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .page-topic-wrapper .headline-wrapper .headline {
    font-size: 1.5rem;
  }
}