.paragraph--type--strip-image-text {
  min-height: 324px;
  position: relative;
}

.paragraph--type--strip-image-text>.bgstrip {
  position: absolute;
  --content-half-width: 660px;
  --margin-lr: calc(0px - calc(50vw - var(--content-half-width)));
  margin-left: var(--margin-lr);
  margin-right: var(--margin-lr);
  height: 100%;
  /*   margin-top: 10%;
  margin-bottom: 10%; */
  left: 0;
  width: 100vw;
  background-color: transparent;

  display: flex;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  translate: -0.75rem 0;
}

.paragraph--type--strip-image-text>.bgstrip>.bgstrip-inner {
  background-color: #efefef;
  width: 100%;
  max-width: 2560px;
  height: 100%;
}

.paragraph--type--strip-image-text>.bgstrip {
  --content-half-width: 50%;
}

.paragraph--type--strip-image-text>.bgstrip {
  z-index: 2;
}

.paragraph--type--strip-image-text>.inner {
  z-index: 3;
  position: relative;
  display: grid;
  padding: 1rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "image"
    "text";
  grid-auto-flow: column;
  grid-auto-rows: 1fr;
  gap: 1rem 1rem;
  justify-content: stretch;
  align-content: stretch;
  justify-items: stretch;
  align-items: center;
}

.paragraph--type--strip-image-text>.inner>.field--name-field-p-media-image {
  aspect-ratio: 540/324;
  width: 100%;
  height: auto;
  grid-area: image;
}

.paragraph--type--strip-image-text>.inner>.field--name-field-p-media-image>img {
  aspect-ratio: 540/324;
  width: 100%;
  height: auto;
}

.paragraph--type--strip-image-text>.inner>.field--name-field-paragraph-text {
  grid-area: text;
  padding: 1rem;
}

@media (min-width: 576px) {
  .paragraph--type--strip-image-text>.bgstrip {
    --content-half-width: 270px;
  }
}

@media (min-width: 768px) {
  .paragraph--type--strip-image-text>.bgstrip {
    --content-half-width: 360px;
  }
}

@media (min-width: 992px) {
  .paragraph--type--strip-image-text>.bgstrip {
    --content-half-width: 480px;
  }

  .wcag-font-small .paragraph--type--strip-image-text>.bgstrip>.bgstrip-inner {
    height: 80% !important;
  }

  .paragraph--type--strip-image-text>.inner {
    padding: 0;
    --grid-template-columns: 7fr 5fr;
    grid-template-columns: var(--grid-template-columns);
    grid-template-rows: auto;
    grid-template-areas:
      "image text";
  }
}

@media (min-width: 1200px) {
  .paragraph--type--strip-image-text>.bgstrip {
    --content-half-width: 570px;
  }

  .paragraph--type--strip-image-text>.inner {
    --grid-template-columns: 5fr 5fr;
  }
}

@media (min-width: 1400px) {
  .paragraph--type--strip-image-text>.bgstrip {
    --content-half-width: 660px;
  }

  .paragraph--type--strip-image-text>.inner {
    --grid-template-columns: 4fr 5fr;
  }
}

@media (min-width: 1920px) {
  .paragraph--type--strip-image-text>.bgstrip {
    --content-half-width: 800px;
  }
}