.text-and-background-image-block {
  display: flex;
  position: relative;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .text-and-background-image-block {
    flex-direction: row;
  }
}

.image-half {
  flex: 0 0 auto;
  width: 100%;
  min-height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .image-half {
    flex: 0 0 50%;
  }
}

#team-alt .image-half {
  background-position: 25% 25%;
}

.image-half::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 1;
}

.image-half::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 70%, #ffffff 100%);
  pointer-events: none;
  z-index: 2;
}
.text-half {
  flex: 0 0 auto;
  width: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .text-half {
    flex: 0 0 40%;
    padding: var(--spacing-20) 0;
  }
}

.text-and-background-block-text {
  width: 100%;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .text-and-background-block-text {
    padding-left: var(--spacing-8);
  }
}

@media (max-width: 1024px) {
  .image-half::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 100%);
  }
}
/*# sourceMappingURL=textAndBackgroundImageBlock.1765730479102.css.map */