.text-and-background-image-block {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #faecd6;
}
@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 35%;
    order: 2;
  }
}
.image-half::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 236, 214, 0.25);
  pointer-events: none;
  z-index: 1;
}
.image-half::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #faecd6 0%, rgba(250, 236, 214, 0.9) 30%, rgba(250, 236, 214, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

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

.text-half {
  flex: 0 0 auto;
  width: 100%;
  background: #faecd6;
  display: flex;
  align-items: center;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .text-half {
    flex: 0 0 65%;
    order: 1;
    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, #faecd6 0%, rgba(250, 236, 214, 0.9) 30%, rgba(250, 236, 214, 0) 100%);
  }
}
/*# sourceMappingURL=textAndBackgroundImageBlock.1770194470976.css.map */