.px-teaser {
  position: relative;
  z-index: 3;
  width: var(--baseWidth);
  max-width: var(--maxWidthBig);
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1025px) {
  .px-teaser .global_title > * {
    text-align: right;
  }
}
@media all and (max-width: 1024px) {
  .px-teaser .global_title {
    margin-bottom: 30px;
  }
}
.px-teaser-inner {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media all and (min-width: 1025px) {
  .px-teaser-inner {
    margin-top: -65px;
  }
}
@media all and (max-width: 1024px) {
  .px-teaser-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 768px) {
  .px-teaser-inner {
    grid-template-columns: 1fr;
  }
}
.px-teaser-inner .teaser-single {
  min-width: 0;
  max-width: 100%;
}
.px-teaser-inner .teaser-single .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.px-teaser-inner .teaser-single .item .image {
  overflow: hidden;
  position: relative;
  height: 390px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.px-teaser-inner .teaser-single .item .image > img {
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.px-teaser-inner .teaser-single .item .image .icon {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 2;
  display: block;
  width: 48px;
  height: 48px;
  pointer-events: none;
}
.px-teaser-inner .teaser-single .item .image .icon > img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.px-teaser-inner .teaser-single .item .image .single_title {
  position: relative;
  z-index: 3;
  color: #fff;
  text-wrap: balance;
  hyphens: auto;
}
.px-teaser-inner .teaser-single .item .image:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 199px;
  height: 90px;
  background: url("../../../img/elementform_small.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: 1;
  pointer-events: none;
}
.px-teaser-inner .teaser-single .item .image:after {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.px-teaser-inner .teaser-single .item .content {
  padding: 30px 0;
}
.px-teaser-inner .teaser-single .item .content .wp-block-buttons {
  margin-top: 30px;
}
.px-teaser-inner .teaser-single .item .content .wp-block-button.is-style-outline > .wp-block-button__link {
  border-radius: 6px;
  border: 1px solid var(--main-color);
  text-decoration: none;
}
@media all and (min-width: 1025px) {
  .px-teaser-inner .teaser-single:nth-child(2), .px-teaser-inner .teaser-single:nth-child(5) {
    margin-top: 80px;
  }
  .px-teaser-inner .teaser-single:nth-child(3), .px-teaser-inner .teaser-single:nth-child(6) {
    margin-top: 160px;
  }
}

.block-editor-button-block-appender {
  background-color: var(--contrastColorInverted, #fff);
}

.editor-styles-wrapper .px-teaser-inner {
  display: block;
}