/* scss/settings/_breakpoints.scss */ /* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
.m-textAssetBlock .subheader {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.frame {
  margin-bottom: 6.25rem;
}

.seoText {
  margin-top: 6.25rem;
}

.frame-space-after-none {
  margin-bottom: 0;
}

.frame-space-after-small {
  margin-bottom: 3.125rem;
}

.frame-space-after-medium {
  margin-bottom: 6.25rem;
}

.frame-space-after-large {
  margin-bottom: 9.375rem;
}

body {
  scroll-behavior: smooth;
}

.no-transitions,
.no-transitions * {
  transition: none !important;
  animation: none !important;
}

/* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
.m-textAssetBlock .subheader {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
/* scss/molecules/_imageWithText.scss */
.frame-type-text_asset_block {
  container-type: inline-size;
}

.m-textAssetBlock {
  margin: 0 auto;
  position: relative;
  display: grid;
  column-gap: 2rem;
  row-gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "asset asset" "text text";
  /*
      header {
          h2,h3 {
              text-transform: uppercase;
              @extend %font-h3-fluid;
              margin-bottom: rem-calc(20);
          }
      }
  */
}
.-tipps > div .m-textAssetBlock {
  grid-template-areas: "text text" "asset asset";
}
@media only screen and (min-width: 992px) {
  .m-textAssetBlock { /* min-width: 992px */ }
  .-tipps > div:last-child .m-textAssetBlock {
    grid-template-areas: "asset asset" "text text";
  }
}
.m-textAssetBlock__asset {
  grid-area: asset;
}
.m-textAssetBlock__text {
  grid-area: text;
}
.-bg-glow .m-textAssetBlock__text {
  color: #FFF;
}
.m-textAssetBlock img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .g-grid:not([class*=-col]) .m-textAssetBlock img { /* min-width: 992px */ }
}
@media only screen and (min-width: 992px) {
  .g-grid.-cols3 .m-textAssetBlock img { /* min-width: 1200px */ }
}
.m-textAssetBlock video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.m-textAssetBlock.frame-ratio-4-3 img {
  aspect-ratio: 3/2;
}
@container (min-width: calc(992px - 2.5rem)) {
  .m-textAssetBlock {
    grid-template-areas: "text asset";
  }
  .m-textAssetBlock.ce-left {
    grid-template-areas: "asset text";
  }
  .m-textAssetBlock__asset, .m-textAssetBlock__text {
    flex-basis: 50%;
  }
  .m-textAssetBlock__asset {
    order: 1;
    margin-bottom: 0;
  }
  .m-textAssetBlock__text {
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .m-textAssetBlock.ce-left .m-textAssetBlock__text {
    padding-right: 0;
    padding-left: 10%;
  }
}
.m-textAssetBlock .subheader {
  margin: 0.625rem 0 2rem;
  text-transform: uppercase;
}
.g-grid .m-textAssetBlock {
  margin-bottom: 0;
}
.g-grid .m-textAssetBlock:nth-child(even) {
  padding-bottom: 2rem;
}

/*# sourceMappingURL=textAssetBlock.css.map */