



  .module-large-image-teaser {
    position: relative;
    overflow: hidden;
  }
  
  .module-large-image-teaser .background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .module-large-image-teaser .background-image img {
    max-width: none;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: translateY(calc(var(--parallax-y, 0) * -10vh)) scale(1.2);
  }
  
  .module-large-image-teaser .background-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
  }
  
  .module-large-image-teaser .module-inner {
    position: relative;
    z-index: 3;
    padding-top: calc(240 * var(--px));
    padding-bottom: calc(220 * var(--px));
    text-align: center;
  }