section.tebab-block-split_screen {
  position: relative;
  container-type: inline-size;
}
section.tebab-block-split_screen .contained {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
  gap: 15px;
}
section.tebab-block-split_screen .contained .tebab-block-split_screen__image-wrapper {
  grid-area: left;
  min-width: 0;
  aspect-ratio: 1/1;
  min-height: 100%;
  max-width: 100%;
}
section.tebab-block-split_screen .contained .tebab-block-split_screen__image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-large);
}
section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper {
  grid-area: right;
  background-color: var(--color-card);
  border-radius: var(--radius-large);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper h1 {
  font-size: 46px;
  margin-bottom: 16px;
  color: var(--color-h1);
}
section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper h2 {
  font-size: 38px;
  margin-bottom: 16px;
  color: var(--color-h1);
}
section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper > *:first-child {
  margin-top: 0;
}
section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper > *:last-child {
  margin-bottom: 0;
}
section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper .tebab-block-split_screen__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
section.tebab-block-split_screen.image_alignment-right .tebab-block-split_screen__image-wrapper {
  grid-area: right;
}
section.tebab-block-split_screen.image_alignment-right .tebab-block-split_screen__content-wrapper {
  grid-area: left;
}
@container (min-width: 1201px) {
  section.tebab-block-split_screen.no_gap .contained {
    gap: 0;
  }
  section.tebab-block-split_screen.no_gap.image_alignment-right .tebab-block-split_screen__image-wrapper img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  section.tebab-block-split_screen.no_gap.image_alignment-right .tebab-block-split_screen__content-wrapper {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  section.tebab-block-split_screen.no_gap.image_alignment-left .tebab-block-split_screen__image-wrapper img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  section.tebab-block-split_screen.no_gap.image_alignment-left .tebab-block-split_screen__content-wrapper {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@container (max-width: 1200px) {
  section.tebab-block-split_screen .contained {
    grid-template-areas: unset;
    grid-template-columns: 1fr;
    gap: 0;
  }
  section.tebab-block-split_screen .contained .tebab-block-split_screen__image-wrapper {
    aspect-ratio: 16/9;
    grid-area: unset;
  }
  section.tebab-block-split_screen .contained .tebab-block-split_screen__image-wrapper img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper {
    grid-area: unset;
    padding: 2rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper h1, section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
@container (max-width: 800px) {
  section.tebab-block-split_screen .contained .tebab-block-split_screen__image-wrapper {
    aspect-ratio: 4/3;
  }
}
@container (max-width: 450px) {
  section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper {
    padding: 2rem 1rem;
  }
  section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper h1, section.tebab-block-split_screen .contained .tebab-block-split_screen__content-wrapper h2 {
    font-size: 24px;
  }
  section.tebab-block-split_screen.mobile_full_width .contained {
    padding: 0;
  }
  section.tebab-block-split_screen.mobile_full_width .contained .tebab-block-split_screen__image-wrapper img {
    border-radius: 0;
  }
  section.tebab-block-split_screen.mobile_full_width .contained .tebab-block-split_screen__content-wrapper {
    border-radius: 0;
  }
}/*# sourceMappingURL=split_screen.css.map */