@charset "UTF-8";
.c-text-images {
  --gap-md: var(--layout-gap-md);
  --gap-lg: var(--layout-gap-lg);
  --gap-sm: var(--layout-gap-sm);
  /*---------------------------------------
    Varianten Styling:
    Wiederkehrendes Element welches als Basis einen Komponenten hat, jedoch sich styletechnisch abhebt.
    Admin Options Feld für Styles oder ClassName bereitstellen und im Komponenten ändern.

    &.--uber_uns {
        align-items: flex-start;
        background: var(--color-primary);
        color: #ffffff;
    }
    ---------------------------------------*/
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "images" "content";
}
.c-text-images--cta {
  margin-top: var(--section-y-sm);
}
.c-text-images.img-mobile-bottom {
  grid-template-areas: "content" "images";
}
.c-text-images.gap-md {
  gap: var(--space-md);
}
.c-text-images.gap-lg {
  gap: var(--space-lg);
}
.c-text-images.gap-sm {
  gap: var(--space-sm);
}
.c-text-images.img-border-radius-md .e-image {
  overflow: hidden;
  border-radius: var(--border-radius-md);
}
.c-text-images.img-border-radius-sm .e-image {
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}
.c-text-images .images {
  overflow: hidden;
  grid-area: images;
}
.c-text-images.content-padding-sm .content {
  padding: var(--content-padding-sm);
}
.c-text-images.content-padding-md .content {
  padding: var(--content-padding-md);
}
.c-text-images.content-padding-lg .content {
  padding: var(--content-padding-lg);
}
.c-text-images .content {
  grid-area: content;
}
.c-text-images .content .text {
  margin-top: var(--space-md);
}
.c-text-images .content .text a {
  text-decoration: underline;
  color: var(--color-secondary);
}
.c-text-images .content .u-links {
  margin-top: var(--space-md);
}
.c-text-images--stacked {
  text-align: center;
}
.c-text-images--stacked.img-border-radius-sm .e-image {
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}
.c-text-images--stacked.img-border-radius-md .e-image {
  overflow: hidden;
  border-radius: var(--border-radius-md);
}
.c-text-images--stacked .e-image {
  margin-bottom: var(--space-lg);
}
.c-text-images--cover {
  position: relative;
}
.c-text-images--cover .e-image {
  height: 100vh;
}
.c-text-images--cover .e-image picture {
  height: 100%;
  width: 100%;
}
.c-text-images--cover .e-image picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.c-text-images--cover.text-align-center .content .title, .c-text-images--cover.text-align-center .content .text, .c-text-images--cover.text-align-center .content .subtitle {
  text-align: center;
}
.c-text-images--cover.text-h3 .content .text {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}
.c-text-images--cover.text-h4 .content .text {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
}
.c-text-images--cover .content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 28, 0.8);
  padding: var(--space-xl) var(--section-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.c-text-images--cover.show .content {
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .c-text-images {
    grid-template-columns: 1fr 1fr;
  }
  .c-text-images.img-mode-auto .images, .c-text-images.img-mode-auto .content {
    align-self: center;
  }
  .c-text-images.img-mode-cover .images {
    height: 100%;
    position: relative;
  }
  .c-text-images.img-mode-cover .images .image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-text-images.img-mode-cover .images .image picture {
    height: 100%;
    width: 100%;
  }
  .c-text-images.img-mode-cover .images .image picture img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .c-text-images.img-mode-stretch .images {
    height: 100%;
    position: relative;
  }
  .c-text-images.img-mode-stretch .images .image {
    height: 100%;
    width: 100%;
  }
  .c-text-images.img-mode-stretch .images .image picture {
    height: 100%;
    width: 100%;
  }
  .c-text-images.img-mode-stretch .images .image picture img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .c-text-images.img-mobile-bottom {
    grid-template-columns: unset;
  }
  .c-text-images.img-left {
    grid-template-areas: "images content";
    grid-template-columns: var(--img-width) 1fr;
  }
  .c-text-images.img-right {
    grid-template-areas: "content images";
    grid-template-columns: 1fr var(--img-width);
  }
  .c-text-images .images {
    align-self: center;
  }
  .c-text-images .content {
    flex-grow: 1;
    align-self: center;
  }
  .c-text-images .content .text {
    margin-top: 0;
  }
  .c-text-images--stacked.text-h4 .text {
    font-size: var(--font-size-h4);
    line-height: var(--line-height-h4);
  }
  .c-text-images--stacked.text-h3 .text {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
  }
}
@media (hover: hover) {
  .c-text-images .content .text a:hover {
    color: var(--color-primary);
  }
}
/*# sourceMappingURL=c_text_images.css.map */