.ocmlabs_contentelements_hero {
  margin-bottom: 2em;
  position: relative;
  font-size: 16px;
}

.ocmlabs_contentelements_hero__content {
  width: 100%;
  max-height: 50vh;

  display: inline-flex;

  aspect-ratio: 3/2;
}

.ocmlabs_contentelements_hero__image {
  --focus-y: 0.5;
  --focus-x: 0.5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x) var(--focus-y);
  
  aspect-ratio: 4/3;

  @media (width > 1023px) {
    aspect-ratio: 16/9;
  }
}

.ocmlabs_contentelements_hero__text {
  background-color: rgba(255, 255, 255, 1);
  line-height: 1.4;
  max-width: 100%;
  padding: 3px 5px;

  font-size: 1.15em;

  padding: 0.5em 1em .25em;

  width: 100%;

  border-bottom: 1px solid #efefef;

  @media screen and (min-width: 768px) {
    display: inline;

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-size: 1.5em;

    position: absolute;
    bottom: 2em;
    left: 2em;
    width: auto;
    z-index: 3;

    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);

    border-radius: 5px;
    border-bottom-color: transparent;

    &.center {
      left: 50%;
      transform: translateX(-50%);
    }

    &.right {
      right: 2em;
      left: auto;
      transform: translateX(0);
    }

    &.topleft {
      top: 2em;
      bottom: auto;
    }

    &.topright {
      top: 2em;
      bottom: auto;
      left: auto;
      right: 2rem;
      transform: translateX(0);
    }

    &.topcenter {
      top: 2em;
      left: 50%;
      transform: translateX(-50%);
      bottom: auto;
    }
  }
}
