.p-section-title-page {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  min-height: 15rem;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
}

.p-section-title-page__picture {
  position: absolute;
  z-index: 10;
  inset: 50% 0 0 0;
}

.p-section-title-page__picture-img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.p-section-title-page::before {
  content: "";
  position: absolute;
  z-index: 20;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 80%);
  background: var(--v-color__2);
  background: var(--vp-helper-hero-style__gradient);
}

.p-section-title-page__content {
  position: relative;
  z-index: 30;
  margin-left: var(--vp-helper-hero-style__content-margin);
  width: var(--vp-helper-hero-style__content-width);
}

@media (min-width: 1200px) {
  .p-section-title-page {
    min-height: 20rem;
    justify-content: flex-start;
    text-align: left;
    padding-top: 0;
    align-items: center;
  }

  .p-section-title-page::before {
    inset: 0 auto 0 0;
    width: 70%;
    transform: skew(35deg);
    transform-origin: left bottom 0px;
    clip-path: none;
  }

  .p-section-title-page__picture {
    inset: 0 0 0 auto;
    width: var(--vp-helper-hero-style__picture-width);
  }
}
